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_wxDialog swig_types[84]
2551 #define SWIGTYPE_p_wxDirDialog swig_types[85]
2552 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[86]
2553 #define SWIGTYPE_p_wxDockArt swig_types[87]
2554 #define SWIGTYPE_p_wxDockInfo swig_types[88]
2555 #define SWIGTYPE_p_wxDockUIPart swig_types[89]
2556 #define SWIGTYPE_p_wxDropFilesEvent swig_types[90]
2557 #define SWIGTYPE_p_wxDuplexMode swig_types[91]
2558 #define SWIGTYPE_p_wxEraseEvent swig_types[92]
2559 #define SWIGTYPE_p_wxEvent swig_types[93]
2560 #define SWIGTYPE_p_wxEvtHandler swig_types[94]
2561 #define SWIGTYPE_p_wxFSFile swig_types[95]
2562 #define SWIGTYPE_p_wxFileDialog swig_types[96]
2563 #define SWIGTYPE_p_wxFileSystem swig_types[97]
2564 #define SWIGTYPE_p_wxFindDialogEvent swig_types[98]
2565 #define SWIGTYPE_p_wxFindReplaceData swig_types[99]
2566 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[100]
2567 #define SWIGTYPE_p_wxFlexGridSizer swig_types[101]
2568 #define SWIGTYPE_p_wxFloatingPane swig_types[102]
2569 #define SWIGTYPE_p_wxFocusEvent swig_types[103]
2570 #define SWIGTYPE_p_wxFont swig_types[104]
2571 #define SWIGTYPE_p_wxFontData swig_types[105]
2572 #define SWIGTYPE_p_wxFontDialog swig_types[106]
2573 #define SWIGTYPE_p_wxFrame swig_types[107]
2574 #define SWIGTYPE_p_wxFrameManager swig_types[108]
2575 #define SWIGTYPE_p_wxFrameManagerEvent swig_types[109]
2576 #define SWIGTYPE_p_wxGBSizerItem swig_types[110]
2577 #define SWIGTYPE_p_wxGIFHandler swig_types[111]
2578 #define SWIGTYPE_p_wxGridBagSizer swig_types[112]
2579 #define SWIGTYPE_p_wxGridSizer swig_types[113]
2580 #define SWIGTYPE_p_wxICOHandler swig_types[114]
2581 #define SWIGTYPE_p_wxIconizeEvent swig_types[115]
2582 #define SWIGTYPE_p_wxIdleEvent swig_types[116]
2583 #define SWIGTYPE_p_wxImage swig_types[117]
2584 #define SWIGTYPE_p_wxImageHandler swig_types[118]
2585 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[119]
2586 #define SWIGTYPE_p_wxInitDialogEvent swig_types[120]
2587 #define SWIGTYPE_p_wxJPEGHandler swig_types[121]
2588 #define SWIGTYPE_p_wxKeyEvent swig_types[122]
2589 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[123]
2590 #define SWIGTYPE_p_wxLayoutConstraints swig_types[124]
2591 #define SWIGTYPE_p_wxMDIChildFrame swig_types[125]
2592 #define SWIGTYPE_p_wxMDIClientWindow swig_types[126]
2593 #define SWIGTYPE_p_wxMDIParentFrame swig_types[127]
2594 #define SWIGTYPE_p_wxMaximizeEvent swig_types[128]
2595 #define SWIGTYPE_p_wxMenu swig_types[129]
2596 #define SWIGTYPE_p_wxMenuBar swig_types[130]
2597 #define SWIGTYPE_p_wxMenuEvent swig_types[131]
2598 #define SWIGTYPE_p_wxMenuItem swig_types[132]
2599 #define SWIGTYPE_p_wxMessageDialog swig_types[133]
2600 #define SWIGTYPE_p_wxMiniFrame swig_types[134]
2601 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[135]
2602 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[136]
2603 #define SWIGTYPE_p_wxMouseEvent swig_types[137]
2604 #define SWIGTYPE_p_wxMoveEvent swig_types[138]
2605 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[139]
2606 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[140]
2607 #define SWIGTYPE_p_wxNcPaintEvent swig_types[141]
2608 #define SWIGTYPE_p_wxNotifyEvent swig_types[142]
2609 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[143]
2610 #define SWIGTYPE_p_wxObject swig_types[144]
2611 #define SWIGTYPE_p_wxPCXHandler swig_types[145]
2612 #define SWIGTYPE_p_wxPNGHandler swig_types[146]
2613 #define SWIGTYPE_p_wxPNMHandler swig_types[147]
2614 #define SWIGTYPE_p_wxPageSetupDialog swig_types[148]
2615 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[149]
2616 #define SWIGTYPE_p_wxPaintEvent swig_types[150]
2617 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[151]
2618 #define SWIGTYPE_p_wxPaneButton swig_types[152]
2619 #define SWIGTYPE_p_wxPaneButtonArray swig_types[153]
2620 #define SWIGTYPE_p_wxPaneInfo swig_types[154]
2621 #define SWIGTYPE_p_wxPaneInfoPtrArray swig_types[155]
2622 #define SWIGTYPE_p_wxPanel swig_types[156]
2623 #define SWIGTYPE_p_wxPaperSize swig_types[157]
2624 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[158]
2625 #define SWIGTYPE_p_wxPoint swig_types[159]
2626 #define SWIGTYPE_p_wxPopupWindow swig_types[160]
2627 #define SWIGTYPE_p_wxPreviewCanvas swig_types[161]
2628 #define SWIGTYPE_p_wxPreviewControlBar swig_types[162]
2629 #define SWIGTYPE_p_wxPreviewFrame swig_types[163]
2630 #define SWIGTYPE_p_wxPrintData swig_types[164]
2631 #define SWIGTYPE_p_wxPrintDialog swig_types[165]
2632 #define SWIGTYPE_p_wxPrintDialogData swig_types[166]
2633 #define SWIGTYPE_p_wxPrintPreview swig_types[167]
2634 #define SWIGTYPE_p_wxPrinter swig_types[168]
2635 #define SWIGTYPE_p_wxProgressDialog swig_types[169]
2636 #define SWIGTYPE_p_wxPyApp swig_types[170]
2637 #define SWIGTYPE_p_wxPyCommandEvent swig_types[171]
2638 #define SWIGTYPE_p_wxPyDockArt swig_types[172]
2639 #define SWIGTYPE_p_wxPyEvent swig_types[173]
2640 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[174]
2641 #define SWIGTYPE_p_wxPyImageHandler swig_types[175]
2642 #define SWIGTYPE_p_wxPyPanel swig_types[176]
2643 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[177]
2644 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[178]
2645 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[179]
2646 #define SWIGTYPE_p_wxPyPrintPreview swig_types[180]
2647 #define SWIGTYPE_p_wxPyPrintout swig_types[181]
2648 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[182]
2649 #define SWIGTYPE_p_wxPySizer swig_types[183]
2650 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[184]
2651 #define SWIGTYPE_p_wxPyVListBox swig_types[185]
2652 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[186]
2653 #define SWIGTYPE_p_wxPyValidator swig_types[187]
2654 #define SWIGTYPE_p_wxPyWindow swig_types[188]
2655 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[189]
2656 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[190]
2657 #define SWIGTYPE_p_wxRect swig_types[191]
2658 #define SWIGTYPE_p_wxSashEvent swig_types[192]
2659 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[193]
2660 #define SWIGTYPE_p_wxSashWindow swig_types[194]
2661 #define SWIGTYPE_p_wxScrollEvent swig_types[195]
2662 #define SWIGTYPE_p_wxScrollWinEvent swig_types[196]
2663 #define SWIGTYPE_p_wxScrolledWindow swig_types[197]
2664 #define SWIGTYPE_p_wxSetCursorEvent swig_types[198]
2665 #define SWIGTYPE_p_wxShowEvent swig_types[199]
2666 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[200]
2667 #define SWIGTYPE_p_wxSize swig_types[201]
2668 #define SWIGTYPE_p_wxSizeEvent swig_types[202]
2669 #define SWIGTYPE_p_wxSizer swig_types[203]
2670 #define SWIGTYPE_p_wxSizerItem swig_types[204]
2671 #define SWIGTYPE_p_wxSplashScreen swig_types[205]
2672 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[206]
2673 #define SWIGTYPE_p_wxSplitterEvent swig_types[207]
2674 #define SWIGTYPE_p_wxSplitterWindow swig_types[208]
2675 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[209]
2676 #define SWIGTYPE_p_wxStatusBar swig_types[210]
2677 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[211]
2678 #define SWIGTYPE_p_wxString swig_types[212]
2679 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[213]
2680 #define SWIGTYPE_p_wxTIFFHandler swig_types[214]
2681 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[215]
2682 #define SWIGTYPE_p_wxTextEntryDialog swig_types[216]
2683 #define SWIGTYPE_p_wxTipWindow swig_types[217]
2684 #define SWIGTYPE_p_wxTopLevelWindow swig_types[218]
2685 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[219]
2686 #define SWIGTYPE_p_wxValidator swig_types[220]
2687 #define SWIGTYPE_p_wxWindow swig_types[221]
2688 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[222]
2689 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[223]
2690 #define SWIGTYPE_p_wxXPMHandler swig_types[224]
2691 static swig_type_info
*swig_types
[226];
2692 static swig_module_info swig_module
= {swig_types
, 225, 0, 0, 0, 0};
2693 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2694 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2696 /* -------- TYPES TABLE (END) -------- */
2698 #if (PY_VERSION_HEX <= 0x02000000)
2699 # if !defined(SWIG_PYTHON_CLASSIC)
2700 # error "This python version requires to use swig with the '-classic' option"
2703 #if (PY_VERSION_HEX <= 0x02020000)
2704 # error "This python version requires to use swig with the '-nomodern' option"
2706 #if (PY_VERSION_HEX <= 0x02020000)
2707 # error "This python version requires to use swig with the '-nomodernargs' option"
2710 # error "This python version requires to use swig with the '-nofastunpack' option"
2713 /*-----------------------------------------------
2715 ------------------------------------------------*/
2716 #define SWIG_init init_aui
2718 #define SWIG_name "_aui"
2720 #define SWIGVERSION 0x010329
2723 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2724 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2727 #include <stdexcept>
2731 class PyObject_ptr
{
2736 PyObject_ptr() :_obj(0)
2740 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2745 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2747 if (initial_ref
) Py_XINCREF(_obj
);
2750 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2752 Py_XINCREF(item
._obj
);
2763 operator PyObject
*() const
2768 PyObject
*operator->() const
2777 struct PyObject_var
: PyObject_ptr
{
2778 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2780 PyObject_var
& operator = (PyObject
* obj
)
2790 #include "wx/wxPython/wxPython.h"
2791 #include "wx/wxPython/pyclasses.h"
2792 #include <wx/aui/aui.h>
2795 #define SWIG_From_long PyInt_FromLong
2798 SWIGINTERNINLINE PyObject
*
2799 SWIG_From_int (int value
)
2801 return SWIG_From_long (value
);
2807 # define LLONG_MIN LONG_LONG_MIN
2810 # define LLONG_MAX LONG_LONG_MAX
2813 # define ULLONG_MAX ULONG_LONG_MAX
2818 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2820 if (PyNumber_Check(obj
)) {
2821 if (val
) *val
= PyInt_AsLong(obj
);
2824 return SWIG_TypeError
;
2829 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2832 int res
= SWIG_AsVal_long (obj
, &v
);
2833 if (SWIG_IsOK(res
)) {
2834 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2835 return SWIG_OverflowError
;
2837 if (val
) *val
= static_cast< int >(v
);
2845 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2847 if (obj
== Py_True
) {
2848 if (val
) *val
= true;
2850 } else if (obj
== Py_False
) {
2851 if (val
) *val
= false;
2855 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2856 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2861 SWIGINTERN
void delete_wxDockInfo(wxDockInfo
*self
){}
2862 SWIGINTERN wxDockUIPart
*new_wxDockUIPart(){}
2863 SWIGINTERN
void delete_wxDockUIPart(wxDockUIPart
*self
){}
2864 SWIGINTERN wxPaneButton
*new_wxPaneButton(){}
2865 SWIGINTERN
void delete_wxPaneButton(wxPaneButton
*self
){}
2868 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2871 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2872 return SWIG_TypeError
;
2875 *val
= (unsigned long)v
;
2880 SWIGINTERNINLINE
int
2881 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2884 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2885 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2890 SWIGINTERNINLINE PyObject
*
2891 SWIG_From_unsigned_SS_long (unsigned long value
)
2893 return (value
> LONG_MAX
) ?
2894 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2898 SWIGINTERNINLINE PyObject
*
2899 SWIG_From_size_t (size_t value
)
2901 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2905 // A wxDocArt class that knows how to forward virtuals to Python methods
2906 class wxPyDockArt
: public wxDefaultDockArt
2908 wxPyDockArt() : wxDefaultDockArt() {}
2910 DEC_PYCALLBACK_INT_INT(GetMetric
);
2911 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2912 DEC_PYCALLBACK__INTFONT(SetFont
);
2913 DEC_PYCALLBACK_FONT_INT(GetFont
);
2914 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2915 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2917 virtual void DrawSash(wxDC
& dc
,
2923 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2924 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2925 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2926 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2927 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2928 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2929 odc
, owin
, orientation
, orect
));
2933 wxPyEndBlockThreads(blocked
);
2935 wxDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2938 virtual void DrawBackground(wxDC
& dc
,
2944 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2945 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2946 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2947 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2948 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2949 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2950 odc
, owin
, orientation
, orect
));
2954 wxPyEndBlockThreads(blocked
);
2956 wxDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
2959 virtual void DrawCaption(wxDC
& dc
,
2961 const wxString
& text
,
2966 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2967 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2968 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2969 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2970 PyObject
* otext
= wx2PyString(text
);
2971 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2972 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2973 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
2974 odc
, owin
, otext
, orect
, opane
));
2980 wxPyEndBlockThreads(blocked
);
2982 wxDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
2985 virtual void DrawGripper(wxDC
& dc
,
2991 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2992 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
2993 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2994 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2995 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2996 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2997 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3002 wxPyEndBlockThreads(blocked
);
3004 wxDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3007 virtual void DrawBorder(wxDC
& dc
,
3013 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3014 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3015 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3016 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3017 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3018 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
3019 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3024 wxPyEndBlockThreads(blocked
);
3026 wxDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3029 virtual void DrawPaneButton(wxDC
& dc
,
3037 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3038 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3039 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3040 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3041 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3042 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
3043 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3044 odc
, owin
, button
, button_state
,
3050 wxPyEndBlockThreads(blocked
);
3052 wxDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3059 IMP_PYCALLBACK_INT_INT(wxPyDockArt
, wxDefaultDockArt
, GetMetric
);
3060 IMP_PYCALLBACK_VOID_INTINT(wxPyDockArt
, wxDefaultDockArt
, SetMetric
);
3061 IMP_PYCALLBACK__INTFONT(wxPyDockArt
, wxDefaultDockArt
, SetFont
);
3062 IMP_PYCALLBACK_FONT_INT(wxPyDockArt
, wxDefaultDockArt
, GetFont
);
3063 IMP_PYCALLBACK_COLOUR_INT(wxPyDockArt
, wxDefaultDockArt
, GetColour
);
3064 IMP_PYCALLBACK__INTCOLOUR(wxPyDockArt
, wxDefaultDockArt
, SetColour
);
3070 SWIGINTERN
int NullDockInfo_set(PyObject
*_val
) {
3073 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxDockInfo
, 0 | 0);
3074 if (!SWIG_IsOK(res
)) {
3075 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
3078 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
3081 temp
= reinterpret_cast< wxDockInfo
* >(argp
);
3082 wxNullDockInfo
= *temp
;
3083 if (SWIG_IsNewObj(res
)) delete temp
;
3092 SWIGINTERN PyObject
*NullDockInfo_get(void) {
3093 PyObject
*pyobj
= 0;
3095 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullDockInfo
), SWIGTYPE_p_wxDockInfo
, 0 );
3100 SWIGINTERN
int NullPaneInfo_set(PyObject
*_val
) {
3103 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
3104 if (!SWIG_IsOK(res
)) {
3105 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
3108 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
3111 temp
= reinterpret_cast< wxPaneInfo
* >(argp
);
3112 wxNullPaneInfo
= *temp
;
3113 if (SWIG_IsNewObj(res
)) delete temp
;
3122 SWIGINTERN PyObject
*NullPaneInfo_get(void) {
3123 PyObject
*pyobj
= 0;
3125 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullPaneInfo
), SWIGTYPE_p_wxPaneInfo
, 0 );
3130 SWIGINTERN PyObject
*_wrap_new_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3131 PyObject
*resultobj
= 0;
3132 wxPaneInfo
*result
= 0 ;
3134 if (!SWIG_Python_UnpackTuple(args
,"new_PaneInfo",0,0,0)) SWIG_fail
;
3136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3137 result
= (wxPaneInfo
*)new wxPaneInfo();
3138 wxPyEndAllowThreads(__tstate
);
3139 if (PyErr_Occurred()) SWIG_fail
;
3141 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_NEW
| 0 );
3148 SWIGINTERN PyObject
*_wrap_delete_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3149 PyObject
*resultobj
= 0;
3150 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3153 PyObject
*swig_obj
[1] ;
3155 if (!args
) SWIG_fail
;
3157 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3158 if (!SWIG_IsOK(res1
)) {
3159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PaneInfo" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3161 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3163 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3166 wxPyEndAllowThreads(__tstate
);
3167 if (PyErr_Occurred()) SWIG_fail
;
3169 resultobj
= SWIG_Py_Void();
3176 SWIGINTERN PyObject
*_wrap_PaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3177 PyObject
*resultobj
= 0;
3178 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3184 PyObject
* obj0
= 0 ;
3185 PyObject
* obj1
= 0 ;
3186 char * kwnames
[] = {
3187 (char *) "self",(char *) "source", NULL
3190 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3191 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3192 if (!SWIG_IsOK(res1
)) {
3193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3195 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3197 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
3198 if (!SWIG_IsOK(res2
)) {
3199 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxPaneInfo""'");
3202 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxPaneInfo""'");
3204 wxPaneInfo
* temp
= reinterpret_cast< wxPaneInfo
* >(argp2
);
3206 if (SWIG_IsNewObj(res2
)) delete temp
;
3210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3211 (arg1
)->SafeSet(arg2
);
3212 wxPyEndAllowThreads(__tstate
);
3213 if (PyErr_Occurred()) SWIG_fail
;
3215 resultobj
= SWIG_Py_Void();
3222 SWIGINTERN PyObject
*_wrap_PaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3223 PyObject
*resultobj
= 0;
3224 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3228 PyObject
*swig_obj
[1] ;
3230 if (!args
) SWIG_fail
;
3232 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3233 if (!SWIG_IsOK(res1
)) {
3234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsOk" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3236 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3239 result
= (bool)((wxPaneInfo
const *)arg1
)->IsOk();
3240 wxPyEndAllowThreads(__tstate
);
3241 if (PyErr_Occurred()) SWIG_fail
;
3244 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3252 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3253 PyObject
*resultobj
= 0;
3254 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3258 PyObject
*swig_obj
[1] ;
3260 if (!args
) SWIG_fail
;
3262 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3263 if (!SWIG_IsOK(res1
)) {
3264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3266 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3269 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFixed();
3270 wxPyEndAllowThreads(__tstate
);
3271 if (PyErr_Occurred()) SWIG_fail
;
3274 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3282 SWIGINTERN PyObject
*_wrap_PaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3283 PyObject
*resultobj
= 0;
3284 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3288 PyObject
*swig_obj
[1] ;
3290 if (!args
) SWIG_fail
;
3292 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3293 if (!SWIG_IsOK(res1
)) {
3294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3296 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3299 result
= (bool)((wxPaneInfo
const *)arg1
)->IsResizable();
3300 wxPyEndAllowThreads(__tstate
);
3301 if (PyErr_Occurred()) SWIG_fail
;
3304 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3312 SWIGINTERN PyObject
*_wrap_PaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3313 PyObject
*resultobj
= 0;
3314 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3318 PyObject
*swig_obj
[1] ;
3320 if (!args
) SWIG_fail
;
3322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3323 if (!SWIG_IsOK(res1
)) {
3324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsShown" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3326 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3329 result
= (bool)((wxPaneInfo
const *)arg1
)->IsShown();
3330 wxPyEndAllowThreads(__tstate
);
3331 if (PyErr_Occurred()) SWIG_fail
;
3334 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3342 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3343 PyObject
*resultobj
= 0;
3344 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3348 PyObject
*swig_obj
[1] ;
3350 if (!args
) SWIG_fail
;
3352 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3353 if (!SWIG_IsOK(res1
)) {
3354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3356 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3359 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloating();
3360 wxPyEndAllowThreads(__tstate
);
3361 if (PyErr_Occurred()) SWIG_fail
;
3364 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3372 SWIGINTERN PyObject
*_wrap_PaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3373 PyObject
*resultobj
= 0;
3374 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3378 PyObject
*swig_obj
[1] ;
3380 if (!args
) SWIG_fail
;
3382 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3383 if (!SWIG_IsOK(res1
)) {
3384 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3386 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3389 result
= (bool)((wxPaneInfo
const *)arg1
)->IsDocked();
3390 wxPyEndAllowThreads(__tstate
);
3391 if (PyErr_Occurred()) SWIG_fail
;
3394 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3402 SWIGINTERN PyObject
*_wrap_PaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3403 PyObject
*resultobj
= 0;
3404 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3408 PyObject
*swig_obj
[1] ;
3410 if (!args
) SWIG_fail
;
3412 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3413 if (!SWIG_IsOK(res1
)) {
3414 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3416 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3419 result
= (bool)((wxPaneInfo
const *)arg1
)->IsToolbar();
3420 wxPyEndAllowThreads(__tstate
);
3421 if (PyErr_Occurred()) SWIG_fail
;
3424 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3432 SWIGINTERN PyObject
*_wrap_PaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3433 PyObject
*resultobj
= 0;
3434 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3438 PyObject
*swig_obj
[1] ;
3440 if (!args
) SWIG_fail
;
3442 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3443 if (!SWIG_IsOK(res1
)) {
3444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3446 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3449 result
= (bool)((wxPaneInfo
const *)arg1
)->IsTopDockable();
3450 wxPyEndAllowThreads(__tstate
);
3451 if (PyErr_Occurred()) SWIG_fail
;
3454 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3462 SWIGINTERN PyObject
*_wrap_PaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3463 PyObject
*resultobj
= 0;
3464 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3468 PyObject
*swig_obj
[1] ;
3470 if (!args
) SWIG_fail
;
3472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3473 if (!SWIG_IsOK(res1
)) {
3474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3476 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3479 result
= (bool)((wxPaneInfo
const *)arg1
)->IsBottomDockable();
3480 wxPyEndAllowThreads(__tstate
);
3481 if (PyErr_Occurred()) SWIG_fail
;
3484 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3492 SWIGINTERN PyObject
*_wrap_PaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3493 PyObject
*resultobj
= 0;
3494 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3498 PyObject
*swig_obj
[1] ;
3500 if (!args
) SWIG_fail
;
3502 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3503 if (!SWIG_IsOK(res1
)) {
3504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3506 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3509 result
= (bool)((wxPaneInfo
const *)arg1
)->IsLeftDockable();
3510 wxPyEndAllowThreads(__tstate
);
3511 if (PyErr_Occurred()) SWIG_fail
;
3514 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3522 SWIGINTERN PyObject
*_wrap_PaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3523 PyObject
*resultobj
= 0;
3524 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3528 PyObject
*swig_obj
[1] ;
3530 if (!args
) SWIG_fail
;
3532 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3533 if (!SWIG_IsOK(res1
)) {
3534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3536 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3539 result
= (bool)((wxPaneInfo
const *)arg1
)->IsRightDockable();
3540 wxPyEndAllowThreads(__tstate
);
3541 if (PyErr_Occurred()) SWIG_fail
;
3544 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3552 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3553 PyObject
*resultobj
= 0;
3554 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3558 PyObject
*swig_obj
[1] ;
3560 if (!args
) SWIG_fail
;
3562 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3563 if (!SWIG_IsOK(res1
)) {
3564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3566 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3569 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloatable();
3570 wxPyEndAllowThreads(__tstate
);
3571 if (PyErr_Occurred()) SWIG_fail
;
3574 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3582 SWIGINTERN PyObject
*_wrap_PaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3583 PyObject
*resultobj
= 0;
3584 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3588 PyObject
*swig_obj
[1] ;
3590 if (!args
) SWIG_fail
;
3592 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3593 if (!SWIG_IsOK(res1
)) {
3594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3596 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3599 result
= (bool)((wxPaneInfo
const *)arg1
)->IsMovable();
3600 wxPyEndAllowThreads(__tstate
);
3601 if (PyErr_Occurred()) SWIG_fail
;
3604 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3612 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3613 PyObject
*resultobj
= 0;
3614 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3618 PyObject
*swig_obj
[1] ;
3620 if (!args
) SWIG_fail
;
3622 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3623 if (!SWIG_IsOK(res1
)) {
3624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3626 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3629 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCaption();
3630 wxPyEndAllowThreads(__tstate
);
3631 if (PyErr_Occurred()) SWIG_fail
;
3634 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3642 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3643 PyObject
*resultobj
= 0;
3644 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3648 PyObject
*swig_obj
[1] ;
3650 if (!args
) SWIG_fail
;
3652 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3653 if (!SWIG_IsOK(res1
)) {
3654 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3656 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3659 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripper();
3660 wxPyEndAllowThreads(__tstate
);
3661 if (PyErr_Occurred()) SWIG_fail
;
3664 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3672 SWIGINTERN PyObject
*_wrap_PaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3673 PyObject
*resultobj
= 0;
3674 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3678 PyObject
*swig_obj
[1] ;
3680 if (!args
) SWIG_fail
;
3682 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3683 if (!SWIG_IsOK(res1
)) {
3684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3686 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3689 result
= (bool)((wxPaneInfo
const *)arg1
)->HasBorder();
3690 wxPyEndAllowThreads(__tstate
);
3691 if (PyErr_Occurred()) SWIG_fail
;
3694 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3702 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3703 PyObject
*resultobj
= 0;
3704 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3708 PyObject
*swig_obj
[1] ;
3710 if (!args
) SWIG_fail
;
3712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3713 if (!SWIG_IsOK(res1
)) {
3714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3716 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3719 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCloseButton();
3720 wxPyEndAllowThreads(__tstate
);
3721 if (PyErr_Occurred()) SWIG_fail
;
3724 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3732 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3733 PyObject
*resultobj
= 0;
3734 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3738 PyObject
*swig_obj
[1] ;
3740 if (!args
) SWIG_fail
;
3742 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3743 if (!SWIG_IsOK(res1
)) {
3744 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3746 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3749 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMaximizeButton();
3750 wxPyEndAllowThreads(__tstate
);
3751 if (PyErr_Occurred()) SWIG_fail
;
3754 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3762 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3763 PyObject
*resultobj
= 0;
3764 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3768 PyObject
*swig_obj
[1] ;
3770 if (!args
) SWIG_fail
;
3772 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3773 if (!SWIG_IsOK(res1
)) {
3774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3776 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3779 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMinimizeButton();
3780 wxPyEndAllowThreads(__tstate
);
3781 if (PyErr_Occurred()) SWIG_fail
;
3784 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3792 SWIGINTERN PyObject
*_wrap_PaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3793 PyObject
*resultobj
= 0;
3794 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3798 PyObject
*swig_obj
[1] ;
3800 if (!args
) SWIG_fail
;
3802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3803 if (!SWIG_IsOK(res1
)) {
3804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3806 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3809 result
= (bool)((wxPaneInfo
const *)arg1
)->HasPinButton();
3810 wxPyEndAllowThreads(__tstate
);
3811 if (PyErr_Occurred()) SWIG_fail
;
3814 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3822 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3823 PyObject
*resultobj
= 0;
3824 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3828 PyObject
*swig_obj
[1] ;
3830 if (!args
) SWIG_fail
;
3832 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3833 if (!SWIG_IsOK(res1
)) {
3834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3836 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3839 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripperTop();
3840 wxPyEndAllowThreads(__tstate
);
3841 if (PyErr_Occurred()) SWIG_fail
;
3844 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3852 SWIGINTERN PyObject
*_wrap_PaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3853 PyObject
*resultobj
= 0;
3854 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3855 wxWindow
*arg2
= (wxWindow
*) 0 ;
3856 wxPaneInfo
*result
= 0 ;
3861 PyObject
* obj0
= 0 ;
3862 PyObject
* obj1
= 0 ;
3863 char * kwnames
[] = {
3864 (char *) "self",(char *) "w", NULL
3867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3868 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3869 if (!SWIG_IsOK(res1
)) {
3870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Window" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3872 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3873 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3874 if (!SWIG_IsOK(res2
)) {
3875 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
3877 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
3879 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3881 wxPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
3882 result
= (wxPaneInfo
*) &_result_ref
;
3884 wxPyEndAllowThreads(__tstate
);
3885 if (PyErr_Occurred()) SWIG_fail
;
3888 resultobj
= obj0
; Py_INCREF(resultobj
);
3896 SWIGINTERN PyObject
*_wrap_PaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3897 PyObject
*resultobj
= 0;
3898 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3899 wxString
*arg2
= 0 ;
3900 wxPaneInfo
*result
= 0 ;
3903 bool temp2
= false ;
3904 PyObject
* obj0
= 0 ;
3905 PyObject
* obj1
= 0 ;
3906 char * kwnames
[] = {
3907 (char *) "self",(char *) "n", NULL
3910 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3911 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3912 if (!SWIG_IsOK(res1
)) {
3913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Name" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3915 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3917 arg2
= wxString_in_helper(obj1
);
3918 if (arg2
== NULL
) SWIG_fail
;
3922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3924 wxPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
3925 result
= (wxPaneInfo
*) &_result_ref
;
3927 wxPyEndAllowThreads(__tstate
);
3928 if (PyErr_Occurred()) SWIG_fail
;
3931 resultobj
= obj0
; Py_INCREF(resultobj
);
3947 SWIGINTERN PyObject
*_wrap_PaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3948 PyObject
*resultobj
= 0;
3949 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3950 wxString
*arg2
= 0 ;
3951 wxPaneInfo
*result
= 0 ;
3954 bool temp2
= false ;
3955 PyObject
* obj0
= 0 ;
3956 PyObject
* obj1
= 0 ;
3957 char * kwnames
[] = {
3958 (char *) "self",(char *) "c", NULL
3961 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3962 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3963 if (!SWIG_IsOK(res1
)) {
3964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Caption" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3966 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3968 arg2
= wxString_in_helper(obj1
);
3969 if (arg2
== NULL
) SWIG_fail
;
3973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3975 wxPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
3976 result
= (wxPaneInfo
*) &_result_ref
;
3978 wxPyEndAllowThreads(__tstate
);
3979 if (PyErr_Occurred()) SWIG_fail
;
3982 resultobj
= obj0
; Py_INCREF(resultobj
);
3998 SWIGINTERN PyObject
*_wrap_PaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3999 PyObject
*resultobj
= 0;
4000 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4001 wxPaneInfo
*result
= 0 ;
4004 PyObject
*swig_obj
[1] ;
4006 if (!args
) SWIG_fail
;
4008 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4009 if (!SWIG_IsOK(res1
)) {
4010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Left" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4012 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4016 wxPaneInfo
&_result_ref
= (arg1
)->Left();
4017 result
= (wxPaneInfo
*) &_result_ref
;
4019 wxPyEndAllowThreads(__tstate
);
4020 if (PyErr_Occurred()) SWIG_fail
;
4023 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4031 SWIGINTERN PyObject
*_wrap_PaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4032 PyObject
*resultobj
= 0;
4033 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4034 wxPaneInfo
*result
= 0 ;
4037 PyObject
*swig_obj
[1] ;
4039 if (!args
) SWIG_fail
;
4041 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4042 if (!SWIG_IsOK(res1
)) {
4043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Right" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4045 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4049 wxPaneInfo
&_result_ref
= (arg1
)->Right();
4050 result
= (wxPaneInfo
*) &_result_ref
;
4052 wxPyEndAllowThreads(__tstate
);
4053 if (PyErr_Occurred()) SWIG_fail
;
4056 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4064 SWIGINTERN PyObject
*_wrap_PaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4065 PyObject
*resultobj
= 0;
4066 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4067 wxPaneInfo
*result
= 0 ;
4070 PyObject
*swig_obj
[1] ;
4072 if (!args
) SWIG_fail
;
4074 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4075 if (!SWIG_IsOK(res1
)) {
4076 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Top" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4078 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4080 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4082 wxPaneInfo
&_result_ref
= (arg1
)->Top();
4083 result
= (wxPaneInfo
*) &_result_ref
;
4085 wxPyEndAllowThreads(__tstate
);
4086 if (PyErr_Occurred()) SWIG_fail
;
4089 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4097 SWIGINTERN PyObject
*_wrap_PaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4098 PyObject
*resultobj
= 0;
4099 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4100 wxPaneInfo
*result
= 0 ;
4103 PyObject
*swig_obj
[1] ;
4105 if (!args
) SWIG_fail
;
4107 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4108 if (!SWIG_IsOK(res1
)) {
4109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Bottom" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4111 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4115 wxPaneInfo
&_result_ref
= (arg1
)->Bottom();
4116 result
= (wxPaneInfo
*) &_result_ref
;
4118 wxPyEndAllowThreads(__tstate
);
4119 if (PyErr_Occurred()) SWIG_fail
;
4122 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4130 SWIGINTERN PyObject
*_wrap_PaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4131 PyObject
*resultobj
= 0;
4132 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4133 wxPaneInfo
*result
= 0 ;
4136 PyObject
*swig_obj
[1] ;
4138 if (!args
) SWIG_fail
;
4140 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4141 if (!SWIG_IsOK(res1
)) {
4142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Center" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4144 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4148 wxPaneInfo
&_result_ref
= (arg1
)->Center();
4149 result
= (wxPaneInfo
*) &_result_ref
;
4151 wxPyEndAllowThreads(__tstate
);
4152 if (PyErr_Occurred()) SWIG_fail
;
4155 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4163 SWIGINTERN PyObject
*_wrap_PaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4164 PyObject
*resultobj
= 0;
4165 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4166 wxPaneInfo
*result
= 0 ;
4169 PyObject
*swig_obj
[1] ;
4171 if (!args
) SWIG_fail
;
4173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4174 if (!SWIG_IsOK(res1
)) {
4175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Centre" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4177 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4181 wxPaneInfo
&_result_ref
= (arg1
)->Centre();
4182 result
= (wxPaneInfo
*) &_result_ref
;
4184 wxPyEndAllowThreads(__tstate
);
4185 if (PyErr_Occurred()) SWIG_fail
;
4188 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4196 SWIGINTERN PyObject
*_wrap_PaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4197 PyObject
*resultobj
= 0;
4198 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4200 wxPaneInfo
*result
= 0 ;
4205 PyObject
* obj0
= 0 ;
4206 PyObject
* obj1
= 0 ;
4207 char * kwnames
[] = {
4208 (char *) "self",(char *) "direction", NULL
4211 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4212 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4213 if (!SWIG_IsOK(res1
)) {
4214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Direction" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4216 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4217 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4218 if (!SWIG_IsOK(ecode2
)) {
4219 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4221 arg2
= static_cast< int >(val2
);
4223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4225 wxPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4226 result
= (wxPaneInfo
*) &_result_ref
;
4228 wxPyEndAllowThreads(__tstate
);
4229 if (PyErr_Occurred()) SWIG_fail
;
4232 resultobj
= obj0
; Py_INCREF(resultobj
);
4240 SWIGINTERN PyObject
*_wrap_PaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4241 PyObject
*resultobj
= 0;
4242 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4244 wxPaneInfo
*result
= 0 ;
4249 PyObject
* obj0
= 0 ;
4250 PyObject
* obj1
= 0 ;
4251 char * kwnames
[] = {
4252 (char *) "self",(char *) "layer", NULL
4255 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4256 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4257 if (!SWIG_IsOK(res1
)) {
4258 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Layer" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4260 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4261 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4262 if (!SWIG_IsOK(ecode2
)) {
4263 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4265 arg2
= static_cast< int >(val2
);
4267 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4269 wxPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4270 result
= (wxPaneInfo
*) &_result_ref
;
4272 wxPyEndAllowThreads(__tstate
);
4273 if (PyErr_Occurred()) SWIG_fail
;
4276 resultobj
= obj0
; Py_INCREF(resultobj
);
4284 SWIGINTERN PyObject
*_wrap_PaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4285 PyObject
*resultobj
= 0;
4286 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4288 wxPaneInfo
*result
= 0 ;
4293 PyObject
* obj0
= 0 ;
4294 PyObject
* obj1
= 0 ;
4295 char * kwnames
[] = {
4296 (char *) "self",(char *) "row", NULL
4299 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4300 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4301 if (!SWIG_IsOK(res1
)) {
4302 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Row" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4304 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4305 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4306 if (!SWIG_IsOK(ecode2
)) {
4307 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4309 arg2
= static_cast< int >(val2
);
4311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4313 wxPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4314 result
= (wxPaneInfo
*) &_result_ref
;
4316 wxPyEndAllowThreads(__tstate
);
4317 if (PyErr_Occurred()) SWIG_fail
;
4320 resultobj
= obj0
; Py_INCREF(resultobj
);
4328 SWIGINTERN PyObject
*_wrap_PaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4329 PyObject
*resultobj
= 0;
4330 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4332 wxPaneInfo
*result
= 0 ;
4337 PyObject
* obj0
= 0 ;
4338 PyObject
* obj1
= 0 ;
4339 char * kwnames
[] = {
4340 (char *) "self",(char *) "pos", NULL
4343 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4344 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4345 if (!SWIG_IsOK(res1
)) {
4346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Position" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4348 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4349 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4350 if (!SWIG_IsOK(ecode2
)) {
4351 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4353 arg2
= static_cast< int >(val2
);
4355 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4357 wxPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4358 result
= (wxPaneInfo
*) &_result_ref
;
4360 wxPyEndAllowThreads(__tstate
);
4361 if (PyErr_Occurred()) SWIG_fail
;
4364 resultobj
= obj0
; Py_INCREF(resultobj
);
4372 SWIGINTERN PyObject
*_wrap_PaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4373 PyObject
*resultobj
= 0;
4374 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4376 wxPaneInfo
*result
= 0 ;
4380 PyObject
* obj0
= 0 ;
4381 PyObject
* obj1
= 0 ;
4382 char * kwnames
[] = {
4383 (char *) "self",(char *) "size", NULL
4386 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4387 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4388 if (!SWIG_IsOK(res1
)) {
4389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BestSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4391 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4394 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4399 wxPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4400 result
= (wxPaneInfo
*) &_result_ref
;
4402 wxPyEndAllowThreads(__tstate
);
4403 if (PyErr_Occurred()) SWIG_fail
;
4406 resultobj
= obj0
; Py_INCREF(resultobj
);
4414 SWIGINTERN PyObject
*_wrap_PaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4415 PyObject
*resultobj
= 0;
4416 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4418 wxPaneInfo
*result
= 0 ;
4422 PyObject
* obj0
= 0 ;
4423 PyObject
* obj1
= 0 ;
4424 char * kwnames
[] = {
4425 (char *) "self",(char *) "size", NULL
4428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4429 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4430 if (!SWIG_IsOK(res1
)) {
4431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4433 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4436 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4441 wxPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4442 result
= (wxPaneInfo
*) &_result_ref
;
4444 wxPyEndAllowThreads(__tstate
);
4445 if (PyErr_Occurred()) SWIG_fail
;
4448 resultobj
= obj0
; Py_INCREF(resultobj
);
4456 SWIGINTERN PyObject
*_wrap_PaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4457 PyObject
*resultobj
= 0;
4458 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4460 wxPaneInfo
*result
= 0 ;
4464 PyObject
* obj0
= 0 ;
4465 PyObject
* obj1
= 0 ;
4466 char * kwnames
[] = {
4467 (char *) "self",(char *) "size", NULL
4470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4472 if (!SWIG_IsOK(res1
)) {
4473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4475 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4478 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4483 wxPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4484 result
= (wxPaneInfo
*) &_result_ref
;
4486 wxPyEndAllowThreads(__tstate
);
4487 if (PyErr_Occurred()) SWIG_fail
;
4490 resultobj
= obj0
; Py_INCREF(resultobj
);
4498 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4499 PyObject
*resultobj
= 0;
4500 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4502 wxPaneInfo
*result
= 0 ;
4506 PyObject
* obj0
= 0 ;
4507 PyObject
* obj1
= 0 ;
4508 char * kwnames
[] = {
4509 (char *) "self",(char *) "pos", NULL
4512 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4513 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4514 if (!SWIG_IsOK(res1
)) {
4515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4517 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4520 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4525 wxPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4526 result
= (wxPaneInfo
*) &_result_ref
;
4528 wxPyEndAllowThreads(__tstate
);
4529 if (PyErr_Occurred()) SWIG_fail
;
4532 resultobj
= obj0
; Py_INCREF(resultobj
);
4540 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4541 PyObject
*resultobj
= 0;
4542 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4544 wxPaneInfo
*result
= 0 ;
4548 PyObject
* obj0
= 0 ;
4549 PyObject
* obj1
= 0 ;
4550 char * kwnames
[] = {
4551 (char *) "self",(char *) "size", NULL
4554 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4555 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4556 if (!SWIG_IsOK(res1
)) {
4557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4559 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4562 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4565 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4567 wxPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4568 result
= (wxPaneInfo
*) &_result_ref
;
4570 wxPyEndAllowThreads(__tstate
);
4571 if (PyErr_Occurred()) SWIG_fail
;
4574 resultobj
= obj0
; Py_INCREF(resultobj
);
4582 SWIGINTERN PyObject
*_wrap_PaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4583 PyObject
*resultobj
= 0;
4584 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4585 wxPaneInfo
*result
= 0 ;
4588 PyObject
*swig_obj
[1] ;
4590 if (!args
) SWIG_fail
;
4592 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4593 if (!SWIG_IsOK(res1
)) {
4594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Fixed" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4596 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4600 wxPaneInfo
&_result_ref
= (arg1
)->Fixed();
4601 result
= (wxPaneInfo
*) &_result_ref
;
4603 wxPyEndAllowThreads(__tstate
);
4604 if (PyErr_Occurred()) SWIG_fail
;
4607 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4615 SWIGINTERN PyObject
*_wrap_PaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4616 PyObject
*resultobj
= 0;
4617 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4618 bool arg2
= (bool) true ;
4619 wxPaneInfo
*result
= 0 ;
4624 PyObject
* obj0
= 0 ;
4625 PyObject
* obj1
= 0 ;
4626 char * kwnames
[] = {
4627 (char *) "self",(char *) "resizable", NULL
4630 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4631 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4632 if (!SWIG_IsOK(res1
)) {
4633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Resizable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4635 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4637 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4638 if (!SWIG_IsOK(ecode2
)) {
4639 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4641 arg2
= static_cast< bool >(val2
);
4644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4646 wxPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4647 result
= (wxPaneInfo
*) &_result_ref
;
4649 wxPyEndAllowThreads(__tstate
);
4650 if (PyErr_Occurred()) SWIG_fail
;
4653 resultobj
= obj0
; Py_INCREF(resultobj
);
4661 SWIGINTERN PyObject
*_wrap_PaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4662 PyObject
*resultobj
= 0;
4663 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4664 wxPaneInfo
*result
= 0 ;
4667 PyObject
*swig_obj
[1] ;
4669 if (!args
) SWIG_fail
;
4671 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4672 if (!SWIG_IsOK(res1
)) {
4673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dock" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4675 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4679 wxPaneInfo
&_result_ref
= (arg1
)->Dock();
4680 result
= (wxPaneInfo
*) &_result_ref
;
4682 wxPyEndAllowThreads(__tstate
);
4683 if (PyErr_Occurred()) SWIG_fail
;
4686 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4694 SWIGINTERN PyObject
*_wrap_PaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4695 PyObject
*resultobj
= 0;
4696 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4697 wxPaneInfo
*result
= 0 ;
4700 PyObject
*swig_obj
[1] ;
4702 if (!args
) SWIG_fail
;
4704 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4705 if (!SWIG_IsOK(res1
)) {
4706 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Float" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4708 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4712 wxPaneInfo
&_result_ref
= (arg1
)->Float();
4713 result
= (wxPaneInfo
*) &_result_ref
;
4715 wxPyEndAllowThreads(__tstate
);
4716 if (PyErr_Occurred()) SWIG_fail
;
4719 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4727 SWIGINTERN PyObject
*_wrap_PaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4728 PyObject
*resultobj
= 0;
4729 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4730 wxPaneInfo
*result
= 0 ;
4733 PyObject
*swig_obj
[1] ;
4735 if (!args
) SWIG_fail
;
4737 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4738 if (!SWIG_IsOK(res1
)) {
4739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Hide" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4741 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4745 wxPaneInfo
&_result_ref
= (arg1
)->Hide();
4746 result
= (wxPaneInfo
*) &_result_ref
;
4748 wxPyEndAllowThreads(__tstate
);
4749 if (PyErr_Occurred()) SWIG_fail
;
4752 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4760 SWIGINTERN PyObject
*_wrap_PaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4761 PyObject
*resultobj
= 0;
4762 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4763 bool arg2
= (bool) true ;
4764 wxPaneInfo
*result
= 0 ;
4769 PyObject
* obj0
= 0 ;
4770 PyObject
* obj1
= 0 ;
4771 char * kwnames
[] = {
4772 (char *) "self",(char *) "show", NULL
4775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4777 if (!SWIG_IsOK(res1
)) {
4778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Show" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4780 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4782 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4783 if (!SWIG_IsOK(ecode2
)) {
4784 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
4786 arg2
= static_cast< bool >(val2
);
4789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4791 wxPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
4792 result
= (wxPaneInfo
*) &_result_ref
;
4794 wxPyEndAllowThreads(__tstate
);
4795 if (PyErr_Occurred()) SWIG_fail
;
4798 resultobj
= obj0
; Py_INCREF(resultobj
);
4806 SWIGINTERN PyObject
*_wrap_PaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4807 PyObject
*resultobj
= 0;
4808 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4809 bool arg2
= (bool) true ;
4810 wxPaneInfo
*result
= 0 ;
4815 PyObject
* obj0
= 0 ;
4816 PyObject
* obj1
= 0 ;
4817 char * kwnames
[] = {
4818 (char *) "self",(char *) "visible", NULL
4821 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4822 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4823 if (!SWIG_IsOK(res1
)) {
4824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4826 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4828 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4829 if (!SWIG_IsOK(ecode2
)) {
4830 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
4832 arg2
= static_cast< bool >(val2
);
4835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4837 wxPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
4838 result
= (wxPaneInfo
*) &_result_ref
;
4840 wxPyEndAllowThreads(__tstate
);
4841 if (PyErr_Occurred()) SWIG_fail
;
4844 resultobj
= obj0
; Py_INCREF(resultobj
);
4852 SWIGINTERN PyObject
*_wrap_PaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4853 PyObject
*resultobj
= 0;
4854 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4855 bool arg2
= (bool) true ;
4856 wxPaneInfo
*result
= 0 ;
4861 PyObject
* obj0
= 0 ;
4862 PyObject
* obj1
= 0 ;
4863 char * kwnames
[] = {
4864 (char *) "self",(char *) "visible", NULL
4867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4868 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4869 if (!SWIG_IsOK(res1
)) {
4870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4872 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4874 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4875 if (!SWIG_IsOK(ecode2
)) {
4876 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
4878 arg2
= static_cast< bool >(val2
);
4881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4883 wxPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
4884 result
= (wxPaneInfo
*) &_result_ref
;
4886 wxPyEndAllowThreads(__tstate
);
4887 if (PyErr_Occurred()) SWIG_fail
;
4890 resultobj
= obj0
; Py_INCREF(resultobj
);
4898 SWIGINTERN PyObject
*_wrap_PaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4899 PyObject
*resultobj
= 0;
4900 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4901 bool arg2
= (bool) true ;
4902 wxPaneInfo
*result
= 0 ;
4907 PyObject
* obj0
= 0 ;
4908 PyObject
* obj1
= 0 ;
4909 char * kwnames
[] = {
4910 (char *) "self",(char *) "visible", NULL
4913 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4914 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4915 if (!SWIG_IsOK(res1
)) {
4916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Gripper" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4918 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4920 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4921 if (!SWIG_IsOK(ecode2
)) {
4922 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
4924 arg2
= static_cast< bool >(val2
);
4927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4929 wxPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
4930 result
= (wxPaneInfo
*) &_result_ref
;
4932 wxPyEndAllowThreads(__tstate
);
4933 if (PyErr_Occurred()) SWIG_fail
;
4936 resultobj
= obj0
; Py_INCREF(resultobj
);
4944 SWIGINTERN PyObject
*_wrap_PaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4945 PyObject
*resultobj
= 0;
4946 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4947 bool arg2
= (bool) true ;
4948 wxPaneInfo
*result
= 0 ;
4953 PyObject
* obj0
= 0 ;
4954 PyObject
* obj1
= 0 ;
4955 char * kwnames
[] = {
4956 (char *) "self",(char *) "attop", NULL
4959 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4960 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4961 if (!SWIG_IsOK(res1
)) {
4962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4964 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4966 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4967 if (!SWIG_IsOK(ecode2
)) {
4968 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
4970 arg2
= static_cast< bool >(val2
);
4973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4975 wxPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
4976 result
= (wxPaneInfo
*) &_result_ref
;
4978 wxPyEndAllowThreads(__tstate
);
4979 if (PyErr_Occurred()) SWIG_fail
;
4982 resultobj
= obj0
; Py_INCREF(resultobj
);
4990 SWIGINTERN PyObject
*_wrap_PaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4991 PyObject
*resultobj
= 0;
4992 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4993 bool arg2
= (bool) true ;
4994 wxPaneInfo
*result
= 0 ;
4999 PyObject
* obj0
= 0 ;
5000 PyObject
* obj1
= 0 ;
5001 char * kwnames
[] = {
5002 (char *) "self",(char *) "visible", NULL
5005 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5006 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5007 if (!SWIG_IsOK(res1
)) {
5008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5010 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5012 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5013 if (!SWIG_IsOK(ecode2
)) {
5014 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5016 arg2
= static_cast< bool >(val2
);
5019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5021 wxPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5022 result
= (wxPaneInfo
*) &_result_ref
;
5024 wxPyEndAllowThreads(__tstate
);
5025 if (PyErr_Occurred()) SWIG_fail
;
5028 resultobj
= obj0
; Py_INCREF(resultobj
);
5036 SWIGINTERN PyObject
*_wrap_PaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5037 PyObject
*resultobj
= 0;
5038 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5039 bool arg2
= (bool) true ;
5040 wxPaneInfo
*result
= 0 ;
5045 PyObject
* obj0
= 0 ;
5046 PyObject
* obj1
= 0 ;
5047 char * kwnames
[] = {
5048 (char *) "self",(char *) "visible", NULL
5051 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5052 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5053 if (!SWIG_IsOK(res1
)) {
5054 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5056 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5058 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5059 if (!SWIG_IsOK(ecode2
)) {
5060 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5062 arg2
= static_cast< bool >(val2
);
5065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5067 wxPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5068 result
= (wxPaneInfo
*) &_result_ref
;
5070 wxPyEndAllowThreads(__tstate
);
5071 if (PyErr_Occurred()) SWIG_fail
;
5074 resultobj
= obj0
; Py_INCREF(resultobj
);
5082 SWIGINTERN PyObject
*_wrap_PaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5083 PyObject
*resultobj
= 0;
5084 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5085 bool arg2
= (bool) true ;
5086 wxPaneInfo
*result
= 0 ;
5091 PyObject
* obj0
= 0 ;
5092 PyObject
* obj1
= 0 ;
5093 char * kwnames
[] = {
5094 (char *) "self",(char *) "visible", NULL
5097 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5098 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5099 if (!SWIG_IsOK(res1
)) {
5100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5102 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5104 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5105 if (!SWIG_IsOK(ecode2
)) {
5106 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5108 arg2
= static_cast< bool >(val2
);
5111 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5113 wxPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5114 result
= (wxPaneInfo
*) &_result_ref
;
5116 wxPyEndAllowThreads(__tstate
);
5117 if (PyErr_Occurred()) SWIG_fail
;
5120 resultobj
= obj0
; Py_INCREF(resultobj
);
5128 SWIGINTERN PyObject
*_wrap_PaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5129 PyObject
*resultobj
= 0;
5130 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5131 bool arg2
= (bool) true ;
5132 wxPaneInfo
*result
= 0 ;
5137 PyObject
* obj0
= 0 ;
5138 PyObject
* obj1
= 0 ;
5139 char * kwnames
[] = {
5140 (char *) "self",(char *) "visible", NULL
5143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5144 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5145 if (!SWIG_IsOK(res1
)) {
5146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PinButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5148 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5150 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5151 if (!SWIG_IsOK(ecode2
)) {
5152 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5154 arg2
= static_cast< bool >(val2
);
5157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5159 wxPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5160 result
= (wxPaneInfo
*) &_result_ref
;
5162 wxPyEndAllowThreads(__tstate
);
5163 if (PyErr_Occurred()) SWIG_fail
;
5166 resultobj
= obj0
; Py_INCREF(resultobj
);
5174 SWIGINTERN PyObject
*_wrap_PaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5175 PyObject
*resultobj
= 0;
5176 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5177 bool arg2
= (bool) true ;
5178 wxPaneInfo
*result
= 0 ;
5183 PyObject
* obj0
= 0 ;
5184 PyObject
* obj1
= 0 ;
5185 char * kwnames
[] = {
5186 (char *) "self",(char *) "b", NULL
5189 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5190 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5191 if (!SWIG_IsOK(res1
)) {
5192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5194 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5196 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5197 if (!SWIG_IsOK(ecode2
)) {
5198 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5200 arg2
= static_cast< bool >(val2
);
5203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5205 wxPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5206 result
= (wxPaneInfo
*) &_result_ref
;
5208 wxPyEndAllowThreads(__tstate
);
5209 if (PyErr_Occurred()) SWIG_fail
;
5212 resultobj
= obj0
; Py_INCREF(resultobj
);
5220 SWIGINTERN PyObject
*_wrap_PaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5221 PyObject
*resultobj
= 0;
5222 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5223 bool arg2
= (bool) true ;
5224 wxPaneInfo
*result
= 0 ;
5229 PyObject
* obj0
= 0 ;
5230 PyObject
* obj1
= 0 ;
5231 char * kwnames
[] = {
5232 (char *) "self",(char *) "b", NULL
5235 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5236 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5237 if (!SWIG_IsOK(res1
)) {
5238 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5240 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5242 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5243 if (!SWIG_IsOK(ecode2
)) {
5244 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5246 arg2
= static_cast< bool >(val2
);
5249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5251 wxPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5252 result
= (wxPaneInfo
*) &_result_ref
;
5254 wxPyEndAllowThreads(__tstate
);
5255 if (PyErr_Occurred()) SWIG_fail
;
5258 resultobj
= obj0
; Py_INCREF(resultobj
);
5266 SWIGINTERN PyObject
*_wrap_PaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5267 PyObject
*resultobj
= 0;
5268 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5269 bool arg2
= (bool) true ;
5270 wxPaneInfo
*result
= 0 ;
5275 PyObject
* obj0
= 0 ;
5276 PyObject
* obj1
= 0 ;
5277 char * kwnames
[] = {
5278 (char *) "self",(char *) "b", NULL
5281 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5282 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5283 if (!SWIG_IsOK(res1
)) {
5284 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5286 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5288 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5289 if (!SWIG_IsOK(ecode2
)) {
5290 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5292 arg2
= static_cast< bool >(val2
);
5295 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5297 wxPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5298 result
= (wxPaneInfo
*) &_result_ref
;
5300 wxPyEndAllowThreads(__tstate
);
5301 if (PyErr_Occurred()) SWIG_fail
;
5304 resultobj
= obj0
; Py_INCREF(resultobj
);
5312 SWIGINTERN PyObject
*_wrap_PaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5313 PyObject
*resultobj
= 0;
5314 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5315 bool arg2
= (bool) true ;
5316 wxPaneInfo
*result
= 0 ;
5321 PyObject
* obj0
= 0 ;
5322 PyObject
* obj1
= 0 ;
5323 char * kwnames
[] = {
5324 (char *) "self",(char *) "b", NULL
5327 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5328 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5329 if (!SWIG_IsOK(res1
)) {
5330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5332 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5334 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5335 if (!SWIG_IsOK(ecode2
)) {
5336 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5338 arg2
= static_cast< bool >(val2
);
5341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5343 wxPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5344 result
= (wxPaneInfo
*) &_result_ref
;
5346 wxPyEndAllowThreads(__tstate
);
5347 if (PyErr_Occurred()) SWIG_fail
;
5350 resultobj
= obj0
; Py_INCREF(resultobj
);
5358 SWIGINTERN PyObject
*_wrap_PaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5359 PyObject
*resultobj
= 0;
5360 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5361 bool arg2
= (bool) true ;
5362 wxPaneInfo
*result
= 0 ;
5367 PyObject
* obj0
= 0 ;
5368 PyObject
* obj1
= 0 ;
5369 char * kwnames
[] = {
5370 (char *) "self",(char *) "b", NULL
5373 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5374 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5375 if (!SWIG_IsOK(res1
)) {
5376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5378 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5380 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5381 if (!SWIG_IsOK(ecode2
)) {
5382 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5384 arg2
= static_cast< bool >(val2
);
5387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5389 wxPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5390 result
= (wxPaneInfo
*) &_result_ref
;
5392 wxPyEndAllowThreads(__tstate
);
5393 if (PyErr_Occurred()) SWIG_fail
;
5396 resultobj
= obj0
; Py_INCREF(resultobj
);
5404 SWIGINTERN PyObject
*_wrap_PaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5405 PyObject
*resultobj
= 0;
5406 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5407 bool arg2
= (bool) true ;
5408 wxPaneInfo
*result
= 0 ;
5413 PyObject
* obj0
= 0 ;
5414 PyObject
* obj1
= 0 ;
5415 char * kwnames
[] = {
5416 (char *) "self",(char *) "b", NULL
5419 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5420 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5421 if (!SWIG_IsOK(res1
)) {
5422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Floatable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5424 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5426 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5427 if (!SWIG_IsOK(ecode2
)) {
5428 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5430 arg2
= static_cast< bool >(val2
);
5433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5435 wxPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5436 result
= (wxPaneInfo
*) &_result_ref
;
5438 wxPyEndAllowThreads(__tstate
);
5439 if (PyErr_Occurred()) SWIG_fail
;
5442 resultobj
= obj0
; Py_INCREF(resultobj
);
5450 SWIGINTERN PyObject
*_wrap_PaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5451 PyObject
*resultobj
= 0;
5452 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5453 bool arg2
= (bool) true ;
5454 wxPaneInfo
*result
= 0 ;
5459 PyObject
* obj0
= 0 ;
5460 PyObject
* obj1
= 0 ;
5461 char * kwnames
[] = {
5462 (char *) "self",(char *) "b", NULL
5465 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5466 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5467 if (!SWIG_IsOK(res1
)) {
5468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Movable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5470 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5472 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5473 if (!SWIG_IsOK(ecode2
)) {
5474 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5476 arg2
= static_cast< bool >(val2
);
5479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5481 wxPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5482 result
= (wxPaneInfo
*) &_result_ref
;
5484 wxPyEndAllowThreads(__tstate
);
5485 if (PyErr_Occurred()) SWIG_fail
;
5488 resultobj
= obj0
; Py_INCREF(resultobj
);
5496 SWIGINTERN PyObject
*_wrap_PaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5497 PyObject
*resultobj
= 0;
5498 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5499 bool arg2
= (bool) true ;
5500 wxPaneInfo
*result
= 0 ;
5505 PyObject
* obj0
= 0 ;
5506 PyObject
* obj1
= 0 ;
5507 char * kwnames
[] = {
5508 (char *) "self",(char *) "b", NULL
5511 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5512 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5513 if (!SWIG_IsOK(res1
)) {
5514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5516 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5518 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5519 if (!SWIG_IsOK(ecode2
)) {
5520 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5522 arg2
= static_cast< bool >(val2
);
5525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5527 wxPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5528 result
= (wxPaneInfo
*) &_result_ref
;
5530 wxPyEndAllowThreads(__tstate
);
5531 if (PyErr_Occurred()) SWIG_fail
;
5534 resultobj
= obj0
; Py_INCREF(resultobj
);
5542 SWIGINTERN PyObject
*_wrap_PaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5543 PyObject
*resultobj
= 0;
5544 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5545 wxPaneInfo
*result
= 0 ;
5548 PyObject
*swig_obj
[1] ;
5550 if (!args
) SWIG_fail
;
5552 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5553 if (!SWIG_IsOK(res1
)) {
5554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5556 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5560 wxPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5561 result
= (wxPaneInfo
*) &_result_ref
;
5563 wxPyEndAllowThreads(__tstate
);
5564 if (PyErr_Occurred()) SWIG_fail
;
5567 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5575 SWIGINTERN PyObject
*_wrap_PaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5576 PyObject
*resultobj
= 0;
5577 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5578 wxPaneInfo
*result
= 0 ;
5581 PyObject
*swig_obj
[1] ;
5583 if (!args
) SWIG_fail
;
5585 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5586 if (!SWIG_IsOK(res1
)) {
5587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5589 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5593 wxPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5594 result
= (wxPaneInfo
*) &_result_ref
;
5596 wxPyEndAllowThreads(__tstate
);
5597 if (PyErr_Occurred()) SWIG_fail
;
5600 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5608 SWIGINTERN PyObject
*_wrap_PaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5609 PyObject
*resultobj
= 0;
5610 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5611 wxPaneInfo
*result
= 0 ;
5614 PyObject
*swig_obj
[1] ;
5616 if (!args
) SWIG_fail
;
5618 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5619 if (!SWIG_IsOK(res1
)) {
5620 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5622 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5626 wxPaneInfo
&_result_ref
= (arg1
)->CenterPane();
5627 result
= (wxPaneInfo
*) &_result_ref
;
5629 wxPyEndAllowThreads(__tstate
);
5630 if (PyErr_Occurred()) SWIG_fail
;
5633 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5641 SWIGINTERN PyObject
*_wrap_PaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5642 PyObject
*resultobj
= 0;
5643 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5644 wxPaneInfo
*result
= 0 ;
5647 PyObject
*swig_obj
[1] ;
5649 if (!args
) SWIG_fail
;
5651 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5652 if (!SWIG_IsOK(res1
)) {
5653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5655 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5659 wxPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
5660 result
= (wxPaneInfo
*) &_result_ref
;
5662 wxPyEndAllowThreads(__tstate
);
5663 if (PyErr_Occurred()) SWIG_fail
;
5666 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5674 SWIGINTERN PyObject
*_wrap_PaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5675 PyObject
*resultobj
= 0;
5676 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5679 wxPaneInfo
*result
= 0 ;
5686 PyObject
* obj0
= 0 ;
5687 PyObject
* obj1
= 0 ;
5688 PyObject
* obj2
= 0 ;
5689 char * kwnames
[] = {
5690 (char *) "self",(char *) "flag",(char *) "option_state", NULL
5693 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5694 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5695 if (!SWIG_IsOK(res1
)) {
5696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5698 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5699 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5700 if (!SWIG_IsOK(ecode2
)) {
5701 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
5703 arg2
= static_cast< int >(val2
);
5704 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5705 if (!SWIG_IsOK(ecode3
)) {
5706 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
5708 arg3
= static_cast< bool >(val3
);
5710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5712 wxPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
5713 result
= (wxPaneInfo
*) &_result_ref
;
5715 wxPyEndAllowThreads(__tstate
);
5716 if (PyErr_Occurred()) SWIG_fail
;
5719 resultobj
= obj0
; Py_INCREF(resultobj
);
5727 SWIGINTERN PyObject
*_wrap_PaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5728 PyObject
*resultobj
= 0;
5729 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5736 PyObject
* obj0
= 0 ;
5737 PyObject
* obj1
= 0 ;
5738 char * kwnames
[] = {
5739 (char *) "self",(char *) "flag", NULL
5742 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5743 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5744 if (!SWIG_IsOK(res1
)) {
5745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
5747 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5748 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5749 if (!SWIG_IsOK(ecode2
)) {
5750 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
5752 arg2
= static_cast< int >(val2
);
5754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5755 result
= (bool)((wxPaneInfo
const *)arg1
)->HasFlag(arg2
);
5756 wxPyEndAllowThreads(__tstate
);
5757 if (PyErr_Occurred()) SWIG_fail
;
5760 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5768 SWIGINTERN PyObject
*_wrap_PaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5769 PyObject
*resultobj
= 0;
5770 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5771 wxString
*arg2
= (wxString
*) 0 ;
5774 bool temp2
= false ;
5775 PyObject
*swig_obj
[2] ;
5777 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
5778 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5779 if (!SWIG_IsOK(res1
)) {
5780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_name_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5782 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5784 arg2
= wxString_in_helper(swig_obj
[1]);
5785 if (arg2
== NULL
) SWIG_fail
;
5788 if (arg1
) (arg1
)->name
= *arg2
;
5790 resultobj
= SWIG_Py_Void();
5805 SWIGINTERN PyObject
*_wrap_PaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5806 PyObject
*resultobj
= 0;
5807 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5808 wxString
*result
= 0 ;
5811 PyObject
*swig_obj
[1] ;
5813 if (!args
) SWIG_fail
;
5815 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5816 if (!SWIG_IsOK(res1
)) {
5817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_name_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5819 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5820 result
= (wxString
*)& ((arg1
)->name
);
5823 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
5825 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
5834 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5835 PyObject
*resultobj
= 0;
5836 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5837 wxString
*arg2
= (wxString
*) 0 ;
5840 bool temp2
= false ;
5841 PyObject
*swig_obj
[2] ;
5843 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
5844 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5845 if (!SWIG_IsOK(res1
)) {
5846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5848 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5850 arg2
= wxString_in_helper(swig_obj
[1]);
5851 if (arg2
== NULL
) SWIG_fail
;
5854 if (arg1
) (arg1
)->caption
= *arg2
;
5856 resultobj
= SWIG_Py_Void();
5871 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5872 PyObject
*resultobj
= 0;
5873 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5874 wxString
*result
= 0 ;
5877 PyObject
*swig_obj
[1] ;
5879 if (!args
) SWIG_fail
;
5881 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5882 if (!SWIG_IsOK(res1
)) {
5883 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5885 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5886 result
= (wxString
*)& ((arg1
)->caption
);
5889 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
5891 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
5900 SWIGINTERN PyObject
*_wrap_PaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5901 PyObject
*resultobj
= 0;
5902 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5903 wxWindow
*arg2
= (wxWindow
*) 0 ;
5908 PyObject
*swig_obj
[2] ;
5910 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
5911 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5912 if (!SWIG_IsOK(res1
)) {
5913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5915 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5916 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
5917 if (!SWIG_IsOK(res2
)) {
5918 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
5920 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
5921 if (arg1
) (arg1
)->window
= arg2
;
5923 resultobj
= SWIG_Py_Void();
5930 SWIGINTERN PyObject
*_wrap_PaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5931 PyObject
*resultobj
= 0;
5932 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5933 wxWindow
*result
= 0 ;
5936 PyObject
*swig_obj
[1] ;
5938 if (!args
) SWIG_fail
;
5940 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5941 if (!SWIG_IsOK(res1
)) {
5942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5944 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5945 result
= (wxWindow
*) ((arg1
)->window
);
5947 resultobj
= wxPyMake_wxObject(result
, 0);
5955 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5956 PyObject
*resultobj
= 0;
5957 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5958 wxFrame
*arg2
= (wxFrame
*) 0 ;
5963 PyObject
*swig_obj
[2] ;
5965 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
5966 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5967 if (!SWIG_IsOK(res1
)) {
5968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5970 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5971 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
5972 if (!SWIG_IsOK(res2
)) {
5973 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
5975 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
5976 if (arg1
) (arg1
)->frame
= arg2
;
5978 resultobj
= SWIG_Py_Void();
5985 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5986 PyObject
*resultobj
= 0;
5987 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5988 wxFrame
*result
= 0 ;
5991 PyObject
*swig_obj
[1] ;
5993 if (!args
) SWIG_fail
;
5995 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5996 if (!SWIG_IsOK(res1
)) {
5997 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5999 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6000 result
= (wxFrame
*) ((arg1
)->frame
);
6002 resultobj
= wxPyMake_wxObject(result
, 0);
6010 SWIGINTERN PyObject
*_wrap_PaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6011 PyObject
*resultobj
= 0;
6012 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6018 PyObject
*swig_obj
[2] ;
6020 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6021 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6022 if (!SWIG_IsOK(res1
)) {
6023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6025 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6026 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6027 if (!SWIG_IsOK(ecode2
)) {
6028 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6030 arg2
= static_cast< int >(val2
);
6031 if (arg1
) (arg1
)->state
= arg2
;
6033 resultobj
= SWIG_Py_Void();
6040 SWIGINTERN PyObject
*_wrap_PaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6041 PyObject
*resultobj
= 0;
6042 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6046 PyObject
*swig_obj
[1] ;
6048 if (!args
) SWIG_fail
;
6050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6051 if (!SWIG_IsOK(res1
)) {
6052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6054 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6055 result
= (int) ((arg1
)->state
);
6056 resultobj
= SWIG_From_int(static_cast< int >(result
));
6063 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6064 PyObject
*resultobj
= 0;
6065 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6071 PyObject
*swig_obj
[2] ;
6073 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6074 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6075 if (!SWIG_IsOK(res1
)) {
6076 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6078 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6079 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6080 if (!SWIG_IsOK(ecode2
)) {
6081 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6083 arg2
= static_cast< int >(val2
);
6084 if (arg1
) (arg1
)->dock_direction
= arg2
;
6086 resultobj
= SWIG_Py_Void();
6093 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6094 PyObject
*resultobj
= 0;
6095 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6099 PyObject
*swig_obj
[1] ;
6101 if (!args
) SWIG_fail
;
6103 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6104 if (!SWIG_IsOK(res1
)) {
6105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6107 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6108 result
= (int) ((arg1
)->dock_direction
);
6109 resultobj
= SWIG_From_int(static_cast< int >(result
));
6116 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6117 PyObject
*resultobj
= 0;
6118 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6124 PyObject
*swig_obj
[2] ;
6126 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6127 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6128 if (!SWIG_IsOK(res1
)) {
6129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6131 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6132 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6133 if (!SWIG_IsOK(ecode2
)) {
6134 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6136 arg2
= static_cast< int >(val2
);
6137 if (arg1
) (arg1
)->dock_layer
= arg2
;
6139 resultobj
= SWIG_Py_Void();
6146 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6147 PyObject
*resultobj
= 0;
6148 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6152 PyObject
*swig_obj
[1] ;
6154 if (!args
) SWIG_fail
;
6156 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6157 if (!SWIG_IsOK(res1
)) {
6158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6160 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6161 result
= (int) ((arg1
)->dock_layer
);
6162 resultobj
= SWIG_From_int(static_cast< int >(result
));
6169 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6170 PyObject
*resultobj
= 0;
6171 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6177 PyObject
*swig_obj
[2] ;
6179 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6181 if (!SWIG_IsOK(res1
)) {
6182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6184 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6185 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6186 if (!SWIG_IsOK(ecode2
)) {
6187 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6189 arg2
= static_cast< int >(val2
);
6190 if (arg1
) (arg1
)->dock_row
= arg2
;
6192 resultobj
= SWIG_Py_Void();
6199 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6200 PyObject
*resultobj
= 0;
6201 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6205 PyObject
*swig_obj
[1] ;
6207 if (!args
) SWIG_fail
;
6209 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6210 if (!SWIG_IsOK(res1
)) {
6211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6213 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6214 result
= (int) ((arg1
)->dock_row
);
6215 resultobj
= SWIG_From_int(static_cast< int >(result
));
6222 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6223 PyObject
*resultobj
= 0;
6224 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6230 PyObject
*swig_obj
[2] ;
6232 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6234 if (!SWIG_IsOK(res1
)) {
6235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6237 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6238 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6239 if (!SWIG_IsOK(ecode2
)) {
6240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6242 arg2
= static_cast< int >(val2
);
6243 if (arg1
) (arg1
)->dock_pos
= arg2
;
6245 resultobj
= SWIG_Py_Void();
6252 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6253 PyObject
*resultobj
= 0;
6254 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6258 PyObject
*swig_obj
[1] ;
6260 if (!args
) SWIG_fail
;
6262 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6263 if (!SWIG_IsOK(res1
)) {
6264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6266 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6267 result
= (int) ((arg1
)->dock_pos
);
6268 resultobj
= SWIG_From_int(static_cast< int >(result
));
6275 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6276 PyObject
*resultobj
= 0;
6277 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6278 wxSize
*arg2
= (wxSize
*) 0 ;
6283 PyObject
*swig_obj
[2] ;
6285 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6287 if (!SWIG_IsOK(res1
)) {
6288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6290 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6291 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6292 if (!SWIG_IsOK(res2
)) {
6293 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6295 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6296 if (arg1
) (arg1
)->best_size
= *arg2
;
6298 resultobj
= SWIG_Py_Void();
6305 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6306 PyObject
*resultobj
= 0;
6307 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6308 wxSize
*result
= 0 ;
6311 PyObject
*swig_obj
[1] ;
6313 if (!args
) SWIG_fail
;
6315 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6316 if (!SWIG_IsOK(res1
)) {
6317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6319 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6320 result
= (wxSize
*)& ((arg1
)->best_size
);
6321 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6328 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6329 PyObject
*resultobj
= 0;
6330 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6331 wxSize
*arg2
= (wxSize
*) 0 ;
6336 PyObject
*swig_obj
[2] ;
6338 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6339 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6340 if (!SWIG_IsOK(res1
)) {
6341 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6343 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6344 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6345 if (!SWIG_IsOK(res2
)) {
6346 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6348 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6349 if (arg1
) (arg1
)->min_size
= *arg2
;
6351 resultobj
= SWIG_Py_Void();
6358 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6359 PyObject
*resultobj
= 0;
6360 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6361 wxSize
*result
= 0 ;
6364 PyObject
*swig_obj
[1] ;
6366 if (!args
) SWIG_fail
;
6368 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6369 if (!SWIG_IsOK(res1
)) {
6370 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6372 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6373 result
= (wxSize
*)& ((arg1
)->min_size
);
6374 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6381 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6382 PyObject
*resultobj
= 0;
6383 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6384 wxSize
*arg2
= (wxSize
*) 0 ;
6389 PyObject
*swig_obj
[2] ;
6391 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6392 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6393 if (!SWIG_IsOK(res1
)) {
6394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6396 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6397 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6398 if (!SWIG_IsOK(res2
)) {
6399 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6401 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6402 if (arg1
) (arg1
)->max_size
= *arg2
;
6404 resultobj
= SWIG_Py_Void();
6411 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6412 PyObject
*resultobj
= 0;
6413 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6414 wxSize
*result
= 0 ;
6417 PyObject
*swig_obj
[1] ;
6419 if (!args
) SWIG_fail
;
6421 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6422 if (!SWIG_IsOK(res1
)) {
6423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6425 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6426 result
= (wxSize
*)& ((arg1
)->max_size
);
6427 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6434 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6435 PyObject
*resultobj
= 0;
6436 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6437 wxPoint
*arg2
= (wxPoint
*) 0 ;
6442 PyObject
*swig_obj
[2] ;
6444 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6445 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6446 if (!SWIG_IsOK(res1
)) {
6447 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6449 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6450 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6451 if (!SWIG_IsOK(res2
)) {
6452 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6454 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6455 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6457 resultobj
= SWIG_Py_Void();
6464 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6465 PyObject
*resultobj
= 0;
6466 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6467 wxPoint
*result
= 0 ;
6470 PyObject
*swig_obj
[1] ;
6472 if (!args
) SWIG_fail
;
6474 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6475 if (!SWIG_IsOK(res1
)) {
6476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6478 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6479 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6480 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6487 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6488 PyObject
*resultobj
= 0;
6489 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6490 wxSize
*arg2
= (wxSize
*) 0 ;
6495 PyObject
*swig_obj
[2] ;
6497 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6498 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6499 if (!SWIG_IsOK(res1
)) {
6500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6502 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6503 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6504 if (!SWIG_IsOK(res2
)) {
6505 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6507 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6508 if (arg1
) (arg1
)->floating_size
= *arg2
;
6510 resultobj
= SWIG_Py_Void();
6517 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6518 PyObject
*resultobj
= 0;
6519 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6520 wxSize
*result
= 0 ;
6523 PyObject
*swig_obj
[1] ;
6525 if (!args
) SWIG_fail
;
6527 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6528 if (!SWIG_IsOK(res1
)) {
6529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6531 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6532 result
= (wxSize
*)& ((arg1
)->floating_size
);
6533 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6540 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6541 PyObject
*resultobj
= 0;
6542 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6548 PyObject
*swig_obj
[2] ;
6550 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6551 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6552 if (!SWIG_IsOK(res1
)) {
6553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6555 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6556 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6557 if (!SWIG_IsOK(ecode2
)) {
6558 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6560 arg2
= static_cast< int >(val2
);
6561 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6563 resultobj
= SWIG_Py_Void();
6570 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6571 PyObject
*resultobj
= 0;
6572 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6576 PyObject
*swig_obj
[1] ;
6578 if (!args
) SWIG_fail
;
6580 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6581 if (!SWIG_IsOK(res1
)) {
6582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6584 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6585 result
= (int) ((arg1
)->dock_proportion
);
6586 resultobj
= SWIG_From_int(static_cast< int >(result
));
6593 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6594 PyObject
*resultobj
= 0;
6595 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6596 wxPaneButtonArray arg2
;
6601 PyObject
*swig_obj
[2] ;
6603 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6604 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6605 if (!SWIG_IsOK(res1
)) {
6606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6608 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6610 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneButtonArray
, 0 | 0);
6611 if (!SWIG_IsOK(res2
)) {
6612 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6615 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6617 wxPaneButtonArray
* temp
= reinterpret_cast< wxPaneButtonArray
* >(argp2
);
6619 if (SWIG_IsNewObj(res2
)) delete temp
;
6622 if (arg1
) (arg1
)->buttons
= arg2
;
6624 resultobj
= SWIG_Py_Void();
6631 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6632 PyObject
*resultobj
= 0;
6633 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6634 wxPaneButtonArray result
;
6637 PyObject
*swig_obj
[1] ;
6639 if (!args
) SWIG_fail
;
6641 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6642 if (!SWIG_IsOK(res1
)) {
6643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6645 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6646 result
= ((arg1
)->buttons
);
6647 resultobj
= SWIG_NewPointerObj((new wxPaneButtonArray(static_cast< const wxPaneButtonArray
& >(result
))), SWIGTYPE_p_wxPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
6654 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6655 PyObject
*resultobj
= 0;
6656 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6657 wxRect
*arg2
= (wxRect
*) 0 ;
6662 PyObject
*swig_obj
[2] ;
6664 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
6665 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6666 if (!SWIG_IsOK(res1
)) {
6667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6669 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6670 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
6671 if (!SWIG_IsOK(res2
)) {
6672 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
6674 arg2
= reinterpret_cast< wxRect
* >(argp2
);
6675 if (arg1
) (arg1
)->rect
= *arg2
;
6677 resultobj
= SWIG_Py_Void();
6684 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6685 PyObject
*resultobj
= 0;
6686 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6687 wxRect
*result
= 0 ;
6690 PyObject
*swig_obj
[1] ;
6692 if (!args
) SWIG_fail
;
6694 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6695 if (!SWIG_IsOK(res1
)) {
6696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6698 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6699 result
= (wxRect
*)& ((arg1
)->rect
);
6700 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
6707 SWIGINTERN PyObject
*PaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6709 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
6710 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneInfo
, SWIG_NewClientData(obj
));
6711 return SWIG_Py_Void();
6714 SWIGINTERN PyObject
*PaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6715 return SWIG_Python_InitShadowInstance(args
);
6718 SWIGINTERN PyObject
*_wrap_new_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6719 PyObject
*resultobj
= 0;
6720 wxWindow
*arg1
= (wxWindow
*) NULL
;
6721 int arg2
= (int) wxAUI_MGR_DEFAULT
;
6722 wxFrameManager
*result
= 0 ;
6727 PyObject
* obj0
= 0 ;
6728 PyObject
* obj1
= 0 ;
6729 char * kwnames
[] = {
6730 (char *) "managed_wnd",(char *) "flags", NULL
6733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FrameManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6735 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6736 if (!SWIG_IsOK(res1
)) {
6737 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FrameManager" "', expected argument " "1"" of type '" "wxWindow *""'");
6739 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
6742 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6743 if (!SWIG_IsOK(ecode2
)) {
6744 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FrameManager" "', expected argument " "2"" of type '" "int""'");
6746 arg2
= static_cast< int >(val2
);
6749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6750 result
= (wxFrameManager
*)new wxFrameManager(arg1
,arg2
);
6751 wxPyEndAllowThreads(__tstate
);
6752 if (PyErr_Occurred()) SWIG_fail
;
6754 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_NEW
| 0 );
6761 SWIGINTERN PyObject
*_wrap_delete_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6762 PyObject
*resultobj
= 0;
6763 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6766 PyObject
*swig_obj
[1] ;
6768 if (!args
) SWIG_fail
;
6770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_DISOWN
| 0 );
6771 if (!SWIG_IsOK(res1
)) {
6772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FrameManager" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6774 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6779 wxPyEndAllowThreads(__tstate
);
6780 if (PyErr_Occurred()) SWIG_fail
;
6782 resultobj
= SWIG_Py_Void();
6789 SWIGINTERN PyObject
*_wrap_FrameManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6790 PyObject
*resultobj
= 0;
6791 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6794 PyObject
*swig_obj
[1] ;
6796 if (!args
) SWIG_fail
;
6798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6799 if (!SWIG_IsOK(res1
)) {
6800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_UnInit" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6802 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6806 wxPyEndAllowThreads(__tstate
);
6807 if (PyErr_Occurred()) SWIG_fail
;
6809 resultobj
= SWIG_Py_Void();
6816 SWIGINTERN PyObject
*_wrap_FrameManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6817 PyObject
*resultobj
= 0;
6818 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6824 PyObject
* obj0
= 0 ;
6825 PyObject
* obj1
= 0 ;
6826 char * kwnames
[] = {
6827 (char *) "self",(char *) "flags", NULL
6830 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6831 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6832 if (!SWIG_IsOK(res1
)) {
6833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetFlags" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6835 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6836 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6837 if (!SWIG_IsOK(ecode2
)) {
6838 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
6840 arg2
= static_cast< int >(val2
);
6842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6843 (arg1
)->SetFlags(arg2
);
6844 wxPyEndAllowThreads(__tstate
);
6845 if (PyErr_Occurred()) SWIG_fail
;
6847 resultobj
= SWIG_Py_Void();
6854 SWIGINTERN PyObject
*_wrap_FrameManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6855 PyObject
*resultobj
= 0;
6856 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6860 PyObject
*swig_obj
[1] ;
6862 if (!args
) SWIG_fail
;
6864 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6865 if (!SWIG_IsOK(res1
)) {
6866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetFlags" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
6868 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6871 result
= (int)((wxFrameManager
const *)arg1
)->GetFlags();
6872 wxPyEndAllowThreads(__tstate
);
6873 if (PyErr_Occurred()) SWIG_fail
;
6875 resultobj
= SWIG_From_int(static_cast< int >(result
));
6882 SWIGINTERN PyObject
*_wrap_FrameManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6883 PyObject
*resultobj
= 0;
6884 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6885 wxWindow
*arg2
= (wxWindow
*) 0 ;
6890 PyObject
* obj0
= 0 ;
6891 PyObject
* obj1
= 0 ;
6892 char * kwnames
[] = {
6893 (char *) "self",(char *) "managed_wnd", NULL
6896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6898 if (!SWIG_IsOK(res1
)) {
6899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6901 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6902 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6903 if (!SWIG_IsOK(res2
)) {
6904 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
6906 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6909 (arg1
)->SetManagedWindow(arg2
);
6910 wxPyEndAllowThreads(__tstate
);
6911 if (PyErr_Occurred()) SWIG_fail
;
6913 resultobj
= SWIG_Py_Void();
6920 SWIGINTERN PyObject
*_wrap_FrameManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6921 PyObject
*resultobj
= 0;
6922 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6923 wxWindow
*result
= 0 ;
6926 PyObject
*swig_obj
[1] ;
6928 if (!args
) SWIG_fail
;
6930 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6931 if (!SWIG_IsOK(res1
)) {
6932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
6934 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6937 result
= (wxWindow
*)((wxFrameManager
const *)arg1
)->GetManagedWindow();
6938 wxPyEndAllowThreads(__tstate
);
6939 if (PyErr_Occurred()) SWIG_fail
;
6942 resultobj
= wxPyMake_wxObject(result
, 0);
6950 SWIGINTERN PyObject
*_wrap_FrameManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6951 PyObject
*resultobj
= 0;
6952 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6953 wxDockArt
*arg2
= (wxDockArt
*) 0 ;
6957 PyObject
* obj0
= 0 ;
6958 PyObject
* obj1
= 0 ;
6959 char * kwnames
[] = {
6960 (char *) "self",(char *) "art_provider", NULL
6963 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6964 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6965 if (!SWIG_IsOK(res1
)) {
6966 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6968 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6969 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
6970 if (!SWIG_IsOK(res2
)) {
6971 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "2"" of type '" "wxDockArt *""'");
6974 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6975 (arg1
)->SetArtProvider(arg2
);
6976 wxPyEndAllowThreads(__tstate
);
6977 if (PyErr_Occurred()) SWIG_fail
;
6979 resultobj
= SWIG_Py_Void();
6986 SWIGINTERN PyObject
*_wrap_FrameManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6987 PyObject
*resultobj
= 0;
6988 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6989 wxDockArt
*result
= 0 ;
6992 PyObject
*swig_obj
[1] ;
6994 if (!args
) SWIG_fail
;
6996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6997 if (!SWIG_IsOK(res1
)) {
6998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
7000 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7003 result
= (wxDockArt
*)((wxFrameManager
const *)arg1
)->GetArtProvider();
7004 wxPyEndAllowThreads(__tstate
);
7005 if (PyErr_Occurred()) SWIG_fail
;
7007 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockArt
, 0 | 0 );
7014 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7015 PyObject
*resultobj
= 0;
7016 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7017 wxWindow
*arg2
= (wxWindow
*) 0 ;
7018 wxPaneInfo
*result
= 0 ;
7023 PyObject
* obj0
= 0 ;
7024 PyObject
* obj1
= 0 ;
7025 char * kwnames
[] = {
7026 (char *) "self",(char *) "window", NULL
7029 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7030 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7031 if (!SWIG_IsOK(res1
)) {
7032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7034 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7035 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7036 if (!SWIG_IsOK(res2
)) {
7037 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7039 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7043 wxPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7044 result
= (wxPaneInfo
*) &_result_ref
;
7046 wxPyEndAllowThreads(__tstate
);
7047 if (PyErr_Occurred()) SWIG_fail
;
7049 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7056 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7057 PyObject
*resultobj
= 0;
7058 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7059 wxString
*arg2
= 0 ;
7060 wxPaneInfo
*result
= 0 ;
7063 bool temp2
= false ;
7064 PyObject
* obj0
= 0 ;
7065 PyObject
* obj1
= 0 ;
7066 char * kwnames
[] = {
7067 (char *) "self",(char *) "name", NULL
7070 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7071 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7072 if (!SWIG_IsOK(res1
)) {
7073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByName" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7075 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7077 arg2
= wxString_in_helper(obj1
);
7078 if (arg2
== NULL
) SWIG_fail
;
7082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7084 wxPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7085 result
= (wxPaneInfo
*) &_result_ref
;
7087 wxPyEndAllowThreads(__tstate
);
7088 if (PyErr_Occurred()) SWIG_fail
;
7090 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7105 SWIGINTERN PyObject
*_wrap_FrameManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7106 PyObject
*resultobj
= 0;
7107 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7108 wxPaneInfoArray
*result
= 0 ;
7111 PyObject
*swig_obj
[1] ;
7113 if (!args
) SWIG_fail
;
7115 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7116 if (!SWIG_IsOK(res1
)) {
7117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetAllPanes" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7119 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7123 wxPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7124 result
= (wxPaneInfoArray
*) &_result_ref
;
7126 wxPyEndAllowThreads(__tstate
);
7127 if (PyErr_Occurred()) SWIG_fail
;
7130 resultobj
= PyList_New(0);
7131 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7132 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxPaneInfo
, 0);
7133 PyList_Append(resultobj
, pane_obj
);
7142 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7143 PyObject
*resultobj
= 0;
7144 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7145 wxWindow
*arg2
= (wxWindow
*) 0 ;
7146 wxPaneInfo
*arg3
= 0 ;
7154 PyObject
* obj0
= 0 ;
7155 PyObject
* obj1
= 0 ;
7156 PyObject
* obj2
= 0 ;
7157 char * kwnames
[] = {
7158 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7163 if (!SWIG_IsOK(res1
)) {
7164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane1" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7166 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7167 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7168 if (!SWIG_IsOK(res2
)) {
7169 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7171 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7172 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7173 if (!SWIG_IsOK(res3
)) {
7174 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7177 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7179 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7182 result
= (bool)(arg1
)->AddPane(arg2
,(wxPaneInfo
const &)*arg3
);
7183 wxPyEndAllowThreads(__tstate
);
7184 if (PyErr_Occurred()) SWIG_fail
;
7187 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7195 SWIGINTERN PyObject
*_wrap_FrameManager_AddPaneAtPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7196 PyObject
*resultobj
= 0;
7197 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7198 wxWindow
*arg2
= (wxWindow
*) 0 ;
7199 wxPaneInfo
*arg3
= 0 ;
7209 PyObject
* obj0
= 0 ;
7210 PyObject
* obj1
= 0 ;
7211 PyObject
* obj2
= 0 ;
7212 PyObject
* obj3
= 0 ;
7213 char * kwnames
[] = {
7214 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7217 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FrameManager_AddPaneAtPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7218 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7219 if (!SWIG_IsOK(res1
)) {
7220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7222 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7223 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7224 if (!SWIG_IsOK(res2
)) {
7225 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "2"" of type '" "wxWindow *""'");
7227 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7228 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7229 if (!SWIG_IsOK(res3
)) {
7230 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7233 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7235 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7238 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7242 result
= (bool)(arg1
)->AddPane(arg2
,(wxPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7243 wxPyEndAllowThreads(__tstate
);
7244 if (PyErr_Occurred()) SWIG_fail
;
7247 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7255 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7256 PyObject
*resultobj
= 0;
7257 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7258 wxWindow
*arg2
= (wxWindow
*) 0 ;
7259 int arg3
= (int) wxLEFT
;
7260 wxString
const &arg4_defvalue
= wxEmptyString
;
7261 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7269 bool temp4
= false ;
7270 PyObject
* obj0
= 0 ;
7271 PyObject
* obj1
= 0 ;
7272 PyObject
* obj2
= 0 ;
7273 PyObject
* obj3
= 0 ;
7274 char * kwnames
[] = {
7275 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7278 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:FrameManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7279 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7280 if (!SWIG_IsOK(res1
)) {
7281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane2" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7283 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7284 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7285 if (!SWIG_IsOK(res2
)) {
7286 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7288 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7290 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7291 if (!SWIG_IsOK(ecode3
)) {
7292 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7294 arg3
= static_cast< int >(val3
);
7298 arg4
= wxString_in_helper(obj3
);
7299 if (arg4
== NULL
) SWIG_fail
;
7304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7305 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7306 wxPyEndAllowThreads(__tstate
);
7307 if (PyErr_Occurred()) SWIG_fail
;
7310 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7326 SWIGINTERN PyObject
*_wrap_FrameManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7327 PyObject
*resultobj
= 0;
7328 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7329 wxWindow
*arg2
= (wxWindow
*) 0 ;
7330 wxPaneInfo
*arg3
= 0 ;
7331 int arg4
= (int) wxAUI_INSERT_PANE
;
7341 PyObject
* obj0
= 0 ;
7342 PyObject
* obj1
= 0 ;
7343 PyObject
* obj2
= 0 ;
7344 PyObject
* obj3
= 0 ;
7345 char * kwnames
[] = {
7346 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:FrameManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7351 if (!SWIG_IsOK(res1
)) {
7352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_InsertPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7354 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7355 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7356 if (!SWIG_IsOK(res2
)) {
7357 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7359 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7360 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7361 if (!SWIG_IsOK(res3
)) {
7362 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7365 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7367 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7369 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7370 if (!SWIG_IsOK(ecode4
)) {
7371 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FrameManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7373 arg4
= static_cast< int >(val4
);
7376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7377 result
= (bool)(arg1
)->InsertPane(arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
7378 wxPyEndAllowThreads(__tstate
);
7379 if (PyErr_Occurred()) SWIG_fail
;
7382 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7390 SWIGINTERN PyObject
*_wrap_FrameManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7391 PyObject
*resultobj
= 0;
7392 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7393 wxWindow
*arg2
= (wxWindow
*) 0 ;
7399 PyObject
* obj0
= 0 ;
7400 PyObject
* obj1
= 0 ;
7401 char * kwnames
[] = {
7402 (char *) "self",(char *) "window", NULL
7405 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7406 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7407 if (!SWIG_IsOK(res1
)) {
7408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_DetachPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7410 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7411 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7412 if (!SWIG_IsOK(res2
)) {
7413 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7415 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7417 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7418 result
= (bool)(arg1
)->DetachPane(arg2
);
7419 wxPyEndAllowThreads(__tstate
);
7420 if (PyErr_Occurred()) SWIG_fail
;
7423 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7431 SWIGINTERN PyObject
*_wrap_FrameManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7432 PyObject
*resultobj
= 0;
7433 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7434 wxPaneInfo
*arg2
= 0 ;
7440 PyObject
* obj0
= 0 ;
7441 PyObject
* obj1
= 0 ;
7442 char * kwnames
[] = {
7443 (char *) "self",(char *) "pane", NULL
7446 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7447 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7448 if (!SWIG_IsOK(res1
)) {
7449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7451 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7452 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 );
7453 if (!SWIG_IsOK(res2
)) {
7454 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7457 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7459 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7461 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7462 result
= (arg1
)->SavePaneInfo(*arg2
);
7463 wxPyEndAllowThreads(__tstate
);
7464 if (PyErr_Occurred()) SWIG_fail
;
7468 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7470 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7479 SWIGINTERN PyObject
*_wrap_FrameManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7480 PyObject
*resultobj
= 0;
7481 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7483 wxPaneInfo
*arg3
= 0 ;
7488 PyObject
* obj0
= 0 ;
7489 PyObject
* obj1
= 0 ;
7490 PyObject
* obj2
= 0 ;
7491 char * kwnames
[] = {
7492 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
7495 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7496 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7497 if (!SWIG_IsOK(res1
)) {
7498 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7500 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7502 wxString
* sptr
= wxString_in_helper(obj1
);
7503 if (sptr
== NULL
) SWIG_fail
;
7507 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 );
7508 if (!SWIG_IsOK(res3
)) {
7509 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxPaneInfo &""'");
7512 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxPaneInfo &""'");
7514 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7517 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
7518 wxPyEndAllowThreads(__tstate
);
7519 if (PyErr_Occurred()) SWIG_fail
;
7521 resultobj
= SWIG_Py_Void();
7528 SWIGINTERN PyObject
*_wrap_FrameManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7529 PyObject
*resultobj
= 0;
7530 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7534 PyObject
*swig_obj
[1] ;
7536 if (!args
) SWIG_fail
;
7538 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7539 if (!SWIG_IsOK(res1
)) {
7540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SavePerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7542 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7545 result
= (arg1
)->SavePerspective();
7546 wxPyEndAllowThreads(__tstate
);
7547 if (PyErr_Occurred()) SWIG_fail
;
7551 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7553 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7562 SWIGINTERN PyObject
*_wrap_FrameManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7563 PyObject
*resultobj
= 0;
7564 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7565 wxString
*arg2
= 0 ;
7566 bool arg3
= (bool) true ;
7570 bool temp2
= false ;
7573 PyObject
* obj0
= 0 ;
7574 PyObject
* obj1
= 0 ;
7575 PyObject
* obj2
= 0 ;
7576 char * kwnames
[] = {
7577 (char *) "self",(char *) "perspective",(char *) "update", NULL
7580 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FrameManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7581 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7582 if (!SWIG_IsOK(res1
)) {
7583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7585 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7587 arg2
= wxString_in_helper(obj1
);
7588 if (arg2
== NULL
) SWIG_fail
;
7592 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
7593 if (!SWIG_IsOK(ecode3
)) {
7594 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
7596 arg3
= static_cast< bool >(val3
);
7599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7600 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
7601 wxPyEndAllowThreads(__tstate
);
7602 if (PyErr_Occurred()) SWIG_fail
;
7605 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7621 SWIGINTERN PyObject
*_wrap_FrameManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7622 PyObject
*resultobj
= 0;
7623 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7626 PyObject
*swig_obj
[1] ;
7628 if (!args
) SWIG_fail
;
7630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7631 if (!SWIG_IsOK(res1
)) {
7632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_Update" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7634 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7638 wxPyEndAllowThreads(__tstate
);
7639 if (PyErr_Occurred()) SWIG_fail
;
7641 resultobj
= SWIG_Py_Void();
7648 SWIGINTERN PyObject
*_wrap_FrameManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7649 PyObject
*resultobj
= 0;
7650 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7651 wxWindow
*arg2
= (wxWindow
*) 0 ;
7660 PyObject
* obj0
= 0 ;
7661 PyObject
* obj1
= 0 ;
7662 PyObject
* obj2
= 0 ;
7663 PyObject
* obj3
= 0 ;
7664 char * kwnames
[] = {
7665 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
7668 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FrameManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7669 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7670 if (!SWIG_IsOK(res1
)) {
7671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_DrawHintRect" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7673 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7674 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7675 if (!SWIG_IsOK(res2
)) {
7676 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
7678 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7681 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
7685 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7689 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
7690 wxPyEndAllowThreads(__tstate
);
7691 if (PyErr_Occurred()) SWIG_fail
;
7693 resultobj
= SWIG_Py_Void();
7700 SWIGINTERN PyObject
*_wrap_FrameManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7701 PyObject
*resultobj
= 0;
7702 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7707 PyObject
* obj0
= 0 ;
7708 PyObject
* obj1
= 0 ;
7709 char * kwnames
[] = {
7710 (char *) "self",(char *) "rect", NULL
7713 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7714 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7715 if (!SWIG_IsOK(res1
)) {
7716 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_ShowHint" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7718 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7721 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
7724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7725 (arg1
)->ShowHint((wxRect
const &)*arg2
);
7726 wxPyEndAllowThreads(__tstate
);
7727 if (PyErr_Occurred()) SWIG_fail
;
7729 resultobj
= SWIG_Py_Void();
7736 SWIGINTERN PyObject
*_wrap_FrameManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7737 PyObject
*resultobj
= 0;
7738 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7741 PyObject
*swig_obj
[1] ;
7743 if (!args
) SWIG_fail
;
7745 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7746 if (!SWIG_IsOK(res1
)) {
7747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_HideHint" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7749 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7753 wxPyEndAllowThreads(__tstate
);
7754 if (PyErr_Occurred()) SWIG_fail
;
7756 resultobj
= SWIG_Py_Void();
7763 SWIGINTERN PyObject
*_wrap_FrameManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7764 PyObject
*resultobj
= 0;
7765 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7766 wxFrameManagerEvent
*arg2
= 0 ;
7771 PyObject
* obj0
= 0 ;
7772 PyObject
* obj1
= 0 ;
7773 char * kwnames
[] = {
7774 (char *) "self",(char *) "evt", NULL
7777 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7778 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7779 if (!SWIG_IsOK(res1
)) {
7780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnRender" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7782 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7783 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
7784 if (!SWIG_IsOK(res2
)) {
7785 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7788 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7790 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
7792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7793 (arg1
)->OnRender(*arg2
);
7794 wxPyEndAllowThreads(__tstate
);
7795 if (PyErr_Occurred()) SWIG_fail
;
7797 resultobj
= SWIG_Py_Void();
7804 SWIGINTERN PyObject
*_wrap_FrameManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7805 PyObject
*resultobj
= 0;
7806 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7807 wxFrameManagerEvent
*arg2
= 0 ;
7812 PyObject
* obj0
= 0 ;
7813 PyObject
* obj1
= 0 ;
7814 char * kwnames
[] = {
7815 (char *) "self",(char *) "evt", NULL
7818 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7819 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7820 if (!SWIG_IsOK(res1
)) {
7821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7823 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7824 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
7825 if (!SWIG_IsOK(res2
)) {
7826 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7829 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7831 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
7833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7834 (arg1
)->OnPaneButton(*arg2
);
7835 wxPyEndAllowThreads(__tstate
);
7836 if (PyErr_Occurred()) SWIG_fail
;
7838 resultobj
= SWIG_Py_Void();
7845 SWIGINTERN PyObject
*FrameManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7847 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7848 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManager
, SWIG_NewClientData(obj
));
7849 return SWIG_Py_Void();
7852 SWIGINTERN PyObject
*FrameManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7853 return SWIG_Python_InitShadowInstance(args
);
7856 SWIGINTERN PyObject
*_wrap_new_FrameManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7857 PyObject
*resultobj
= 0;
7858 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
7859 wxFrameManagerEvent
*result
= 0 ;
7862 PyObject
* obj0
= 0 ;
7863 char * kwnames
[] = {
7864 (char *) "type", NULL
7867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FrameManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
7869 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7870 if (!SWIG_IsOK(ecode1
)) {
7871 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FrameManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
7873 arg1
= static_cast< wxEventType
>(val1
);
7876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7877 result
= (wxFrameManagerEvent
*)new wxFrameManagerEvent(arg1
);
7878 wxPyEndAllowThreads(__tstate
);
7879 if (PyErr_Occurred()) SWIG_fail
;
7881 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManagerEvent
, SWIG_POINTER_NEW
| 0 );
7888 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7889 PyObject
*resultobj
= 0;
7890 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7891 wxEvent
*result
= 0 ;
7894 PyObject
*swig_obj
[1] ;
7896 if (!args
) SWIG_fail
;
7898 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7899 if (!SWIG_IsOK(res1
)) {
7900 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Clone" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7902 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7905 result
= (wxEvent
*)((wxFrameManagerEvent
const *)arg1
)->Clone();
7906 wxPyEndAllowThreads(__tstate
);
7907 if (PyErr_Occurred()) SWIG_fail
;
7909 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
7916 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7917 PyObject
*resultobj
= 0;
7918 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7919 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
7924 PyObject
* obj0
= 0 ;
7925 PyObject
* obj1
= 0 ;
7926 char * kwnames
[] = {
7927 (char *) "self",(char *) "p", NULL
7930 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7931 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7932 if (!SWIG_IsOK(res1
)) {
7933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7935 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7936 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7937 if (!SWIG_IsOK(res2
)) {
7938 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
7940 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7943 (arg1
)->SetPane(arg2
);
7944 wxPyEndAllowThreads(__tstate
);
7945 if (PyErr_Occurred()) SWIG_fail
;
7947 resultobj
= SWIG_Py_Void();
7954 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7955 PyObject
*resultobj
= 0;
7956 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7962 PyObject
* obj0
= 0 ;
7963 PyObject
* obj1
= 0 ;
7964 char * kwnames
[] = {
7965 (char *) "self",(char *) "b", NULL
7968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7970 if (!SWIG_IsOK(res1
)) {
7971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7973 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7974 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7975 if (!SWIG_IsOK(ecode2
)) {
7976 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
7978 arg2
= static_cast< int >(val2
);
7980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7981 (arg1
)->SetButton(arg2
);
7982 wxPyEndAllowThreads(__tstate
);
7983 if (PyErr_Occurred()) SWIG_fail
;
7985 resultobj
= SWIG_Py_Void();
7992 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7993 PyObject
*resultobj
= 0;
7994 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7995 wxDC
*arg2
= (wxDC
*) 0 ;
8000 PyObject
* obj0
= 0 ;
8001 PyObject
* obj1
= 0 ;
8002 char * kwnames
[] = {
8003 (char *) "self",(char *) "pdc", NULL
8006 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8007 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8008 if (!SWIG_IsOK(res1
)) {
8009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8011 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8012 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8013 if (!SWIG_IsOK(res2
)) {
8014 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8016 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8019 (arg1
)->SetDC(arg2
);
8020 wxPyEndAllowThreads(__tstate
);
8021 if (PyErr_Occurred()) SWIG_fail
;
8023 resultobj
= SWIG_Py_Void();
8030 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8031 PyObject
*resultobj
= 0;
8032 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8033 wxPaneInfo
*result
= 0 ;
8036 PyObject
*swig_obj
[1] ;
8038 if (!args
) SWIG_fail
;
8040 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8041 if (!SWIG_IsOK(res1
)) {
8042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8044 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8047 result
= (wxPaneInfo
*)(arg1
)->GetPane();
8048 wxPyEndAllowThreads(__tstate
);
8049 if (PyErr_Occurred()) SWIG_fail
;
8051 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8058 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8059 PyObject
*resultobj
= 0;
8060 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8064 PyObject
*swig_obj
[1] ;
8066 if (!args
) SWIG_fail
;
8068 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8069 if (!SWIG_IsOK(res1
)) {
8070 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8072 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8075 result
= (int)(arg1
)->GetButton();
8076 wxPyEndAllowThreads(__tstate
);
8077 if (PyErr_Occurred()) SWIG_fail
;
8079 resultobj
= SWIG_From_int(static_cast< int >(result
));
8086 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8087 PyObject
*resultobj
= 0;
8088 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8092 PyObject
*swig_obj
[1] ;
8094 if (!args
) SWIG_fail
;
8096 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8097 if (!SWIG_IsOK(res1
)) {
8098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8100 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8103 result
= (wxDC
*)(arg1
)->GetDC();
8104 wxPyEndAllowThreads(__tstate
);
8105 if (PyErr_Occurred()) SWIG_fail
;
8108 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8116 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8117 PyObject
*resultobj
= 0;
8118 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8119 bool arg2
= (bool) true ;
8124 PyObject
* obj0
= 0 ;
8125 PyObject
* obj1
= 0 ;
8126 char * kwnames
[] = {
8127 (char *) "self",(char *) "veto", NULL
8130 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:FrameManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8131 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8132 if (!SWIG_IsOK(res1
)) {
8133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8135 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8137 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8138 if (!SWIG_IsOK(ecode2
)) {
8139 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
8141 arg2
= static_cast< bool >(val2
);
8144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8146 wxPyEndAllowThreads(__tstate
);
8147 if (PyErr_Occurred()) SWIG_fail
;
8149 resultobj
= SWIG_Py_Void();
8156 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8157 PyObject
*resultobj
= 0;
8158 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8162 PyObject
*swig_obj
[1] ;
8164 if (!args
) SWIG_fail
;
8166 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8167 if (!SWIG_IsOK(res1
)) {
8168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
8170 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8173 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->GetVeto();
8174 wxPyEndAllowThreads(__tstate
);
8175 if (PyErr_Occurred()) SWIG_fail
;
8178 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8186 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8187 PyObject
*resultobj
= 0;
8188 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8194 PyObject
* obj0
= 0 ;
8195 PyObject
* obj1
= 0 ;
8196 char * kwnames
[] = {
8197 (char *) "self",(char *) "can_veto", NULL
8200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8202 if (!SWIG_IsOK(res1
)) {
8203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8205 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8206 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8207 if (!SWIG_IsOK(ecode2
)) {
8208 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
8210 arg2
= static_cast< bool >(val2
);
8212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8213 (arg1
)->SetCanVeto(arg2
);
8214 wxPyEndAllowThreads(__tstate
);
8215 if (PyErr_Occurred()) SWIG_fail
;
8217 resultobj
= SWIG_Py_Void();
8224 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8225 PyObject
*resultobj
= 0;
8226 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8230 PyObject
*swig_obj
[1] ;
8232 if (!args
) SWIG_fail
;
8234 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8235 if (!SWIG_IsOK(res1
)) {
8236 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
8238 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8241 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->CanVeto();
8242 wxPyEndAllowThreads(__tstate
);
8243 if (PyErr_Occurred()) SWIG_fail
;
8246 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8254 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8255 PyObject
*resultobj
= 0;
8256 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8257 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
8262 PyObject
*swig_obj
[2] ;
8264 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
8265 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8266 if (!SWIG_IsOK(res1
)) {
8267 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8269 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8270 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
8271 if (!SWIG_IsOK(res2
)) {
8272 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
8274 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
8275 if (arg1
) (arg1
)->pane
= arg2
;
8277 resultobj
= SWIG_Py_Void();
8284 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8285 PyObject
*resultobj
= 0;
8286 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8287 wxPaneInfo
*result
= 0 ;
8290 PyObject
*swig_obj
[1] ;
8292 if (!args
) SWIG_fail
;
8294 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8295 if (!SWIG_IsOK(res1
)) {
8296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8298 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8299 result
= (wxPaneInfo
*) ((arg1
)->pane
);
8300 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8307 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8308 PyObject
*resultobj
= 0;
8309 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8315 PyObject
*swig_obj
[2] ;
8317 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
8318 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8319 if (!SWIG_IsOK(res1
)) {
8320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8322 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8323 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8324 if (!SWIG_IsOK(ecode2
)) {
8325 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
8327 arg2
= static_cast< int >(val2
);
8328 if (arg1
) (arg1
)->button
= arg2
;
8330 resultobj
= SWIG_Py_Void();
8337 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8338 PyObject
*resultobj
= 0;
8339 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8343 PyObject
*swig_obj
[1] ;
8345 if (!args
) SWIG_fail
;
8347 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8348 if (!SWIG_IsOK(res1
)) {
8349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8351 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8352 result
= (int) ((arg1
)->button
);
8353 resultobj
= SWIG_From_int(static_cast< int >(result
));
8360 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8361 PyObject
*resultobj
= 0;
8362 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8368 PyObject
*swig_obj
[2] ;
8370 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
8371 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8372 if (!SWIG_IsOK(res1
)) {
8373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8375 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8376 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8377 if (!SWIG_IsOK(ecode2
)) {
8378 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8380 arg2
= static_cast< bool >(val2
);
8381 if (arg1
) (arg1
)->veto_flag
= arg2
;
8383 resultobj
= SWIG_Py_Void();
8390 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8391 PyObject
*resultobj
= 0;
8392 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8396 PyObject
*swig_obj
[1] ;
8398 if (!args
) SWIG_fail
;
8400 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8401 if (!SWIG_IsOK(res1
)) {
8402 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8404 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8405 result
= (bool) ((arg1
)->veto_flag
);
8407 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8415 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8416 PyObject
*resultobj
= 0;
8417 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8423 PyObject
*swig_obj
[2] ;
8425 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
8426 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8427 if (!SWIG_IsOK(res1
)) {
8428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8430 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8431 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8432 if (!SWIG_IsOK(ecode2
)) {
8433 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8435 arg2
= static_cast< bool >(val2
);
8436 if (arg1
) (arg1
)->canveto_flag
= arg2
;
8438 resultobj
= SWIG_Py_Void();
8445 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8446 PyObject
*resultobj
= 0;
8447 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8451 PyObject
*swig_obj
[1] ;
8453 if (!args
) SWIG_fail
;
8455 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8456 if (!SWIG_IsOK(res1
)) {
8457 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8459 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8460 result
= (bool) ((arg1
)->canveto_flag
);
8462 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8470 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8471 PyObject
*resultobj
= 0;
8472 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8473 wxDC
*arg2
= (wxDC
*) 0 ;
8478 PyObject
*swig_obj
[2] ;
8480 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
8481 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8482 if (!SWIG_IsOK(res1
)) {
8483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8485 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8486 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
8487 if (!SWIG_IsOK(res2
)) {
8488 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
8490 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8491 if (arg1
) (arg1
)->dc
= arg2
;
8493 resultobj
= SWIG_Py_Void();
8500 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8501 PyObject
*resultobj
= 0;
8502 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8506 PyObject
*swig_obj
[1] ;
8508 if (!args
) SWIG_fail
;
8510 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8511 if (!SWIG_IsOK(res1
)) {
8512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8514 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8515 result
= (wxDC
*) ((arg1
)->dc
);
8517 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8525 SWIGINTERN PyObject
*FrameManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8527 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8528 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManagerEvent
, SWIG_NewClientData(obj
));
8529 return SWIG_Py_Void();
8532 SWIGINTERN PyObject
*FrameManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8533 return SWIG_Python_InitShadowInstance(args
);
8536 SWIGINTERN PyObject
*_wrap_new_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8537 PyObject
*resultobj
= 0;
8538 wxDockInfo
*result
= 0 ;
8540 if (!SWIG_Python_UnpackTuple(args
,"new_DockInfo",0,0,0)) SWIG_fail
;
8542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8543 result
= (wxDockInfo
*)new wxDockInfo();
8544 wxPyEndAllowThreads(__tstate
);
8545 if (PyErr_Occurred()) SWIG_fail
;
8547 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_NEW
| 0 );
8554 SWIGINTERN PyObject
*_wrap_DockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8555 PyObject
*resultobj
= 0;
8556 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8560 PyObject
*swig_obj
[1] ;
8562 if (!args
) SWIG_fail
;
8564 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8565 if (!SWIG_IsOK(res1
)) {
8566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsOk" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8568 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8571 result
= (bool)((wxDockInfo
const *)arg1
)->IsOk();
8572 wxPyEndAllowThreads(__tstate
);
8573 if (PyErr_Occurred()) SWIG_fail
;
8576 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8584 SWIGINTERN PyObject
*_wrap_DockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8585 PyObject
*resultobj
= 0;
8586 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8590 PyObject
*swig_obj
[1] ;
8592 if (!args
) SWIG_fail
;
8594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8595 if (!SWIG_IsOK(res1
)) {
8596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8598 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8601 result
= (bool)((wxDockInfo
const *)arg1
)->IsHorizontal();
8602 wxPyEndAllowThreads(__tstate
);
8603 if (PyErr_Occurred()) SWIG_fail
;
8606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8614 SWIGINTERN PyObject
*_wrap_DockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8615 PyObject
*resultobj
= 0;
8616 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8620 PyObject
*swig_obj
[1] ;
8622 if (!args
) SWIG_fail
;
8624 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8625 if (!SWIG_IsOK(res1
)) {
8626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsVertical" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8628 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8631 result
= (bool)((wxDockInfo
const *)arg1
)->IsVertical();
8632 wxPyEndAllowThreads(__tstate
);
8633 if (PyErr_Occurred()) SWIG_fail
;
8636 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8644 SWIGINTERN PyObject
*_wrap_DockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8645 PyObject
*resultobj
= 0;
8646 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8647 wxPaneInfoPtrArray arg2
;
8652 PyObject
*swig_obj
[2] ;
8654 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
8655 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8656 if (!SWIG_IsOK(res1
)) {
8657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8659 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8661 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneInfoPtrArray
, 0 | 0);
8662 if (!SWIG_IsOK(res2
)) {
8663 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8666 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8668 wxPaneInfoPtrArray
* temp
= reinterpret_cast< wxPaneInfoPtrArray
* >(argp2
);
8670 if (SWIG_IsNewObj(res2
)) delete temp
;
8673 if (arg1
) (arg1
)->panes
= arg2
;
8675 resultobj
= SWIG_Py_Void();
8682 SWIGINTERN PyObject
*_wrap_DockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8683 PyObject
*resultobj
= 0;
8684 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8685 wxPaneInfoPtrArray result
;
8688 PyObject
*swig_obj
[1] ;
8690 if (!args
) SWIG_fail
;
8692 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8693 if (!SWIG_IsOK(res1
)) {
8694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8696 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8697 result
= ((arg1
)->panes
);
8698 resultobj
= SWIG_NewPointerObj((new wxPaneInfoPtrArray(static_cast< const wxPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
8705 SWIGINTERN PyObject
*_wrap_DockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8706 PyObject
*resultobj
= 0;
8707 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8708 wxRect
*arg2
= (wxRect
*) 0 ;
8713 PyObject
*swig_obj
[2] ;
8715 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
8716 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8717 if (!SWIG_IsOK(res1
)) {
8718 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8720 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8721 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
8722 if (!SWIG_IsOK(res2
)) {
8723 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
8725 arg2
= reinterpret_cast< wxRect
* >(argp2
);
8726 if (arg1
) (arg1
)->rect
= *arg2
;
8728 resultobj
= SWIG_Py_Void();
8735 SWIGINTERN PyObject
*_wrap_DockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8736 PyObject
*resultobj
= 0;
8737 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8738 wxRect
*result
= 0 ;
8741 PyObject
*swig_obj
[1] ;
8743 if (!args
) SWIG_fail
;
8745 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8746 if (!SWIG_IsOK(res1
)) {
8747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8749 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8750 result
= (wxRect
*)& ((arg1
)->rect
);
8751 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
8758 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8759 PyObject
*resultobj
= 0;
8760 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8766 PyObject
*swig_obj
[2] ;
8768 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
8769 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8770 if (!SWIG_IsOK(res1
)) {
8771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8773 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8774 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8775 if (!SWIG_IsOK(ecode2
)) {
8776 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
8778 arg2
= static_cast< int >(val2
);
8779 if (arg1
) (arg1
)->dock_direction
= arg2
;
8781 resultobj
= SWIG_Py_Void();
8788 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8789 PyObject
*resultobj
= 0;
8790 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8794 PyObject
*swig_obj
[1] ;
8796 if (!args
) SWIG_fail
;
8798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8799 if (!SWIG_IsOK(res1
)) {
8800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8802 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8803 result
= (int) ((arg1
)->dock_direction
);
8804 resultobj
= SWIG_From_int(static_cast< int >(result
));
8811 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8812 PyObject
*resultobj
= 0;
8813 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8819 PyObject
*swig_obj
[2] ;
8821 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
8822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8823 if (!SWIG_IsOK(res1
)) {
8824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8826 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8827 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8828 if (!SWIG_IsOK(ecode2
)) {
8829 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
8831 arg2
= static_cast< int >(val2
);
8832 if (arg1
) (arg1
)->dock_layer
= arg2
;
8834 resultobj
= SWIG_Py_Void();
8841 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8842 PyObject
*resultobj
= 0;
8843 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8847 PyObject
*swig_obj
[1] ;
8849 if (!args
) SWIG_fail
;
8851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8852 if (!SWIG_IsOK(res1
)) {
8853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8855 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8856 result
= (int) ((arg1
)->dock_layer
);
8857 resultobj
= SWIG_From_int(static_cast< int >(result
));
8864 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8865 PyObject
*resultobj
= 0;
8866 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8872 PyObject
*swig_obj
[2] ;
8874 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
8875 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8876 if (!SWIG_IsOK(res1
)) {
8877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8879 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8880 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8881 if (!SWIG_IsOK(ecode2
)) {
8882 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
8884 arg2
= static_cast< int >(val2
);
8885 if (arg1
) (arg1
)->dock_row
= arg2
;
8887 resultobj
= SWIG_Py_Void();
8894 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8895 PyObject
*resultobj
= 0;
8896 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8900 PyObject
*swig_obj
[1] ;
8902 if (!args
) SWIG_fail
;
8904 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8905 if (!SWIG_IsOK(res1
)) {
8906 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8908 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8909 result
= (int) ((arg1
)->dock_row
);
8910 resultobj
= SWIG_From_int(static_cast< int >(result
));
8917 SWIGINTERN PyObject
*_wrap_DockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8918 PyObject
*resultobj
= 0;
8919 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8925 PyObject
*swig_obj
[2] ;
8927 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
8928 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8929 if (!SWIG_IsOK(res1
)) {
8930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8932 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8933 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8934 if (!SWIG_IsOK(ecode2
)) {
8935 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
8937 arg2
= static_cast< int >(val2
);
8938 if (arg1
) (arg1
)->size
= arg2
;
8940 resultobj
= SWIG_Py_Void();
8947 SWIGINTERN PyObject
*_wrap_DockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8948 PyObject
*resultobj
= 0;
8949 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8953 PyObject
*swig_obj
[1] ;
8955 if (!args
) SWIG_fail
;
8957 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8958 if (!SWIG_IsOK(res1
)) {
8959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8961 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8962 result
= (int) ((arg1
)->size
);
8963 resultobj
= SWIG_From_int(static_cast< int >(result
));
8970 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8971 PyObject
*resultobj
= 0;
8972 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8978 PyObject
*swig_obj
[2] ;
8980 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
8981 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8982 if (!SWIG_IsOK(res1
)) {
8983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8985 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8986 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8987 if (!SWIG_IsOK(ecode2
)) {
8988 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
8990 arg2
= static_cast< int >(val2
);
8991 if (arg1
) (arg1
)->min_size
= arg2
;
8993 resultobj
= SWIG_Py_Void();
9000 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9001 PyObject
*resultobj
= 0;
9002 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9006 PyObject
*swig_obj
[1] ;
9008 if (!args
) SWIG_fail
;
9010 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9011 if (!SWIG_IsOK(res1
)) {
9012 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9014 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9015 result
= (int) ((arg1
)->min_size
);
9016 resultobj
= SWIG_From_int(static_cast< int >(result
));
9023 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9024 PyObject
*resultobj
= 0;
9025 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9031 PyObject
*swig_obj
[2] ;
9033 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9034 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9035 if (!SWIG_IsOK(res1
)) {
9036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9038 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9039 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9040 if (!SWIG_IsOK(ecode2
)) {
9041 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9043 arg2
= static_cast< bool >(val2
);
9044 if (arg1
) (arg1
)->resizable
= arg2
;
9046 resultobj
= SWIG_Py_Void();
9053 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9054 PyObject
*resultobj
= 0;
9055 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9059 PyObject
*swig_obj
[1] ;
9061 if (!args
) SWIG_fail
;
9063 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9064 if (!SWIG_IsOK(res1
)) {
9065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9067 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9068 result
= (bool) ((arg1
)->resizable
);
9070 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9078 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9079 PyObject
*resultobj
= 0;
9080 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9086 PyObject
*swig_obj
[2] ;
9088 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
9089 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9090 if (!SWIG_IsOK(res1
)) {
9091 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9093 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9094 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9095 if (!SWIG_IsOK(ecode2
)) {
9096 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
9098 arg2
= static_cast< bool >(val2
);
9099 if (arg1
) (arg1
)->toolbar
= arg2
;
9101 resultobj
= SWIG_Py_Void();
9108 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9109 PyObject
*resultobj
= 0;
9110 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9114 PyObject
*swig_obj
[1] ;
9116 if (!args
) SWIG_fail
;
9118 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9119 if (!SWIG_IsOK(res1
)) {
9120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9122 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9123 result
= (bool) ((arg1
)->toolbar
);
9125 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9133 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9134 PyObject
*resultobj
= 0;
9135 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9141 PyObject
*swig_obj
[2] ;
9143 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_fixed_set",2,2,swig_obj
)) 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_fixed_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9148 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9149 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9150 if (!SWIG_IsOK(ecode2
)) {
9151 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
9153 arg2
= static_cast< bool >(val2
);
9154 if (arg1
) (arg1
)->fixed
= arg2
;
9156 resultobj
= SWIG_Py_Void();
9163 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9164 PyObject
*resultobj
= 0;
9165 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9169 PyObject
*swig_obj
[1] ;
9171 if (!args
) SWIG_fail
;
9173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9174 if (!SWIG_IsOK(res1
)) {
9175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9177 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9178 result
= (bool) ((arg1
)->fixed
);
9180 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9188 SWIGINTERN PyObject
*_wrap_delete_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9189 PyObject
*resultobj
= 0;
9190 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
, SWIG_POINTER_DISOWN
| 0 );
9198 if (!SWIG_IsOK(res1
)) {
9199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockInfo" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9201 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9204 delete_wxDockInfo(arg1
);
9206 wxPyEndAllowThreads(__tstate
);
9207 if (PyErr_Occurred()) SWIG_fail
;
9209 resultobj
= SWIG_Py_Void();
9216 SWIGINTERN PyObject
*DockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9218 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9219 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockInfo
, SWIG_NewClientData(obj
));
9220 return SWIG_Py_Void();
9223 SWIGINTERN PyObject
*DockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9224 return SWIG_Python_InitShadowInstance(args
);
9227 SWIGINTERN PyObject
*_wrap_DockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9228 PyObject
*resultobj
= 0;
9229 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9235 PyObject
*swig_obj
[2] ;
9237 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
9238 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9239 if (!SWIG_IsOK(res1
)) {
9240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9242 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9243 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9244 if (!SWIG_IsOK(ecode2
)) {
9245 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
9247 arg2
= static_cast< int >(val2
);
9248 if (arg1
) (arg1
)->type
= arg2
;
9250 resultobj
= SWIG_Py_Void();
9257 SWIGINTERN PyObject
*_wrap_DockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9258 PyObject
*resultobj
= 0;
9259 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9263 PyObject
*swig_obj
[1] ;
9265 if (!args
) SWIG_fail
;
9267 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9268 if (!SWIG_IsOK(res1
)) {
9269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9271 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9272 result
= (int) ((arg1
)->type
);
9273 resultobj
= SWIG_From_int(static_cast< int >(result
));
9280 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9281 PyObject
*resultobj
= 0;
9282 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9288 PyObject
*swig_obj
[2] ;
9290 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
9291 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9292 if (!SWIG_IsOK(res1
)) {
9293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9295 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9296 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9297 if (!SWIG_IsOK(ecode2
)) {
9298 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
9300 arg2
= static_cast< int >(val2
);
9301 if (arg1
) (arg1
)->orientation
= arg2
;
9303 resultobj
= SWIG_Py_Void();
9310 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9311 PyObject
*resultobj
= 0;
9312 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9316 PyObject
*swig_obj
[1] ;
9318 if (!args
) SWIG_fail
;
9320 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9321 if (!SWIG_IsOK(res1
)) {
9322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9324 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9325 result
= (int) ((arg1
)->orientation
);
9326 resultobj
= SWIG_From_int(static_cast< int >(result
));
9333 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9334 PyObject
*resultobj
= 0;
9335 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9336 wxDockInfo
*arg2
= (wxDockInfo
*) 0 ;
9341 PyObject
*swig_obj
[2] ;
9343 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
9344 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9345 if (!SWIG_IsOK(res1
)) {
9346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9348 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9349 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_DISOWN
| 0 );
9350 if (!SWIG_IsOK(res2
)) {
9351 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_dock_set" "', expected argument " "2"" of type '" "wxDockInfo *""'");
9353 arg2
= reinterpret_cast< wxDockInfo
* >(argp2
);
9354 if (arg1
) (arg1
)->dock
= arg2
;
9356 resultobj
= SWIG_Py_Void();
9363 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9364 PyObject
*resultobj
= 0;
9365 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9366 wxDockInfo
*result
= 0 ;
9369 PyObject
*swig_obj
[1] ;
9371 if (!args
) SWIG_fail
;
9373 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9374 if (!SWIG_IsOK(res1
)) {
9375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9377 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9378 result
= (wxDockInfo
*) ((arg1
)->dock
);
9379 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9386 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9387 PyObject
*resultobj
= 0;
9388 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9389 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
9394 PyObject
*swig_obj
[2] ;
9396 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
9397 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9398 if (!SWIG_IsOK(res1
)) {
9399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9401 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9402 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9403 if (!SWIG_IsOK(res2
)) {
9404 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
9406 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
9407 if (arg1
) (arg1
)->pane
= arg2
;
9409 resultobj
= SWIG_Py_Void();
9416 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9417 PyObject
*resultobj
= 0;
9418 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9419 wxPaneInfo
*result
= 0 ;
9422 PyObject
*swig_obj
[1] ;
9424 if (!args
) SWIG_fail
;
9426 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9427 if (!SWIG_IsOK(res1
)) {
9428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9430 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9431 result
= (wxPaneInfo
*) ((arg1
)->pane
);
9432 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
9439 SWIGINTERN PyObject
*_wrap_DockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9440 PyObject
*resultobj
= 0;
9441 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9442 wxPaneButton
*arg2
= (wxPaneButton
*) 0 ;
9447 PyObject
*swig_obj
[2] ;
9449 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
9450 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9451 if (!SWIG_IsOK(res1
)) {
9452 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9454 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9455 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
9456 if (!SWIG_IsOK(res2
)) {
9457 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_button_set" "', expected argument " "2"" of type '" "wxPaneButton *""'");
9459 arg2
= reinterpret_cast< wxPaneButton
* >(argp2
);
9460 if (arg1
) (arg1
)->button
= arg2
;
9462 resultobj
= SWIG_Py_Void();
9469 SWIGINTERN PyObject
*_wrap_DockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9470 PyObject
*resultobj
= 0;
9471 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9472 wxPaneButton
*result
= 0 ;
9475 PyObject
*swig_obj
[1] ;
9477 if (!args
) SWIG_fail
;
9479 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9480 if (!SWIG_IsOK(res1
)) {
9481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9483 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9484 result
= (wxPaneButton
*) ((arg1
)->button
);
9485 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9492 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9493 PyObject
*resultobj
= 0;
9494 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9495 wxSizer
*arg2
= (wxSizer
*) 0 ;
9500 PyObject
*swig_obj
[2] ;
9502 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
9503 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9504 if (!SWIG_IsOK(res1
)) {
9505 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9507 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9508 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
9509 if (!SWIG_IsOK(res2
)) {
9510 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
9512 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
9513 if (arg1
) (arg1
)->cont_sizer
= arg2
;
9515 resultobj
= SWIG_Py_Void();
9522 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9523 PyObject
*resultobj
= 0;
9524 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9525 wxSizer
*result
= 0 ;
9528 PyObject
*swig_obj
[1] ;
9530 if (!args
) SWIG_fail
;
9532 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9533 if (!SWIG_IsOK(res1
)) {
9534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9536 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9537 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
9539 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9547 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9548 PyObject
*resultobj
= 0;
9549 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9550 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
9555 PyObject
*swig_obj
[2] ;
9557 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
9558 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9559 if (!SWIG_IsOK(res1
)) {
9560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9562 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9563 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
9564 if (!SWIG_IsOK(res2
)) {
9565 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
9567 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
9568 if (arg1
) (arg1
)->sizer_item
= arg2
;
9570 resultobj
= SWIG_Py_Void();
9577 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9578 PyObject
*resultobj
= 0;
9579 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9580 wxSizerItem
*result
= 0 ;
9583 PyObject
*swig_obj
[1] ;
9585 if (!args
) SWIG_fail
;
9587 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9588 if (!SWIG_IsOK(res1
)) {
9589 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9591 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9592 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
9593 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
9600 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9601 PyObject
*resultobj
= 0;
9602 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9603 wxRect
*arg2
= (wxRect
*) 0 ;
9608 PyObject
*swig_obj
[2] ;
9610 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
9611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9612 if (!SWIG_IsOK(res1
)) {
9613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9615 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9616 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9617 if (!SWIG_IsOK(res2
)) {
9618 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9620 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9621 if (arg1
) (arg1
)->rect
= *arg2
;
9623 resultobj
= SWIG_Py_Void();
9630 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9631 PyObject
*resultobj
= 0;
9632 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9633 wxRect
*result
= 0 ;
9636 PyObject
*swig_obj
[1] ;
9638 if (!args
) SWIG_fail
;
9640 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9641 if (!SWIG_IsOK(res1
)) {
9642 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9644 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9645 result
= (wxRect
*)& ((arg1
)->rect
);
9646 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9653 SWIGINTERN PyObject
*_wrap_new_DockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9654 PyObject
*resultobj
= 0;
9655 wxDockUIPart
*result
= 0 ;
9657 if (!SWIG_Python_UnpackTuple(args
,"new_DockUIPart",0,0,0)) SWIG_fail
;
9659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9660 result
= (wxDockUIPart
*)new_wxDockUIPart();
9661 wxPyEndAllowThreads(__tstate
);
9662 if (PyErr_Occurred()) SWIG_fail
;
9664 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockUIPart
, SWIG_POINTER_NEW
| 0 );
9671 SWIGINTERN PyObject
*_wrap_delete_DockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9672 PyObject
*resultobj
= 0;
9673 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9676 PyObject
*swig_obj
[1] ;
9678 if (!args
) SWIG_fail
;
9680 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
9681 if (!SWIG_IsOK(res1
)) {
9682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockUIPart" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9684 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9687 delete_wxDockUIPart(arg1
);
9689 wxPyEndAllowThreads(__tstate
);
9690 if (PyErr_Occurred()) SWIG_fail
;
9692 resultobj
= SWIG_Py_Void();
9699 SWIGINTERN PyObject
*DockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9701 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9702 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockUIPart
, SWIG_NewClientData(obj
));
9703 return SWIG_Py_Void();
9706 SWIGINTERN PyObject
*DockUIPart_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9707 return SWIG_Python_InitShadowInstance(args
);
9710 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9711 PyObject
*resultobj
= 0;
9712 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9718 PyObject
*swig_obj
[2] ;
9720 if (!SWIG_Python_UnpackTuple(args
,"PaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
9721 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9722 if (!SWIG_IsOK(res1
)) {
9723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_set" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9725 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9726 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9727 if (!SWIG_IsOK(ecode2
)) {
9728 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
9730 arg2
= static_cast< int >(val2
);
9731 if (arg1
) (arg1
)->button_id
= arg2
;
9733 resultobj
= SWIG_Py_Void();
9740 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9741 PyObject
*resultobj
= 0;
9742 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9746 PyObject
*swig_obj
[1] ;
9748 if (!args
) SWIG_fail
;
9750 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9751 if (!SWIG_IsOK(res1
)) {
9752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_get" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9754 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9755 result
= (int) ((arg1
)->button_id
);
9756 resultobj
= SWIG_From_int(static_cast< int >(result
));
9763 SWIGINTERN PyObject
*_wrap_new_PaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9764 PyObject
*resultobj
= 0;
9765 wxPaneButton
*result
= 0 ;
9767 if (!SWIG_Python_UnpackTuple(args
,"new_PaneButton",0,0,0)) SWIG_fail
;
9769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9770 result
= (wxPaneButton
*)new_wxPaneButton();
9771 wxPyEndAllowThreads(__tstate
);
9772 if (PyErr_Occurred()) SWIG_fail
;
9774 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_NEW
| 0 );
9781 SWIGINTERN PyObject
*_wrap_delete_PaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9782 PyObject
*resultobj
= 0;
9783 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9786 PyObject
*swig_obj
[1] ;
9788 if (!args
) SWIG_fail
;
9790 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
9791 if (!SWIG_IsOK(res1
)) {
9792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PaneButton" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9794 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9797 delete_wxPaneButton(arg1
);
9799 wxPyEndAllowThreads(__tstate
);
9800 if (PyErr_Occurred()) SWIG_fail
;
9802 resultobj
= SWIG_Py_Void();
9809 SWIGINTERN PyObject
*PaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9811 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9812 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneButton
, SWIG_NewClientData(obj
));
9813 return SWIG_Py_Void();
9816 SWIGINTERN PyObject
*PaneButton_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9817 return SWIG_Python_InitShadowInstance(args
);
9820 SWIGINTERN PyObject
*_wrap_delete_DockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9821 PyObject
*resultobj
= 0;
9822 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9825 PyObject
*swig_obj
[1] ;
9827 if (!args
) SWIG_fail
;
9829 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
9830 if (!SWIG_IsOK(res1
)) {
9831 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockArt" "', expected argument " "1"" of type '" "wxDockArt *""'");
9833 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9838 wxPyEndAllowThreads(__tstate
);
9839 if (PyErr_Occurred()) SWIG_fail
;
9841 resultobj
= SWIG_Py_Void();
9848 SWIGINTERN PyObject
*_wrap_DockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9849 PyObject
*resultobj
= 0;
9850 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9857 PyObject
* obj0
= 0 ;
9858 PyObject
* obj1
= 0 ;
9859 char * kwnames
[] = {
9860 (char *) "self",(char *) "id", NULL
9863 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9864 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9865 if (!SWIG_IsOK(res1
)) {
9866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9868 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9869 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9870 if (!SWIG_IsOK(ecode2
)) {
9871 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
9873 arg2
= static_cast< int >(val2
);
9875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9876 result
= (int)(arg1
)->GetMetric(arg2
);
9877 wxPyEndAllowThreads(__tstate
);
9878 if (PyErr_Occurred()) SWIG_fail
;
9880 resultobj
= SWIG_From_int(static_cast< int >(result
));
9887 SWIGINTERN PyObject
*_wrap_DockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9888 PyObject
*resultobj
= 0;
9889 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9898 PyObject
* obj0
= 0 ;
9899 PyObject
* obj1
= 0 ;
9900 PyObject
* obj2
= 0 ;
9901 char * kwnames
[] = {
9902 (char *) "self",(char *) "id",(char *) "new_val", NULL
9905 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9906 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9907 if (!SWIG_IsOK(res1
)) {
9908 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9910 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9911 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9912 if (!SWIG_IsOK(ecode2
)) {
9913 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
9915 arg2
= static_cast< int >(val2
);
9916 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9917 if (!SWIG_IsOK(ecode3
)) {
9918 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
9920 arg3
= static_cast< int >(val3
);
9922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9923 (arg1
)->SetMetric(arg2
,arg3
);
9924 wxPyEndAllowThreads(__tstate
);
9925 if (PyErr_Occurred()) SWIG_fail
;
9927 resultobj
= SWIG_Py_Void();
9934 SWIGINTERN PyObject
*_wrap_DockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9935 PyObject
*resultobj
= 0;
9936 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9945 PyObject
* obj0
= 0 ;
9946 PyObject
* obj1
= 0 ;
9947 PyObject
* obj2
= 0 ;
9948 char * kwnames
[] = {
9949 (char *) "self",(char *) "id",(char *) "font", NULL
9952 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9953 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9954 if (!SWIG_IsOK(res1
)) {
9955 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
9957 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9958 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9959 if (!SWIG_IsOK(ecode2
)) {
9960 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
9962 arg2
= static_cast< int >(val2
);
9963 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
9964 if (!SWIG_IsOK(res3
)) {
9965 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9968 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9970 arg3
= reinterpret_cast< wxFont
* >(argp3
);
9972 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9973 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
9974 wxPyEndAllowThreads(__tstate
);
9975 if (PyErr_Occurred()) SWIG_fail
;
9977 resultobj
= SWIG_Py_Void();
9984 SWIGINTERN PyObject
*_wrap_DockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9985 PyObject
*resultobj
= 0;
9986 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9993 PyObject
* obj0
= 0 ;
9994 PyObject
* obj1
= 0 ;
9995 char * kwnames
[] = {
9996 (char *) "self",(char *) "id", NULL
9999 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10000 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10001 if (!SWIG_IsOK(res1
)) {
10002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
10004 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10005 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10006 if (!SWIG_IsOK(ecode2
)) {
10007 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10009 arg2
= static_cast< int >(val2
);
10011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10012 result
= (arg1
)->GetFont(arg2
);
10013 wxPyEndAllowThreads(__tstate
);
10014 if (PyErr_Occurred()) SWIG_fail
;
10016 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10023 SWIGINTERN PyObject
*_wrap_DockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10024 PyObject
*resultobj
= 0;
10025 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10032 PyObject
* obj0
= 0 ;
10033 PyObject
* obj1
= 0 ;
10034 char * kwnames
[] = {
10035 (char *) "self",(char *) "id", NULL
10038 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10039 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10040 if (!SWIG_IsOK(res1
)) {
10041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
10043 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10044 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10045 if (!SWIG_IsOK(ecode2
)) {
10046 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10048 arg2
= static_cast< int >(val2
);
10050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10051 result
= (arg1
)->GetColour(arg2
);
10052 wxPyEndAllowThreads(__tstate
);
10053 if (PyErr_Occurred()) SWIG_fail
;
10055 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10062 SWIGINTERN PyObject
*_wrap_DockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10063 PyObject
*resultobj
= 0;
10064 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10066 wxColor
*arg3
= 0 ;
10073 PyObject
* obj0
= 0 ;
10074 PyObject
* obj1
= 0 ;
10075 PyObject
* obj2
= 0 ;
10076 char * kwnames
[] = {
10077 (char *) "self",(char *) "id",(char *) "colour", NULL
10080 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10081 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10082 if (!SWIG_IsOK(res1
)) {
10083 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
10085 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10086 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10087 if (!SWIG_IsOK(ecode2
)) {
10088 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
10090 arg2
= static_cast< int >(val2
);
10091 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
10092 if (!SWIG_IsOK(res3
)) {
10093 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10096 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10098 arg3
= reinterpret_cast< wxColor
* >(argp3
);
10100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10101 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
10102 wxPyEndAllowThreads(__tstate
);
10103 if (PyErr_Occurred()) SWIG_fail
;
10105 resultobj
= SWIG_Py_Void();
10112 SWIGINTERN PyObject
*_wrap_DockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10113 PyObject
*resultobj
= 0;
10114 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10121 PyObject
* obj0
= 0 ;
10122 PyObject
* obj1
= 0 ;
10123 char * kwnames
[] = {
10124 (char *) "self",(char *) "id", NULL
10127 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10128 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10129 if (!SWIG_IsOK(res1
)) {
10130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
10132 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10133 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10134 if (!SWIG_IsOK(ecode2
)) {
10135 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
10137 arg2
= static_cast< int >(val2
);
10139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10140 result
= (arg1
)->GetColor(arg2
);
10141 wxPyEndAllowThreads(__tstate
);
10142 if (PyErr_Occurred()) SWIG_fail
;
10144 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10151 SWIGINTERN PyObject
*_wrap_DockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10152 PyObject
*resultobj
= 0;
10153 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10155 wxColour
*arg3
= 0 ;
10161 PyObject
* obj0
= 0 ;
10162 PyObject
* obj1
= 0 ;
10163 PyObject
* obj2
= 0 ;
10164 char * kwnames
[] = {
10165 (char *) "self",(char *) "id",(char *) "color", NULL
10168 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10169 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10170 if (!SWIG_IsOK(res1
)) {
10171 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
10173 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10174 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10175 if (!SWIG_IsOK(ecode2
)) {
10176 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
10178 arg2
= static_cast< int >(val2
);
10181 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
10184 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10185 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
10186 wxPyEndAllowThreads(__tstate
);
10187 if (PyErr_Occurred()) SWIG_fail
;
10189 resultobj
= SWIG_Py_Void();
10196 SWIGINTERN PyObject
*_wrap_DockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10197 PyObject
*resultobj
= 0;
10198 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10200 wxWindow
*arg3
= (wxWindow
*) 0 ;
10212 PyObject
* obj0
= 0 ;
10213 PyObject
* obj1
= 0 ;
10214 PyObject
* obj2
= 0 ;
10215 PyObject
* obj3
= 0 ;
10216 PyObject
* obj4
= 0 ;
10217 char * kwnames
[] = {
10218 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10221 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10222 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10223 if (!SWIG_IsOK(res1
)) {
10224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawSash" "', expected argument " "1"" of type '" "wxDockArt *""'");
10226 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10227 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10228 if (!SWIG_IsOK(res2
)) {
10229 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10232 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10234 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10235 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10236 if (!SWIG_IsOK(res3
)) {
10237 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
10239 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10240 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10241 if (!SWIG_IsOK(ecode4
)) {
10242 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
10244 arg4
= static_cast< int >(val4
);
10247 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10250 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10251 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10252 wxPyEndAllowThreads(__tstate
);
10253 if (PyErr_Occurred()) SWIG_fail
;
10255 resultobj
= SWIG_Py_Void();
10262 SWIGINTERN PyObject
*_wrap_DockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10263 PyObject
*resultobj
= 0;
10264 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10266 wxWindow
*arg3
= (wxWindow
*) 0 ;
10278 PyObject
* obj0
= 0 ;
10279 PyObject
* obj1
= 0 ;
10280 PyObject
* obj2
= 0 ;
10281 PyObject
* obj3
= 0 ;
10282 PyObject
* obj4
= 0 ;
10283 char * kwnames
[] = {
10284 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10287 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) 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_DrawBackground" "', expected argument " "1"" of type '" "wxDockArt *""'");
10292 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10293 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10294 if (!SWIG_IsOK(res2
)) {
10295 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10298 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10300 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10301 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10302 if (!SWIG_IsOK(res3
)) {
10303 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
10305 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10306 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10307 if (!SWIG_IsOK(ecode4
)) {
10308 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
10310 arg4
= static_cast< int >(val4
);
10313 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10317 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10318 wxPyEndAllowThreads(__tstate
);
10319 if (PyErr_Occurred()) SWIG_fail
;
10321 resultobj
= SWIG_Py_Void();
10328 SWIGINTERN PyObject
*_wrap_DockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10329 PyObject
*resultobj
= 0;
10330 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10332 wxWindow
*arg3
= (wxWindow
*) 0 ;
10333 wxString
*arg4
= 0 ;
10335 wxPaneInfo
*arg6
= 0 ;
10342 bool temp4
= false ;
10346 PyObject
* obj0
= 0 ;
10347 PyObject
* obj1
= 0 ;
10348 PyObject
* obj2
= 0 ;
10349 PyObject
* obj3
= 0 ;
10350 PyObject
* obj4
= 0 ;
10351 PyObject
* obj5
= 0 ;
10352 char * kwnames
[] = {
10353 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
10356 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:DockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
10357 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10358 if (!SWIG_IsOK(res1
)) {
10359 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawCaption" "', expected argument " "1"" of type '" "wxDockArt *""'");
10361 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10362 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10363 if (!SWIG_IsOK(res2
)) {
10364 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10367 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10369 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10370 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10371 if (!SWIG_IsOK(res3
)) {
10372 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
10374 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10376 arg4
= wxString_in_helper(obj3
);
10377 if (arg4
== NULL
) SWIG_fail
;
10382 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10384 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxPaneInfo
, 0 );
10385 if (!SWIG_IsOK(res6
)) {
10386 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DockArt_DrawCaption" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10389 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10391 arg6
= reinterpret_cast< wxPaneInfo
* >(argp6
);
10393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10394 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
10395 wxPyEndAllowThreads(__tstate
);
10396 if (PyErr_Occurred()) SWIG_fail
;
10398 resultobj
= SWIG_Py_Void();
10413 SWIGINTERN PyObject
*_wrap_DockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10414 PyObject
*resultobj
= 0;
10415 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10417 wxWindow
*arg3
= (wxWindow
*) 0 ;
10419 wxPaneInfo
*arg5
= 0 ;
10429 PyObject
* obj0
= 0 ;
10430 PyObject
* obj1
= 0 ;
10431 PyObject
* obj2
= 0 ;
10432 PyObject
* obj3
= 0 ;
10433 PyObject
* obj4
= 0 ;
10434 char * kwnames
[] = {
10435 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
10438 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10439 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10440 if (!SWIG_IsOK(res1
)) {
10441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawGripper" "', expected argument " "1"" of type '" "wxDockArt *""'");
10443 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10444 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10445 if (!SWIG_IsOK(res2
)) {
10446 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
10449 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
10451 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10452 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10453 if (!SWIG_IsOK(res3
)) {
10454 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
10456 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10459 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
10461 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
10462 if (!SWIG_IsOK(res5
)) {
10463 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawGripper" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10466 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10468 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
10470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10471 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
10472 wxPyEndAllowThreads(__tstate
);
10473 if (PyErr_Occurred()) SWIG_fail
;
10475 resultobj
= SWIG_Py_Void();
10482 SWIGINTERN PyObject
*_wrap_DockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10483 PyObject
*resultobj
= 0;
10484 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10486 wxWindow
*arg3
= (wxWindow
*) 0 ;
10488 wxPaneInfo
*arg5
= 0 ;
10498 PyObject
* obj0
= 0 ;
10499 PyObject
* obj1
= 0 ;
10500 PyObject
* obj2
= 0 ;
10501 PyObject
* obj3
= 0 ;
10502 PyObject
* obj4
= 0 ;
10503 char * kwnames
[] = {
10504 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
10507 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10508 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10509 if (!SWIG_IsOK(res1
)) {
10510 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBorder" "', expected argument " "1"" of type '" "wxDockArt *""'");
10512 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10513 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10514 if (!SWIG_IsOK(res2
)) {
10515 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
10518 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
10520 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10521 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10522 if (!SWIG_IsOK(res3
)) {
10523 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
10525 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10528 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
10530 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
10531 if (!SWIG_IsOK(res5
)) {
10532 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawBorder" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10535 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10537 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
10539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10540 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
10541 wxPyEndAllowThreads(__tstate
);
10542 if (PyErr_Occurred()) SWIG_fail
;
10544 resultobj
= SWIG_Py_Void();
10551 SWIGINTERN PyObject
*_wrap_DockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10552 PyObject
*resultobj
= 0;
10553 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10555 wxWindow
*arg3
= (wxWindow
*) 0 ;
10559 wxPaneInfo
*arg7
= 0 ;
10573 PyObject
* obj0
= 0 ;
10574 PyObject
* obj1
= 0 ;
10575 PyObject
* obj2
= 0 ;
10576 PyObject
* obj3
= 0 ;
10577 PyObject
* obj4
= 0 ;
10578 PyObject
* obj5
= 0 ;
10579 PyObject
* obj6
= 0 ;
10580 char * kwnames
[] = {
10581 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
10584 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:DockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
10585 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10586 if (!SWIG_IsOK(res1
)) {
10587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxDockArt *""'");
10589 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10590 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10591 if (!SWIG_IsOK(res2
)) {
10592 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
10595 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
10597 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10598 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10599 if (!SWIG_IsOK(res3
)) {
10600 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
10602 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10603 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10604 if (!SWIG_IsOK(ecode4
)) {
10605 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
10607 arg4
= static_cast< int >(val4
);
10608 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10609 if (!SWIG_IsOK(ecode5
)) {
10610 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
10612 arg5
= static_cast< int >(val5
);
10615 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
10617 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxPaneInfo
, 0 );
10618 if (!SWIG_IsOK(res7
)) {
10619 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxPaneInfo &""'");
10622 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxPaneInfo &""'");
10624 arg7
= reinterpret_cast< wxPaneInfo
* >(argp7
);
10626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10627 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
10628 wxPyEndAllowThreads(__tstate
);
10629 if (PyErr_Occurred()) SWIG_fail
;
10631 resultobj
= SWIG_Py_Void();
10638 SWIGINTERN PyObject
*DockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10640 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10641 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockArt
, SWIG_NewClientData(obj
));
10642 return SWIG_Py_Void();
10645 SWIGINTERN PyObject
*_wrap_new_DefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10646 PyObject
*resultobj
= 0;
10647 wxDefaultDockArt
*result
= 0 ;
10649 if (!SWIG_Python_UnpackTuple(args
,"new_DefaultDockArt",0,0,0)) SWIG_fail
;
10651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10652 result
= (wxDefaultDockArt
*)new wxDefaultDockArt();
10653 wxPyEndAllowThreads(__tstate
);
10654 if (PyErr_Occurred()) SWIG_fail
;
10656 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
10663 SWIGINTERN PyObject
*DefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10665 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10666 SWIG_TypeNewClientData(SWIGTYPE_p_wxDefaultDockArt
, SWIG_NewClientData(obj
));
10667 return SWIG_Py_Void();
10670 SWIGINTERN PyObject
*DefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10671 return SWIG_Python_InitShadowInstance(args
);
10674 SWIGINTERN PyObject
*_wrap_new_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10675 PyObject
*resultobj
= 0;
10676 wxWindow
*arg1
= (wxWindow
*) 0 ;
10677 wxFrameManager
*arg2
= (wxFrameManager
*) 0 ;
10678 wxPaneInfo
*arg3
= 0 ;
10679 int arg4
= (int) wxID_ANY
;
10680 wxFloatingPane
*result
= 0 ;
10689 PyObject
* obj0
= 0 ;
10690 PyObject
* obj1
= 0 ;
10691 PyObject
* obj2
= 0 ;
10692 PyObject
* obj3
= 0 ;
10693 char * kwnames
[] = {
10694 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id", NULL
10697 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FloatingPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10698 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10699 if (!SWIG_IsOK(res1
)) {
10700 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FloatingPane" "', expected argument " "1"" of type '" "wxWindow *""'");
10702 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10703 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
10704 if (!SWIG_IsOK(res2
)) {
10705 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FloatingPane" "', expected argument " "2"" of type '" "wxFrameManager *""'");
10707 arg2
= reinterpret_cast< wxFrameManager
* >(argp2
);
10708 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
10709 if (!SWIG_IsOK(res3
)) {
10710 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10713 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10715 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
10717 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10718 if (!SWIG_IsOK(ecode4
)) {
10719 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FloatingPane" "', expected argument " "4"" of type '" "int""'");
10721 arg4
= static_cast< int >(val4
);
10724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10725 result
= (wxFloatingPane
*)new wxFloatingPane(arg1
,arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
10726 wxPyEndAllowThreads(__tstate
);
10727 if (PyErr_Occurred()) SWIG_fail
;
10729 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_NEW
| 0 );
10736 SWIGINTERN PyObject
*_wrap_delete_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10737 PyObject
*resultobj
= 0;
10738 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
10741 PyObject
*swig_obj
[1] ;
10743 if (!args
) SWIG_fail
;
10744 swig_obj
[0] = args
;
10745 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_DISOWN
| 0 );
10746 if (!SWIG_IsOK(res1
)) {
10747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FloatingPane" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
10749 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
10751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10754 wxPyEndAllowThreads(__tstate
);
10755 if (PyErr_Occurred()) SWIG_fail
;
10757 resultobj
= SWIG_Py_Void();
10764 SWIGINTERN PyObject
*_wrap_FloatingPane_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10765 PyObject
*resultobj
= 0;
10766 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
10767 wxPaneInfo
*arg2
= 0 ;
10772 PyObject
* obj0
= 0 ;
10773 PyObject
* obj1
= 0 ;
10774 char * kwnames
[] = {
10775 (char *) "self",(char *) "pane", NULL
10778 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FloatingPane_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10779 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFloatingPane
, 0 | 0 );
10780 if (!SWIG_IsOK(res1
)) {
10781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
10783 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
10784 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
10785 if (!SWIG_IsOK(res2
)) {
10786 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
10789 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
10791 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
10793 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10794 (arg1
)->SetPaneWindow((wxPaneInfo
const &)*arg2
);
10795 wxPyEndAllowThreads(__tstate
);
10796 if (PyErr_Occurred()) SWIG_fail
;
10798 resultobj
= SWIG_Py_Void();
10805 SWIGINTERN PyObject
*FloatingPane_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10807 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10808 SWIG_TypeNewClientData(SWIGTYPE_p_wxFloatingPane
, SWIG_NewClientData(obj
));
10809 return SWIG_Py_Void();
10812 SWIGINTERN PyObject
*FloatingPane_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10813 return SWIG_Python_InitShadowInstance(args
);
10816 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10817 PyObject
*resultobj
= 0;
10818 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
10819 int arg2
= (int) 0 ;
10820 wxAuiNotebookEvent
*result
= 0 ;
10825 PyObject
* obj0
= 0 ;
10826 PyObject
* obj1
= 0 ;
10827 char * kwnames
[] = {
10828 (char *) "command_type",(char *) "win_id", NULL
10831 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10833 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10834 if (!SWIG_IsOK(ecode1
)) {
10835 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
10837 arg1
= static_cast< wxEventType
>(val1
);
10840 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10841 if (!SWIG_IsOK(ecode2
)) {
10842 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
10844 arg2
= static_cast< int >(val2
);
10847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10848 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
10849 wxPyEndAllowThreads(__tstate
);
10850 if (PyErr_Occurred()) SWIG_fail
;
10852 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
10859 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10860 PyObject
*resultobj
= 0;
10861 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
10867 PyObject
* obj0
= 0 ;
10868 PyObject
* obj1
= 0 ;
10869 char * kwnames
[] = {
10870 (char *) "self",(char *) "s", NULL
10873 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10874 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
10875 if (!SWIG_IsOK(res1
)) {
10876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
10878 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
10879 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10880 if (!SWIG_IsOK(ecode2
)) {
10881 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
10883 arg2
= static_cast< int >(val2
);
10885 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10886 (arg1
)->SetSelection(arg2
);
10887 wxPyEndAllowThreads(__tstate
);
10888 if (PyErr_Occurred()) SWIG_fail
;
10890 resultobj
= SWIG_Py_Void();
10897 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10898 PyObject
*resultobj
= 0;
10899 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
10905 PyObject
* obj0
= 0 ;
10906 PyObject
* obj1
= 0 ;
10907 char * kwnames
[] = {
10908 (char *) "self",(char *) "s", NULL
10911 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10912 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
10913 if (!SWIG_IsOK(res1
)) {
10914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
10916 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
10917 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10918 if (!SWIG_IsOK(ecode2
)) {
10919 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
10921 arg2
= static_cast< int >(val2
);
10923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10924 (arg1
)->SetOldSelection(arg2
);
10925 wxPyEndAllowThreads(__tstate
);
10926 if (PyErr_Occurred()) SWIG_fail
;
10928 resultobj
= SWIG_Py_Void();
10935 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10936 PyObject
*resultobj
= 0;
10937 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
10941 PyObject
*swig_obj
[1] ;
10943 if (!args
) SWIG_fail
;
10944 swig_obj
[0] = args
;
10945 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
10946 if (!SWIG_IsOK(res1
)) {
10947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
10949 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
10951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10952 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
10953 wxPyEndAllowThreads(__tstate
);
10954 if (PyErr_Occurred()) SWIG_fail
;
10956 resultobj
= SWIG_From_int(static_cast< int >(result
));
10963 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10964 PyObject
*resultobj
= 0;
10965 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
10969 PyObject
*swig_obj
[1] ;
10971 if (!args
) SWIG_fail
;
10972 swig_obj
[0] = args
;
10973 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
10974 if (!SWIG_IsOK(res1
)) {
10975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
10977 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
10979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10980 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
10981 wxPyEndAllowThreads(__tstate
);
10982 if (PyErr_Occurred()) SWIG_fail
;
10984 resultobj
= SWIG_From_int(static_cast< int >(result
));
10991 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10992 PyObject
*resultobj
= 0;
10993 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
10999 PyObject
*swig_obj
[2] ;
11001 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
11002 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11003 if (!SWIG_IsOK(res1
)) {
11004 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11006 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11007 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11008 if (!SWIG_IsOK(ecode2
)) {
11009 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
11011 arg2
= static_cast< int >(val2
);
11012 if (arg1
) (arg1
)->old_selection
= arg2
;
11014 resultobj
= SWIG_Py_Void();
11021 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11022 PyObject
*resultobj
= 0;
11023 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11027 PyObject
*swig_obj
[1] ;
11029 if (!args
) SWIG_fail
;
11030 swig_obj
[0] = args
;
11031 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11032 if (!SWIG_IsOK(res1
)) {
11033 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11035 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11036 result
= (int) ((arg1
)->old_selection
);
11037 resultobj
= SWIG_From_int(static_cast< int >(result
));
11044 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11045 PyObject
*resultobj
= 0;
11046 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11052 PyObject
*swig_obj
[2] ;
11054 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
11055 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11056 if (!SWIG_IsOK(res1
)) {
11057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11059 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11060 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11061 if (!SWIG_IsOK(ecode2
)) {
11062 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
11064 arg2
= static_cast< int >(val2
);
11065 if (arg1
) (arg1
)->selection
= arg2
;
11067 resultobj
= SWIG_Py_Void();
11074 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11075 PyObject
*resultobj
= 0;
11076 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11080 PyObject
*swig_obj
[1] ;
11082 if (!args
) SWIG_fail
;
11083 swig_obj
[0] = args
;
11084 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11085 if (!SWIG_IsOK(res1
)) {
11086 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11088 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11089 result
= (int) ((arg1
)->selection
);
11090 resultobj
= SWIG_From_int(static_cast< int >(result
));
11097 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11099 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11100 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
11101 return SWIG_Py_Void();
11104 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11105 return SWIG_Python_InitShadowInstance(args
);
11108 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11109 PyObject
*resultobj
= 0;
11110 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11111 wxWindow
*arg2
= (wxWindow
*) 0 ;
11116 PyObject
*swig_obj
[2] ;
11118 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
11119 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11120 if (!SWIG_IsOK(res1
)) {
11121 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11123 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11124 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
11125 if (!SWIG_IsOK(res2
)) {
11126 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
11128 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11129 if (arg1
) (arg1
)->window
= arg2
;
11131 resultobj
= SWIG_Py_Void();
11138 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11139 PyObject
*resultobj
= 0;
11140 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11141 wxWindow
*result
= 0 ;
11144 PyObject
*swig_obj
[1] ;
11146 if (!args
) SWIG_fail
;
11147 swig_obj
[0] = args
;
11148 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11149 if (!SWIG_IsOK(res1
)) {
11150 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11152 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11153 result
= (wxWindow
*) ((arg1
)->window
);
11155 resultobj
= wxPyMake_wxObject(result
, 0);
11163 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11164 PyObject
*resultobj
= 0;
11165 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11166 wxString
*arg2
= (wxString
*) 0 ;
11169 bool temp2
= false ;
11170 PyObject
*swig_obj
[2] ;
11172 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
11173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11174 if (!SWIG_IsOK(res1
)) {
11175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11177 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11179 arg2
= wxString_in_helper(swig_obj
[1]);
11180 if (arg2
== NULL
) SWIG_fail
;
11183 if (arg1
) (arg1
)->caption
= *arg2
;
11185 resultobj
= SWIG_Py_Void();
11200 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11201 PyObject
*resultobj
= 0;
11202 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11203 wxString
*result
= 0 ;
11206 PyObject
*swig_obj
[1] ;
11208 if (!args
) SWIG_fail
;
11209 swig_obj
[0] = args
;
11210 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11211 if (!SWIG_IsOK(res1
)) {
11212 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11214 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11215 result
= (wxString
*)& ((arg1
)->caption
);
11218 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
11220 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
11229 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11230 PyObject
*resultobj
= 0;
11231 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11232 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
11237 PyObject
*swig_obj
[2] ;
11239 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
11240 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11241 if (!SWIG_IsOK(res1
)) {
11242 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11244 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11245 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
11246 if (!SWIG_IsOK(res2
)) {
11247 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
11249 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
11250 if (arg1
) (arg1
)->bitmap
= *arg2
;
11252 resultobj
= SWIG_Py_Void();
11259 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11260 PyObject
*resultobj
= 0;
11261 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11262 wxBitmap
*result
= 0 ;
11265 PyObject
*swig_obj
[1] ;
11267 if (!args
) SWIG_fail
;
11268 swig_obj
[0] = args
;
11269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11270 if (!SWIG_IsOK(res1
)) {
11271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11273 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11274 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
11275 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
11282 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11283 PyObject
*resultobj
= 0;
11284 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11285 wxRect
*arg2
= (wxRect
*) 0 ;
11290 PyObject
*swig_obj
[2] ;
11292 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
11293 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11294 if (!SWIG_IsOK(res1
)) {
11295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11297 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11298 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
11299 if (!SWIG_IsOK(res2
)) {
11300 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
11302 arg2
= reinterpret_cast< wxRect
* >(argp2
);
11303 if (arg1
) (arg1
)->rect
= *arg2
;
11305 resultobj
= SWIG_Py_Void();
11312 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11313 PyObject
*resultobj
= 0;
11314 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11315 wxRect
*result
= 0 ;
11318 PyObject
*swig_obj
[1] ;
11320 if (!args
) SWIG_fail
;
11321 swig_obj
[0] = args
;
11322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11323 if (!SWIG_IsOK(res1
)) {
11324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11326 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11327 result
= (wxRect
*)& ((arg1
)->rect
);
11328 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
11335 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11336 PyObject
*resultobj
= 0;
11337 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11343 PyObject
*swig_obj
[2] ;
11345 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
11346 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11347 if (!SWIG_IsOK(res1
)) {
11348 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11350 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11351 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
11352 if (!SWIG_IsOK(ecode2
)) {
11353 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
11355 arg2
= static_cast< bool >(val2
);
11356 if (arg1
) (arg1
)->active
= arg2
;
11358 resultobj
= SWIG_Py_Void();
11365 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11366 PyObject
*resultobj
= 0;
11367 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11371 PyObject
*swig_obj
[1] ;
11373 if (!args
) SWIG_fail
;
11374 swig_obj
[0] = args
;
11375 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11376 if (!SWIG_IsOK(res1
)) {
11377 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11379 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11380 result
= (bool) ((arg1
)->active
);
11382 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11390 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11392 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11393 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
11394 return SWIG_Py_Void();
11397 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11398 PyObject
*resultobj
= 0;
11399 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11405 PyObject
*swig_obj
[2] ;
11407 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
11408 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11409 if (!SWIG_IsOK(res1
)) {
11410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11412 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11413 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11414 if (!SWIG_IsOK(ecode2
)) {
11415 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
11417 arg2
= static_cast< int >(val2
);
11418 if (arg1
) (arg1
)->id
= arg2
;
11420 resultobj
= SWIG_Py_Void();
11427 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11428 PyObject
*resultobj
= 0;
11429 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11433 PyObject
*swig_obj
[1] ;
11435 if (!args
) SWIG_fail
;
11436 swig_obj
[0] = args
;
11437 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11438 if (!SWIG_IsOK(res1
)) {
11439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11441 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11442 result
= (int) ((arg1
)->id
);
11443 resultobj
= SWIG_From_int(static_cast< int >(result
));
11450 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11451 PyObject
*resultobj
= 0;
11452 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11458 PyObject
*swig_obj
[2] ;
11460 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
11461 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11462 if (!SWIG_IsOK(res1
)) {
11463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11465 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11466 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11467 if (!SWIG_IsOK(ecode2
)) {
11468 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
11470 arg2
= static_cast< int >(val2
);
11471 if (arg1
) (arg1
)->cur_state
= arg2
;
11473 resultobj
= SWIG_Py_Void();
11480 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11481 PyObject
*resultobj
= 0;
11482 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11486 PyObject
*swig_obj
[1] ;
11488 if (!args
) SWIG_fail
;
11489 swig_obj
[0] = args
;
11490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11491 if (!SWIG_IsOK(res1
)) {
11492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11494 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11495 result
= (int) ((arg1
)->cur_state
);
11496 resultobj
= SWIG_From_int(static_cast< int >(result
));
11503 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11504 PyObject
*resultobj
= 0;
11505 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11506 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
11511 PyObject
*swig_obj
[2] ;
11513 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
11514 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11515 if (!SWIG_IsOK(res1
)) {
11516 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11518 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11519 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
11520 if (!SWIG_IsOK(res2
)) {
11521 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
11523 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
11524 if (arg1
) (arg1
)->bitmap
= *arg2
;
11526 resultobj
= SWIG_Py_Void();
11533 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11534 PyObject
*resultobj
= 0;
11535 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11536 wxBitmap
*result
= 0 ;
11539 PyObject
*swig_obj
[1] ;
11541 if (!args
) SWIG_fail
;
11542 swig_obj
[0] = args
;
11543 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11544 if (!SWIG_IsOK(res1
)) {
11545 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11547 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11548 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
11549 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
11556 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11557 PyObject
*resultobj
= 0;
11558 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11559 wxRect
*arg2
= (wxRect
*) 0 ;
11564 PyObject
*swig_obj
[2] ;
11566 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
11567 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11568 if (!SWIG_IsOK(res1
)) {
11569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11571 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11572 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
11573 if (!SWIG_IsOK(res2
)) {
11574 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
11576 arg2
= reinterpret_cast< wxRect
* >(argp2
);
11577 if (arg1
) (arg1
)->rect
= *arg2
;
11579 resultobj
= SWIG_Py_Void();
11586 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11587 PyObject
*resultobj
= 0;
11588 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
11589 wxRect
*result
= 0 ;
11592 PyObject
*swig_obj
[1] ;
11594 if (!args
) SWIG_fail
;
11595 swig_obj
[0] = args
;
11596 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
11597 if (!SWIG_IsOK(res1
)) {
11598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
11600 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
11601 result
= (wxRect
*)& ((arg1
)->rect
);
11602 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
11609 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11611 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11612 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
11613 return SWIG_Py_Void();
11616 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11617 PyObject
*resultobj
= 0;
11618 wxAuiTabContainer
*result
= 0 ;
11620 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
11622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11623 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
11624 wxPyEndAllowThreads(__tstate
);
11625 if (PyErr_Occurred()) SWIG_fail
;
11627 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
11634 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11635 PyObject
*resultobj
= 0;
11636 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11639 PyObject
*swig_obj
[1] ;
11641 if (!args
) SWIG_fail
;
11642 swig_obj
[0] = args
;
11643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
11644 if (!SWIG_IsOK(res1
)) {
11645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11647 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11652 wxPyEndAllowThreads(__tstate
);
11653 if (PyErr_Occurred()) SWIG_fail
;
11655 resultobj
= SWIG_Py_Void();
11662 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11663 PyObject
*resultobj
= 0;
11664 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11665 wxWindow
*arg2
= (wxWindow
*) 0 ;
11666 wxAuiNotebookPage
*arg3
= 0 ;
11674 PyObject
* obj0
= 0 ;
11675 PyObject
* obj1
= 0 ;
11676 PyObject
* obj2
= 0 ;
11677 char * kwnames
[] = {
11678 (char *) "self",(char *) "page",(char *) "info", NULL
11681 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11682 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11683 if (!SWIG_IsOK(res1
)) {
11684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11686 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11687 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11688 if (!SWIG_IsOK(res2
)) {
11689 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
11691 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11692 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
11693 if (!SWIG_IsOK(res3
)) {
11694 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
11697 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
11699 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
11701 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11702 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
11703 wxPyEndAllowThreads(__tstate
);
11704 if (PyErr_Occurred()) SWIG_fail
;
11707 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11715 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11716 PyObject
*resultobj
= 0;
11717 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11718 wxWindow
*arg2
= (wxWindow
*) 0 ;
11719 wxAuiNotebookPage
*arg3
= 0 ;
11730 PyObject
* obj0
= 0 ;
11731 PyObject
* obj1
= 0 ;
11732 PyObject
* obj2
= 0 ;
11733 PyObject
* obj3
= 0 ;
11734 char * kwnames
[] = {
11735 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
11738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11740 if (!SWIG_IsOK(res1
)) {
11741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11743 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11744 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11745 if (!SWIG_IsOK(res2
)) {
11746 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
11748 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11749 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
11750 if (!SWIG_IsOK(res3
)) {
11751 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
11754 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
11756 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
11757 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
11758 if (!SWIG_IsOK(ecode4
)) {
11759 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
11761 arg4
= static_cast< size_t >(val4
);
11763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11764 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
11765 wxPyEndAllowThreads(__tstate
);
11766 if (PyErr_Occurred()) SWIG_fail
;
11769 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11777 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11778 PyObject
*resultobj
= 0;
11779 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11780 wxWindow
*arg2
= (wxWindow
*) 0 ;
11786 PyObject
* obj0
= 0 ;
11787 PyObject
* obj1
= 0 ;
11788 char * kwnames
[] = {
11789 (char *) "self",(char *) "page", NULL
11792 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11793 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11794 if (!SWIG_IsOK(res1
)) {
11795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11797 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11798 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11799 if (!SWIG_IsOK(res2
)) {
11800 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
11802 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11805 result
= (bool)(arg1
)->RemovePage(arg2
);
11806 wxPyEndAllowThreads(__tstate
);
11807 if (PyErr_Occurred()) SWIG_fail
;
11810 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11818 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
11819 PyObject
*resultobj
= 0;
11820 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11821 wxWindow
*arg2
= (wxWindow
*) 0 ;
11828 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
11829 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11830 if (!SWIG_IsOK(res1
)) {
11831 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11833 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11834 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11835 if (!SWIG_IsOK(res2
)) {
11836 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
11838 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11840 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11841 result
= (bool)(arg1
)->SetActivePage(arg2
);
11842 wxPyEndAllowThreads(__tstate
);
11843 if (PyErr_Occurred()) SWIG_fail
;
11846 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11854 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
11855 PyObject
*resultobj
= 0;
11856 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11864 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
11865 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11866 if (!SWIG_IsOK(res1
)) {
11867 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11869 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11870 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
11871 if (!SWIG_IsOK(ecode2
)) {
11872 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
11874 arg2
= static_cast< size_t >(val2
);
11876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11877 result
= (bool)(arg1
)->SetActivePage(arg2
);
11878 wxPyEndAllowThreads(__tstate
);
11879 if (PyErr_Occurred()) SWIG_fail
;
11882 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11890 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
11894 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
11900 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
11901 _v
= SWIG_CheckState(res
);
11903 if (!_v
) goto check_1
;
11904 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
11909 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
11913 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
11918 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11919 PyObject
*resultobj
= 0;
11920 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11923 PyObject
*swig_obj
[1] ;
11925 if (!args
) SWIG_fail
;
11926 swig_obj
[0] = args
;
11927 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11928 if (!SWIG_IsOK(res1
)) {
11929 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
11931 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11934 (arg1
)->SetNoneActive();
11935 wxPyEndAllowThreads(__tstate
);
11936 if (PyErr_Occurred()) SWIG_fail
;
11938 resultobj
= SWIG_Py_Void();
11945 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11946 PyObject
*resultobj
= 0;
11947 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11951 PyObject
*swig_obj
[1] ;
11953 if (!args
) SWIG_fail
;
11954 swig_obj
[0] = args
;
11955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11956 if (!SWIG_IsOK(res1
)) {
11957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
11959 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
11961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11962 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
11963 wxPyEndAllowThreads(__tstate
);
11964 if (PyErr_Occurred()) SWIG_fail
;
11966 resultobj
= SWIG_From_int(static_cast< int >(result
));
11973 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11974 PyObject
*resultobj
= 0;
11975 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
11978 wxWindow
**arg4
= (wxWindow
**) 0 ;
11988 PyObject
* obj0
= 0 ;
11989 PyObject
* obj1
= 0 ;
11990 PyObject
* obj2
= 0 ;
11991 PyObject
* obj3
= 0 ;
11992 char * kwnames
[] = {
11993 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
11996 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11997 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
11998 if (!SWIG_IsOK(res1
)) {
11999 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12001 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12002 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12003 if (!SWIG_IsOK(ecode2
)) {
12004 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
12006 arg2
= static_cast< int >(val2
);
12007 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
12008 if (!SWIG_IsOK(ecode3
)) {
12009 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
12011 arg3
= static_cast< int >(val3
);
12012 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
12013 if (!SWIG_IsOK(res4
)) {
12014 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
12016 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
12018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12019 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
12020 wxPyEndAllowThreads(__tstate
);
12021 if (PyErr_Occurred()) SWIG_fail
;
12024 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12032 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12033 PyObject
*resultobj
= 0;
12034 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12037 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
12047 PyObject
* obj0
= 0 ;
12048 PyObject
* obj1
= 0 ;
12049 PyObject
* obj2
= 0 ;
12050 PyObject
* obj3
= 0 ;
12051 char * kwnames
[] = {
12052 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
12055 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
12056 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12057 if (!SWIG_IsOK(res1
)) {
12058 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12060 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12061 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12062 if (!SWIG_IsOK(ecode2
)) {
12063 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
12065 arg2
= static_cast< int >(val2
);
12066 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
12067 if (!SWIG_IsOK(ecode3
)) {
12068 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
12070 arg3
= static_cast< int >(val3
);
12071 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
12072 if (!SWIG_IsOK(res4
)) {
12073 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
12075 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
12077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12078 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
12079 wxPyEndAllowThreads(__tstate
);
12080 if (PyErr_Occurred()) SWIG_fail
;
12083 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12091 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12092 PyObject
*resultobj
= 0;
12093 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12095 wxWindow
*result
= 0 ;
12100 PyObject
* obj0
= 0 ;
12101 PyObject
* obj1
= 0 ;
12102 char * kwnames
[] = {
12103 (char *) "self",(char *) "idx", NULL
12106 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12107 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12108 if (!SWIG_IsOK(res1
)) {
12109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12111 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12112 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
12113 if (!SWIG_IsOK(ecode2
)) {
12114 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
12116 arg2
= static_cast< size_t >(val2
);
12118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12119 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
12120 wxPyEndAllowThreads(__tstate
);
12121 if (PyErr_Occurred()) SWIG_fail
;
12124 resultobj
= wxPyMake_wxObject(result
, 0);
12132 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12133 PyObject
*resultobj
= 0;
12134 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12135 wxWindow
*arg2
= (wxWindow
*) 0 ;
12141 PyObject
* obj0
= 0 ;
12142 PyObject
* obj1
= 0 ;
12143 char * kwnames
[] = {
12144 (char *) "self",(char *) "page", NULL
12147 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12148 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12149 if (!SWIG_IsOK(res1
)) {
12150 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12152 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12153 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12154 if (!SWIG_IsOK(res2
)) {
12155 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
12157 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12160 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
12161 wxPyEndAllowThreads(__tstate
);
12162 if (PyErr_Occurred()) SWIG_fail
;
12164 resultobj
= SWIG_From_int(static_cast< int >(result
));
12171 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12172 PyObject
*resultobj
= 0;
12173 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12177 PyObject
*swig_obj
[1] ;
12179 if (!args
) SWIG_fail
;
12180 swig_obj
[0] = args
;
12181 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12182 if (!SWIG_IsOK(res1
)) {
12183 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12185 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12188 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
12189 wxPyEndAllowThreads(__tstate
);
12190 if (PyErr_Occurred()) SWIG_fail
;
12192 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
12199 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12200 PyObject
*resultobj
= 0;
12201 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12203 wxAuiNotebookPage
*result
= 0 ;
12208 PyObject
* obj0
= 0 ;
12209 PyObject
* obj1
= 0 ;
12210 char * kwnames
[] = {
12211 (char *) "self",(char *) "idx", NULL
12214 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12215 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12216 if (!SWIG_IsOK(res1
)) {
12217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12219 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12220 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
12221 if (!SWIG_IsOK(ecode2
)) {
12222 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
12224 arg2
= static_cast< size_t >(val2
);
12226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12228 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
12229 result
= (wxAuiNotebookPage
*) &_result_ref
;
12231 wxPyEndAllowThreads(__tstate
);
12232 if (PyErr_Occurred()) SWIG_fail
;
12234 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12241 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12242 PyObject
*resultobj
= 0;
12243 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12244 wxAuiNotebookPageArray
*result
= 0 ;
12247 PyObject
*swig_obj
[1] ;
12249 if (!args
) SWIG_fail
;
12250 swig_obj
[0] = args
;
12251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12252 if (!SWIG_IsOK(res1
)) {
12253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12255 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12259 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
12260 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
12262 wxPyEndAllowThreads(__tstate
);
12263 if (PyErr_Occurred()) SWIG_fail
;
12265 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
12272 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12273 PyObject
*resultobj
= 0;
12274 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12280 PyObject
* obj0
= 0 ;
12281 PyObject
* obj1
= 0 ;
12282 char * kwnames
[] = {
12283 (char *) "self",(char *) "normal_font", NULL
12286 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12287 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12288 if (!SWIG_IsOK(res1
)) {
12289 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12291 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12292 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12293 if (!SWIG_IsOK(res2
)) {
12294 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12297 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12299 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12301 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12302 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
12303 wxPyEndAllowThreads(__tstate
);
12304 if (PyErr_Occurred()) SWIG_fail
;
12306 resultobj
= SWIG_Py_Void();
12313 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12314 PyObject
*resultobj
= 0;
12315 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12321 PyObject
* obj0
= 0 ;
12322 PyObject
* obj1
= 0 ;
12323 char * kwnames
[] = {
12324 (char *) "self",(char *) "selected_font", NULL
12327 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12328 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12329 if (!SWIG_IsOK(res1
)) {
12330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12332 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12333 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12334 if (!SWIG_IsOK(res2
)) {
12335 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12338 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12340 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12343 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
12344 wxPyEndAllowThreads(__tstate
);
12345 if (PyErr_Occurred()) SWIG_fail
;
12347 resultobj
= SWIG_Py_Void();
12354 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12355 PyObject
*resultobj
= 0;
12356 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12362 PyObject
* obj0
= 0 ;
12363 PyObject
* obj1
= 0 ;
12364 char * kwnames
[] = {
12365 (char *) "self",(char *) "measuring_font", NULL
12368 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12369 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12370 if (!SWIG_IsOK(res1
)) {
12371 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12373 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12374 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12375 if (!SWIG_IsOK(res2
)) {
12376 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12379 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12381 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12384 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
12385 wxPyEndAllowThreads(__tstate
);
12386 if (PyErr_Occurred()) SWIG_fail
;
12388 resultobj
= SWIG_Py_Void();
12395 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12396 PyObject
*resultobj
= 0;
12397 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12400 PyObject
*swig_obj
[1] ;
12402 if (!args
) SWIG_fail
;
12403 swig_obj
[0] = args
;
12404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12405 if (!SWIG_IsOK(res1
)) {
12406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12408 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12411 (arg1
)->DoShowHide();
12412 wxPyEndAllowThreads(__tstate
);
12413 if (PyErr_Occurred()) SWIG_fail
;
12415 resultobj
= SWIG_Py_Void();
12422 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12423 PyObject
*resultobj
= 0;
12424 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12429 PyObject
* obj0
= 0 ;
12430 PyObject
* obj1
= 0 ;
12431 char * kwnames
[] = {
12432 (char *) "self",(char *) "rect", NULL
12435 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12436 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12437 if (!SWIG_IsOK(res1
)) {
12438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12440 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12443 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
12446 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12447 (arg1
)->SetRect((wxRect
const &)*arg2
);
12448 wxPyEndAllowThreads(__tstate
);
12449 if (PyErr_Occurred()) SWIG_fail
;
12451 resultobj
= SWIG_Py_Void();
12458 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12459 PyObject
*resultobj
= 0;
12460 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12462 wxBitmap
*arg3
= 0 ;
12469 PyObject
* obj0
= 0 ;
12470 PyObject
* obj1
= 0 ;
12471 PyObject
* obj2
= 0 ;
12472 char * kwnames
[] = {
12473 (char *) "self",(char *) "id",(char *) "bmp", NULL
12476 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12477 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12478 if (!SWIG_IsOK(res1
)) {
12479 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12481 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12482 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12483 if (!SWIG_IsOK(ecode2
)) {
12484 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
12486 arg2
= static_cast< int >(val2
);
12487 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
12488 if (!SWIG_IsOK(res3
)) {
12489 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "wxBitmap const &""'");
12492 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "wxBitmap const &""'");
12494 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
12496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12497 (arg1
)->AddButton(arg2
,(wxBitmap
const &)*arg3
);
12498 wxPyEndAllowThreads(__tstate
);
12499 if (PyErr_Occurred()) SWIG_fail
;
12501 resultobj
= SWIG_Py_Void();
12508 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12510 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12511 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
12512 return SWIG_Py_Void();
12515 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12516 return SWIG_Python_InitShadowInstance(args
);
12519 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12520 PyObject
*resultobj
= 0;
12521 wxWindow
*arg1
= (wxWindow
*) 0 ;
12522 int arg2
= (int) wxID_ANY
;
12523 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12524 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12525 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12526 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12527 long arg5
= (long) 0 ;
12528 wxAuiTabCtrl
*result
= 0 ;
12537 PyObject
* obj0
= 0 ;
12538 PyObject
* obj1
= 0 ;
12539 PyObject
* obj2
= 0 ;
12540 PyObject
* obj3
= 0 ;
12541 PyObject
* obj4
= 0 ;
12542 char * kwnames
[] = {
12543 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
12546 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
12547 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12548 if (!SWIG_IsOK(res1
)) {
12549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
12551 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12553 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12554 if (!SWIG_IsOK(ecode2
)) {
12555 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
12557 arg2
= static_cast< int >(val2
);
12562 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12568 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12572 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
12573 if (!SWIG_IsOK(ecode5
)) {
12574 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
12576 arg5
= static_cast< long >(val5
);
12579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12580 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
12581 wxPyEndAllowThreads(__tstate
);
12582 if (PyErr_Occurred()) SWIG_fail
;
12584 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
12591 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12593 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12594 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
12595 return SWIG_Py_Void();
12598 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12599 return SWIG_Python_InitShadowInstance(args
);
12602 SWIGINTERN PyObject
*_wrap_new_PreAuiMultiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12603 PyObject
*resultobj
= 0;
12604 wxAuiMultiNotebook
*result
= 0 ;
12606 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMultiNotebook",0,0,0)) SWIG_fail
;
12608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12609 result
= (wxAuiMultiNotebook
*)new wxAuiMultiNotebook();
12610 wxPyEndAllowThreads(__tstate
);
12611 if (PyErr_Occurred()) SWIG_fail
;
12613 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_POINTER_OWN
| 0 );
12620 SWIGINTERN PyObject
*_wrap_new_AuiMultiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12621 PyObject
*resultobj
= 0;
12622 wxWindow
*arg1
= (wxWindow
*) 0 ;
12623 int arg2
= (int) wxID_ANY
;
12624 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12625 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12626 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12627 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12628 long arg5
= (long) 0 ;
12629 wxAuiMultiNotebook
*result
= 0 ;
12638 PyObject
* obj0
= 0 ;
12639 PyObject
* obj1
= 0 ;
12640 PyObject
* obj2
= 0 ;
12641 PyObject
* obj3
= 0 ;
12642 PyObject
* obj4
= 0 ;
12643 char * kwnames
[] = {
12644 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
12647 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiMultiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
12648 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12649 if (!SWIG_IsOK(res1
)) {
12650 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMultiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
12652 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12654 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12655 if (!SWIG_IsOK(ecode2
)) {
12656 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMultiNotebook" "', expected argument " "2"" of type '" "int""'");
12658 arg2
= static_cast< int >(val2
);
12663 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12669 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12673 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
12674 if (!SWIG_IsOK(ecode5
)) {
12675 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiMultiNotebook" "', expected argument " "5"" of type '" "long""'");
12677 arg5
= static_cast< long >(val5
);
12680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12681 result
= (wxAuiMultiNotebook
*)new wxAuiMultiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
12682 wxPyEndAllowThreads(__tstate
);
12683 if (PyErr_Occurred()) SWIG_fail
;
12685 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_POINTER_NEW
| 0 );
12692 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12693 PyObject
*resultobj
= 0;
12694 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
12695 wxWindow
*arg2
= (wxWindow
*) 0 ;
12696 int arg3
= (int) wxID_ANY
;
12697 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12698 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12699 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12700 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12701 long arg6
= (long) 0 ;
12713 PyObject
* obj0
= 0 ;
12714 PyObject
* obj1
= 0 ;
12715 PyObject
* obj2
= 0 ;
12716 PyObject
* obj3
= 0 ;
12717 PyObject
* obj4
= 0 ;
12718 PyObject
* obj5
= 0 ;
12719 char * kwnames
[] = {
12720 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
12723 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiMultiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
12724 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
12725 if (!SWIG_IsOK(res1
)) {
12726 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
12728 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(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 '" "AuiMultiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
12733 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12735 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
12736 if (!SWIG_IsOK(ecode3
)) {
12737 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
12739 arg3
= static_cast< int >(val3
);
12744 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12750 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12754 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
12755 if (!SWIG_IsOK(ecode6
)) {
12756 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
12758 arg6
= static_cast< long >(val6
);
12761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12762 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
12763 wxPyEndAllowThreads(__tstate
);
12764 if (PyErr_Occurred()) SWIG_fail
;
12767 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12775 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12776 PyObject
*resultobj
= 0;
12777 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
12778 wxWindow
*arg2
= (wxWindow
*) 0 ;
12779 wxString
*arg3
= 0 ;
12780 bool arg4
= (bool) false ;
12781 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
12782 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
12788 bool temp3
= false ;
12793 PyObject
* obj0
= 0 ;
12794 PyObject
* obj1
= 0 ;
12795 PyObject
* obj2
= 0 ;
12796 PyObject
* obj3
= 0 ;
12797 PyObject
* obj4
= 0 ;
12798 char * kwnames
[] = {
12799 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
12802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiMultiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
12803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
12804 if (!SWIG_IsOK(res1
)) {
12805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
12807 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
12808 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12809 if (!SWIG_IsOK(res2
)) {
12810 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
12812 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12814 arg3
= wxString_in_helper(obj2
);
12815 if (arg3
== NULL
) SWIG_fail
;
12819 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
12820 if (!SWIG_IsOK(ecode4
)) {
12821 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
12823 arg4
= static_cast< bool >(val4
);
12826 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
12827 if (!SWIG_IsOK(res5
)) {
12828 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
12831 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
12833 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
12836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12837 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
12838 wxPyEndAllowThreads(__tstate
);
12839 if (PyErr_Occurred()) SWIG_fail
;
12842 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12858 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12859 PyObject
*resultobj
= 0;
12860 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
12862 wxWindow
*arg3
= (wxWindow
*) 0 ;
12863 wxString
*arg4
= 0 ;
12864 bool arg5
= (bool) false ;
12865 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
12866 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
12874 bool temp4
= false ;
12879 PyObject
* obj0
= 0 ;
12880 PyObject
* obj1
= 0 ;
12881 PyObject
* obj2
= 0 ;
12882 PyObject
* obj3
= 0 ;
12883 PyObject
* obj4
= 0 ;
12884 PyObject
* obj5
= 0 ;
12885 char * kwnames
[] = {
12886 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
12889 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiMultiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
12890 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
12891 if (!SWIG_IsOK(res1
)) {
12892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
12894 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
12895 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
12896 if (!SWIG_IsOK(ecode2
)) {
12897 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
12899 arg2
= static_cast< size_t >(val2
);
12900 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12901 if (!SWIG_IsOK(res3
)) {
12902 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
12904 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12906 arg4
= wxString_in_helper(obj3
);
12907 if (arg4
== NULL
) SWIG_fail
;
12911 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
12912 if (!SWIG_IsOK(ecode5
)) {
12913 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
12915 arg5
= static_cast< bool >(val5
);
12918 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
12919 if (!SWIG_IsOK(res6
)) {
12920 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
12923 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
12925 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
12928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12929 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
12930 wxPyEndAllowThreads(__tstate
);
12931 if (PyErr_Occurred()) SWIG_fail
;
12934 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12950 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12951 PyObject
*resultobj
= 0;
12952 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
12959 PyObject
* obj0
= 0 ;
12960 PyObject
* obj1
= 0 ;
12961 char * kwnames
[] = {
12962 (char *) "self",(char *) "page", NULL
12965 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12966 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
12967 if (!SWIG_IsOK(res1
)) {
12968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
12970 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
12971 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
12972 if (!SWIG_IsOK(ecode2
)) {
12973 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
12975 arg2
= static_cast< size_t >(val2
);
12977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12978 result
= (bool)(arg1
)->DeletePage(arg2
);
12979 wxPyEndAllowThreads(__tstate
);
12980 if (PyErr_Occurred()) SWIG_fail
;
12983 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12991 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12992 PyObject
*resultobj
= 0;
12993 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13000 PyObject
* obj0
= 0 ;
13001 PyObject
* obj1
= 0 ;
13002 char * kwnames
[] = {
13003 (char *) "self",(char *) "page", NULL
13006 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13007 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13008 if (!SWIG_IsOK(res1
)) {
13009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
13011 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13012 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13013 if (!SWIG_IsOK(ecode2
)) {
13014 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
13016 arg2
= static_cast< size_t >(val2
);
13018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13019 result
= (bool)(arg1
)->RemovePage(arg2
);
13020 wxPyEndAllowThreads(__tstate
);
13021 if (PyErr_Occurred()) SWIG_fail
;
13024 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13032 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13033 PyObject
*resultobj
= 0;
13034 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13036 wxString
*arg3
= 0 ;
13042 bool temp3
= false ;
13043 PyObject
* obj0
= 0 ;
13044 PyObject
* obj1
= 0 ;
13045 PyObject
* obj2
= 0 ;
13046 char * kwnames
[] = {
13047 (char *) "self",(char *) "page",(char *) "text", NULL
13050 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiMultiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13051 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13052 if (!SWIG_IsOK(res1
)) {
13053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
13055 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13056 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13057 if (!SWIG_IsOK(ecode2
)) {
13058 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
13060 arg2
= static_cast< size_t >(val2
);
13062 arg3
= wxString_in_helper(obj2
);
13063 if (arg3
== NULL
) SWIG_fail
;
13067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13068 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
13069 wxPyEndAllowThreads(__tstate
);
13070 if (PyErr_Occurred()) SWIG_fail
;
13073 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13089 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13090 PyObject
*resultobj
= 0;
13091 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13098 PyObject
* obj0
= 0 ;
13099 PyObject
* obj1
= 0 ;
13100 char * kwnames
[] = {
13101 (char *) "self",(char *) "new_page", NULL
13104 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13105 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13106 if (!SWIG_IsOK(res1
)) {
13107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
13109 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13110 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13111 if (!SWIG_IsOK(ecode2
)) {
13112 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
13114 arg2
= static_cast< size_t >(val2
);
13116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13117 result
= (size_t)(arg1
)->SetSelection(arg2
);
13118 wxPyEndAllowThreads(__tstate
);
13119 if (PyErr_Occurred()) SWIG_fail
;
13121 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13128 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13129 PyObject
*resultobj
= 0;
13130 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13134 PyObject
*swig_obj
[1] ;
13136 if (!args
) SWIG_fail
;
13137 swig_obj
[0] = args
;
13138 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13139 if (!SWIG_IsOK(res1
)) {
13140 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
13142 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13145 result
= (int)((wxAuiMultiNotebook
const *)arg1
)->GetSelection();
13146 wxPyEndAllowThreads(__tstate
);
13147 if (PyErr_Occurred()) SWIG_fail
;
13149 resultobj
= SWIG_From_int(static_cast< int >(result
));
13156 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13157 PyObject
*resultobj
= 0;
13158 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13162 PyObject
*swig_obj
[1] ;
13164 if (!args
) SWIG_fail
;
13165 swig_obj
[0] = args
;
13166 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13167 if (!SWIG_IsOK(res1
)) {
13168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
13170 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13173 result
= (size_t)((wxAuiMultiNotebook
const *)arg1
)->GetPageCount();
13174 wxPyEndAllowThreads(__tstate
);
13175 if (PyErr_Occurred()) SWIG_fail
;
13177 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13184 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13185 PyObject
*resultobj
= 0;
13186 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13188 wxWindow
*result
= 0 ;
13193 PyObject
* obj0
= 0 ;
13194 PyObject
* obj1
= 0 ;
13195 char * kwnames
[] = {
13196 (char *) "self",(char *) "page_idx", NULL
13199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13201 if (!SWIG_IsOK(res1
)) {
13202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
13204 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13205 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13206 if (!SWIG_IsOK(ecode2
)) {
13207 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
13209 arg2
= static_cast< size_t >(val2
);
13211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13212 result
= (wxWindow
*)((wxAuiMultiNotebook
const *)arg1
)->GetPage(arg2
);
13213 wxPyEndAllowThreads(__tstate
);
13214 if (PyErr_Occurred()) SWIG_fail
;
13217 resultobj
= wxPyMake_wxObject(result
, 0);
13225 SWIGINTERN PyObject
*AuiMultiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13227 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13228 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_NewClientData(obj
));
13229 return SWIG_Py_Void();
13232 SWIGINTERN PyObject
*AuiMultiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13233 return SWIG_Python_InitShadowInstance(args
);
13236 SWIGINTERN PyObject
*PyDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13238 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13239 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDockArt
, SWIG_NewClientData(obj
));
13240 return SWIG_Py_Void();
13243 static PyMethodDef SwigMethods
[] = {
13244 { (char *)"new_PaneInfo", (PyCFunction
)_wrap_new_PaneInfo
, METH_NOARGS
, NULL
},
13245 { (char *)"delete_PaneInfo", (PyCFunction
)_wrap_delete_PaneInfo
, METH_O
, NULL
},
13246 { (char *)"PaneInfo_SafeSet", (PyCFunction
) _wrap_PaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13247 { (char *)"PaneInfo_IsOk", (PyCFunction
)_wrap_PaneInfo_IsOk
, METH_O
, NULL
},
13248 { (char *)"PaneInfo_IsFixed", (PyCFunction
)_wrap_PaneInfo_IsFixed
, METH_O
, NULL
},
13249 { (char *)"PaneInfo_IsResizable", (PyCFunction
)_wrap_PaneInfo_IsResizable
, METH_O
, NULL
},
13250 { (char *)"PaneInfo_IsShown", (PyCFunction
)_wrap_PaneInfo_IsShown
, METH_O
, NULL
},
13251 { (char *)"PaneInfo_IsFloating", (PyCFunction
)_wrap_PaneInfo_IsFloating
, METH_O
, NULL
},
13252 { (char *)"PaneInfo_IsDocked", (PyCFunction
)_wrap_PaneInfo_IsDocked
, METH_O
, NULL
},
13253 { (char *)"PaneInfo_IsToolbar", (PyCFunction
)_wrap_PaneInfo_IsToolbar
, METH_O
, NULL
},
13254 { (char *)"PaneInfo_IsTopDockable", (PyCFunction
)_wrap_PaneInfo_IsTopDockable
, METH_O
, NULL
},
13255 { (char *)"PaneInfo_IsBottomDockable", (PyCFunction
)_wrap_PaneInfo_IsBottomDockable
, METH_O
, NULL
},
13256 { (char *)"PaneInfo_IsLeftDockable", (PyCFunction
)_wrap_PaneInfo_IsLeftDockable
, METH_O
, NULL
},
13257 { (char *)"PaneInfo_IsRightDockable", (PyCFunction
)_wrap_PaneInfo_IsRightDockable
, METH_O
, NULL
},
13258 { (char *)"PaneInfo_IsFloatable", (PyCFunction
)_wrap_PaneInfo_IsFloatable
, METH_O
, NULL
},
13259 { (char *)"PaneInfo_IsMovable", (PyCFunction
)_wrap_PaneInfo_IsMovable
, METH_O
, NULL
},
13260 { (char *)"PaneInfo_HasCaption", (PyCFunction
)_wrap_PaneInfo_HasCaption
, METH_O
, NULL
},
13261 { (char *)"PaneInfo_HasGripper", (PyCFunction
)_wrap_PaneInfo_HasGripper
, METH_O
, NULL
},
13262 { (char *)"PaneInfo_HasBorder", (PyCFunction
)_wrap_PaneInfo_HasBorder
, METH_O
, NULL
},
13263 { (char *)"PaneInfo_HasCloseButton", (PyCFunction
)_wrap_PaneInfo_HasCloseButton
, METH_O
, NULL
},
13264 { (char *)"PaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_PaneInfo_HasMaximizeButton
, METH_O
, NULL
},
13265 { (char *)"PaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_PaneInfo_HasMinimizeButton
, METH_O
, NULL
},
13266 { (char *)"PaneInfo_HasPinButton", (PyCFunction
)_wrap_PaneInfo_HasPinButton
, METH_O
, NULL
},
13267 { (char *)"PaneInfo_HasGripperTop", (PyCFunction
)_wrap_PaneInfo_HasGripperTop
, METH_O
, NULL
},
13268 { (char *)"PaneInfo_Window", (PyCFunction
) _wrap_PaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13269 { (char *)"PaneInfo_Name", (PyCFunction
) _wrap_PaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13270 { (char *)"PaneInfo_Caption", (PyCFunction
) _wrap_PaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13271 { (char *)"PaneInfo_Left", (PyCFunction
)_wrap_PaneInfo_Left
, METH_O
, NULL
},
13272 { (char *)"PaneInfo_Right", (PyCFunction
)_wrap_PaneInfo_Right
, METH_O
, NULL
},
13273 { (char *)"PaneInfo_Top", (PyCFunction
)_wrap_PaneInfo_Top
, METH_O
, NULL
},
13274 { (char *)"PaneInfo_Bottom", (PyCFunction
)_wrap_PaneInfo_Bottom
, METH_O
, NULL
},
13275 { (char *)"PaneInfo_Center", (PyCFunction
)_wrap_PaneInfo_Center
, METH_O
, NULL
},
13276 { (char *)"PaneInfo_Centre", (PyCFunction
)_wrap_PaneInfo_Centre
, METH_O
, NULL
},
13277 { (char *)"PaneInfo_Direction", (PyCFunction
) _wrap_PaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13278 { (char *)"PaneInfo_Layer", (PyCFunction
) _wrap_PaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13279 { (char *)"PaneInfo_Row", (PyCFunction
) _wrap_PaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13280 { (char *)"PaneInfo_Position", (PyCFunction
) _wrap_PaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13281 { (char *)"PaneInfo_BestSize", (PyCFunction
) _wrap_PaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13282 { (char *)"PaneInfo_MinSize", (PyCFunction
) _wrap_PaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13283 { (char *)"PaneInfo_MaxSize", (PyCFunction
) _wrap_PaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13284 { (char *)"PaneInfo_FloatingPosition", (PyCFunction
) _wrap_PaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13285 { (char *)"PaneInfo_FloatingSize", (PyCFunction
) _wrap_PaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13286 { (char *)"PaneInfo_Fixed", (PyCFunction
)_wrap_PaneInfo_Fixed
, METH_O
, NULL
},
13287 { (char *)"PaneInfo_Resizable", (PyCFunction
) _wrap_PaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13288 { (char *)"PaneInfo_Dock", (PyCFunction
)_wrap_PaneInfo_Dock
, METH_O
, NULL
},
13289 { (char *)"PaneInfo_Float", (PyCFunction
)_wrap_PaneInfo_Float
, METH_O
, NULL
},
13290 { (char *)"PaneInfo_Hide", (PyCFunction
)_wrap_PaneInfo_Hide
, METH_O
, NULL
},
13291 { (char *)"PaneInfo_Show", (PyCFunction
) _wrap_PaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13292 { (char *)"PaneInfo_CaptionVisible", (PyCFunction
) _wrap_PaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13293 { (char *)"PaneInfo_PaneBorder", (PyCFunction
) _wrap_PaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13294 { (char *)"PaneInfo_Gripper", (PyCFunction
) _wrap_PaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13295 { (char *)"PaneInfo_GripperTop", (PyCFunction
) _wrap_PaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13296 { (char *)"PaneInfo_CloseButton", (PyCFunction
) _wrap_PaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13297 { (char *)"PaneInfo_MaximizeButton", (PyCFunction
) _wrap_PaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13298 { (char *)"PaneInfo_MinimizeButton", (PyCFunction
) _wrap_PaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13299 { (char *)"PaneInfo_PinButton", (PyCFunction
) _wrap_PaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13300 { (char *)"PaneInfo_DestroyOnClose", (PyCFunction
) _wrap_PaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13301 { (char *)"PaneInfo_TopDockable", (PyCFunction
) _wrap_PaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13302 { (char *)"PaneInfo_BottomDockable", (PyCFunction
) _wrap_PaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13303 { (char *)"PaneInfo_LeftDockable", (PyCFunction
) _wrap_PaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13304 { (char *)"PaneInfo_RightDockable", (PyCFunction
) _wrap_PaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13305 { (char *)"PaneInfo_Floatable", (PyCFunction
) _wrap_PaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13306 { (char *)"PaneInfo_Movable", (PyCFunction
) _wrap_PaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13307 { (char *)"PaneInfo_Dockable", (PyCFunction
) _wrap_PaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13308 { (char *)"PaneInfo_DefaultPane", (PyCFunction
)_wrap_PaneInfo_DefaultPane
, METH_O
, NULL
},
13309 { (char *)"PaneInfo_CentrePane", (PyCFunction
)_wrap_PaneInfo_CentrePane
, METH_O
, NULL
},
13310 { (char *)"PaneInfo_CenterPane", (PyCFunction
)_wrap_PaneInfo_CenterPane
, METH_O
, NULL
},
13311 { (char *)"PaneInfo_ToolbarPane", (PyCFunction
)_wrap_PaneInfo_ToolbarPane
, METH_O
, NULL
},
13312 { (char *)"PaneInfo_SetFlag", (PyCFunction
) _wrap_PaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13313 { (char *)"PaneInfo_HasFlag", (PyCFunction
) _wrap_PaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13314 { (char *)"PaneInfo_name_set", _wrap_PaneInfo_name_set
, METH_VARARGS
, NULL
},
13315 { (char *)"PaneInfo_name_get", (PyCFunction
)_wrap_PaneInfo_name_get
, METH_O
, NULL
},
13316 { (char *)"PaneInfo_caption_set", _wrap_PaneInfo_caption_set
, METH_VARARGS
, NULL
},
13317 { (char *)"PaneInfo_caption_get", (PyCFunction
)_wrap_PaneInfo_caption_get
, METH_O
, NULL
},
13318 { (char *)"PaneInfo_window_set", _wrap_PaneInfo_window_set
, METH_VARARGS
, NULL
},
13319 { (char *)"PaneInfo_window_get", (PyCFunction
)_wrap_PaneInfo_window_get
, METH_O
, NULL
},
13320 { (char *)"PaneInfo_frame_set", _wrap_PaneInfo_frame_set
, METH_VARARGS
, NULL
},
13321 { (char *)"PaneInfo_frame_get", (PyCFunction
)_wrap_PaneInfo_frame_get
, METH_O
, NULL
},
13322 { (char *)"PaneInfo_state_set", _wrap_PaneInfo_state_set
, METH_VARARGS
, NULL
},
13323 { (char *)"PaneInfo_state_get", (PyCFunction
)_wrap_PaneInfo_state_get
, METH_O
, NULL
},
13324 { (char *)"PaneInfo_dock_direction_set", _wrap_PaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
13325 { (char *)"PaneInfo_dock_direction_get", (PyCFunction
)_wrap_PaneInfo_dock_direction_get
, METH_O
, NULL
},
13326 { (char *)"PaneInfo_dock_layer_set", _wrap_PaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
13327 { (char *)"PaneInfo_dock_layer_get", (PyCFunction
)_wrap_PaneInfo_dock_layer_get
, METH_O
, NULL
},
13328 { (char *)"PaneInfo_dock_row_set", _wrap_PaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
13329 { (char *)"PaneInfo_dock_row_get", (PyCFunction
)_wrap_PaneInfo_dock_row_get
, METH_O
, NULL
},
13330 { (char *)"PaneInfo_dock_pos_set", _wrap_PaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
13331 { (char *)"PaneInfo_dock_pos_get", (PyCFunction
)_wrap_PaneInfo_dock_pos_get
, METH_O
, NULL
},
13332 { (char *)"PaneInfo_best_size_set", _wrap_PaneInfo_best_size_set
, METH_VARARGS
, NULL
},
13333 { (char *)"PaneInfo_best_size_get", (PyCFunction
)_wrap_PaneInfo_best_size_get
, METH_O
, NULL
},
13334 { (char *)"PaneInfo_min_size_set", _wrap_PaneInfo_min_size_set
, METH_VARARGS
, NULL
},
13335 { (char *)"PaneInfo_min_size_get", (PyCFunction
)_wrap_PaneInfo_min_size_get
, METH_O
, NULL
},
13336 { (char *)"PaneInfo_max_size_set", _wrap_PaneInfo_max_size_set
, METH_VARARGS
, NULL
},
13337 { (char *)"PaneInfo_max_size_get", (PyCFunction
)_wrap_PaneInfo_max_size_get
, METH_O
, NULL
},
13338 { (char *)"PaneInfo_floating_pos_set", _wrap_PaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
13339 { (char *)"PaneInfo_floating_pos_get", (PyCFunction
)_wrap_PaneInfo_floating_pos_get
, METH_O
, NULL
},
13340 { (char *)"PaneInfo_floating_size_set", _wrap_PaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
13341 { (char *)"PaneInfo_floating_size_get", (PyCFunction
)_wrap_PaneInfo_floating_size_get
, METH_O
, NULL
},
13342 { (char *)"PaneInfo_dock_proportion_set", _wrap_PaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
13343 { (char *)"PaneInfo_dock_proportion_get", (PyCFunction
)_wrap_PaneInfo_dock_proportion_get
, METH_O
, NULL
},
13344 { (char *)"PaneInfo_buttons_set", _wrap_PaneInfo_buttons_set
, METH_VARARGS
, NULL
},
13345 { (char *)"PaneInfo_buttons_get", (PyCFunction
)_wrap_PaneInfo_buttons_get
, METH_O
, NULL
},
13346 { (char *)"PaneInfo_rect_set", _wrap_PaneInfo_rect_set
, METH_VARARGS
, NULL
},
13347 { (char *)"PaneInfo_rect_get", (PyCFunction
)_wrap_PaneInfo_rect_get
, METH_O
, NULL
},
13348 { (char *)"PaneInfo_swigregister", PaneInfo_swigregister
, METH_VARARGS
, NULL
},
13349 { (char *)"PaneInfo_swiginit", PaneInfo_swiginit
, METH_VARARGS
, NULL
},
13350 { (char *)"new_FrameManager", (PyCFunction
) _wrap_new_FrameManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13351 { (char *)"delete_FrameManager", (PyCFunction
)_wrap_delete_FrameManager
, METH_O
, NULL
},
13352 { (char *)"FrameManager_UnInit", (PyCFunction
)_wrap_FrameManager_UnInit
, METH_O
, NULL
},
13353 { (char *)"FrameManager_SetFlags", (PyCFunction
) _wrap_FrameManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13354 { (char *)"FrameManager_GetFlags", (PyCFunction
)_wrap_FrameManager_GetFlags
, METH_O
, NULL
},
13355 { (char *)"FrameManager_SetManagedWindow", (PyCFunction
) _wrap_FrameManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13356 { (char *)"FrameManager_GetManagedWindow", (PyCFunction
)_wrap_FrameManager_GetManagedWindow
, METH_O
, NULL
},
13357 { (char *)"FrameManager_SetArtProvider", (PyCFunction
) _wrap_FrameManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13358 { (char *)"FrameManager_GetArtProvider", (PyCFunction
)_wrap_FrameManager_GetArtProvider
, METH_O
, NULL
},
13359 { (char *)"FrameManager__GetPaneByWidget", (PyCFunction
) _wrap_FrameManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13360 { (char *)"FrameManager__GetPaneByName", (PyCFunction
) _wrap_FrameManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13361 { (char *)"FrameManager_GetAllPanes", (PyCFunction
)_wrap_FrameManager_GetAllPanes
, METH_O
, NULL
},
13362 { (char *)"FrameManager__AddPane1", (PyCFunction
) _wrap_FrameManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13363 { (char *)"FrameManager_AddPaneAtPos", (PyCFunction
) _wrap_FrameManager_AddPaneAtPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13364 { (char *)"FrameManager__AddPane2", (PyCFunction
) _wrap_FrameManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13365 { (char *)"FrameManager_InsertPane", (PyCFunction
) _wrap_FrameManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13366 { (char *)"FrameManager_DetachPane", (PyCFunction
) _wrap_FrameManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13367 { (char *)"FrameManager_SavePaneInfo", (PyCFunction
) _wrap_FrameManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13368 { (char *)"FrameManager_LoadPaneInfo", (PyCFunction
) _wrap_FrameManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13369 { (char *)"FrameManager_SavePerspective", (PyCFunction
)_wrap_FrameManager_SavePerspective
, METH_O
, NULL
},
13370 { (char *)"FrameManager_LoadPerspective", (PyCFunction
) _wrap_FrameManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13371 { (char *)"FrameManager_Update", (PyCFunction
)_wrap_FrameManager_Update
, METH_O
, NULL
},
13372 { (char *)"FrameManager_DrawHintRect", (PyCFunction
) _wrap_FrameManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13373 { (char *)"FrameManager_ShowHint", (PyCFunction
) _wrap_FrameManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13374 { (char *)"FrameManager_HideHint", (PyCFunction
)_wrap_FrameManager_HideHint
, METH_O
, NULL
},
13375 { (char *)"FrameManager_OnRender", (PyCFunction
) _wrap_FrameManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13376 { (char *)"FrameManager_OnPaneButton", (PyCFunction
) _wrap_FrameManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13377 { (char *)"FrameManager_swigregister", FrameManager_swigregister
, METH_VARARGS
, NULL
},
13378 { (char *)"FrameManager_swiginit", FrameManager_swiginit
, METH_VARARGS
, NULL
},
13379 { (char *)"new_FrameManagerEvent", (PyCFunction
) _wrap_new_FrameManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13380 { (char *)"FrameManagerEvent_Clone", (PyCFunction
)_wrap_FrameManagerEvent_Clone
, METH_O
, NULL
},
13381 { (char *)"FrameManagerEvent_SetPane", (PyCFunction
) _wrap_FrameManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13382 { (char *)"FrameManagerEvent_SetButton", (PyCFunction
) _wrap_FrameManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13383 { (char *)"FrameManagerEvent_SetDC", (PyCFunction
) _wrap_FrameManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13384 { (char *)"FrameManagerEvent_GetPane", (PyCFunction
)_wrap_FrameManagerEvent_GetPane
, METH_O
, NULL
},
13385 { (char *)"FrameManagerEvent_GetButton", (PyCFunction
)_wrap_FrameManagerEvent_GetButton
, METH_O
, NULL
},
13386 { (char *)"FrameManagerEvent_GetDC", (PyCFunction
)_wrap_FrameManagerEvent_GetDC
, METH_O
, NULL
},
13387 { (char *)"FrameManagerEvent_Veto", (PyCFunction
) _wrap_FrameManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13388 { (char *)"FrameManagerEvent_GetVeto", (PyCFunction
)_wrap_FrameManagerEvent_GetVeto
, METH_O
, NULL
},
13389 { (char *)"FrameManagerEvent_SetCanVeto", (PyCFunction
) _wrap_FrameManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13390 { (char *)"FrameManagerEvent_CanVeto", (PyCFunction
)_wrap_FrameManagerEvent_CanVeto
, METH_O
, NULL
},
13391 { (char *)"FrameManagerEvent_pane_set", _wrap_FrameManagerEvent_pane_set
, METH_VARARGS
, NULL
},
13392 { (char *)"FrameManagerEvent_pane_get", (PyCFunction
)_wrap_FrameManagerEvent_pane_get
, METH_O
, NULL
},
13393 { (char *)"FrameManagerEvent_button_set", _wrap_FrameManagerEvent_button_set
, METH_VARARGS
, NULL
},
13394 { (char *)"FrameManagerEvent_button_get", (PyCFunction
)_wrap_FrameManagerEvent_button_get
, METH_O
, NULL
},
13395 { (char *)"FrameManagerEvent_veto_flag_set", _wrap_FrameManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
13396 { (char *)"FrameManagerEvent_veto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_veto_flag_get
, METH_O
, NULL
},
13397 { (char *)"FrameManagerEvent_canveto_flag_set", _wrap_FrameManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
13398 { (char *)"FrameManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_canveto_flag_get
, METH_O
, NULL
},
13399 { (char *)"FrameManagerEvent_dc_set", _wrap_FrameManagerEvent_dc_set
, METH_VARARGS
, NULL
},
13400 { (char *)"FrameManagerEvent_dc_get", (PyCFunction
)_wrap_FrameManagerEvent_dc_get
, METH_O
, NULL
},
13401 { (char *)"FrameManagerEvent_swigregister", FrameManagerEvent_swigregister
, METH_VARARGS
, NULL
},
13402 { (char *)"FrameManagerEvent_swiginit", FrameManagerEvent_swiginit
, METH_VARARGS
, NULL
},
13403 { (char *)"new_DockInfo", (PyCFunction
)_wrap_new_DockInfo
, METH_NOARGS
, NULL
},
13404 { (char *)"DockInfo_IsOk", (PyCFunction
)_wrap_DockInfo_IsOk
, METH_O
, NULL
},
13405 { (char *)"DockInfo_IsHorizontal", (PyCFunction
)_wrap_DockInfo_IsHorizontal
, METH_O
, NULL
},
13406 { (char *)"DockInfo_IsVertical", (PyCFunction
)_wrap_DockInfo_IsVertical
, METH_O
, NULL
},
13407 { (char *)"DockInfo_panes_set", _wrap_DockInfo_panes_set
, METH_VARARGS
, NULL
},
13408 { (char *)"DockInfo_panes_get", (PyCFunction
)_wrap_DockInfo_panes_get
, METH_O
, NULL
},
13409 { (char *)"DockInfo_rect_set", _wrap_DockInfo_rect_set
, METH_VARARGS
, NULL
},
13410 { (char *)"DockInfo_rect_get", (PyCFunction
)_wrap_DockInfo_rect_get
, METH_O
, NULL
},
13411 { (char *)"DockInfo_dock_direction_set", _wrap_DockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
13412 { (char *)"DockInfo_dock_direction_get", (PyCFunction
)_wrap_DockInfo_dock_direction_get
, METH_O
, NULL
},
13413 { (char *)"DockInfo_dock_layer_set", _wrap_DockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
13414 { (char *)"DockInfo_dock_layer_get", (PyCFunction
)_wrap_DockInfo_dock_layer_get
, METH_O
, NULL
},
13415 { (char *)"DockInfo_dock_row_set", _wrap_DockInfo_dock_row_set
, METH_VARARGS
, NULL
},
13416 { (char *)"DockInfo_dock_row_get", (PyCFunction
)_wrap_DockInfo_dock_row_get
, METH_O
, NULL
},
13417 { (char *)"DockInfo_size_set", _wrap_DockInfo_size_set
, METH_VARARGS
, NULL
},
13418 { (char *)"DockInfo_size_get", (PyCFunction
)_wrap_DockInfo_size_get
, METH_O
, NULL
},
13419 { (char *)"DockInfo_min_size_set", _wrap_DockInfo_min_size_set
, METH_VARARGS
, NULL
},
13420 { (char *)"DockInfo_min_size_get", (PyCFunction
)_wrap_DockInfo_min_size_get
, METH_O
, NULL
},
13421 { (char *)"DockInfo_resizable_set", _wrap_DockInfo_resizable_set
, METH_VARARGS
, NULL
},
13422 { (char *)"DockInfo_resizable_get", (PyCFunction
)_wrap_DockInfo_resizable_get
, METH_O
, NULL
},
13423 { (char *)"DockInfo_toolbar_set", _wrap_DockInfo_toolbar_set
, METH_VARARGS
, NULL
},
13424 { (char *)"DockInfo_toolbar_get", (PyCFunction
)_wrap_DockInfo_toolbar_get
, METH_O
, NULL
},
13425 { (char *)"DockInfo_fixed_set", _wrap_DockInfo_fixed_set
, METH_VARARGS
, NULL
},
13426 { (char *)"DockInfo_fixed_get", (PyCFunction
)_wrap_DockInfo_fixed_get
, METH_O
, NULL
},
13427 { (char *)"delete_DockInfo", (PyCFunction
)_wrap_delete_DockInfo
, METH_O
, NULL
},
13428 { (char *)"DockInfo_swigregister", DockInfo_swigregister
, METH_VARARGS
, NULL
},
13429 { (char *)"DockInfo_swiginit", DockInfo_swiginit
, METH_VARARGS
, NULL
},
13430 { (char *)"DockUIPart_type_set", _wrap_DockUIPart_type_set
, METH_VARARGS
, NULL
},
13431 { (char *)"DockUIPart_type_get", (PyCFunction
)_wrap_DockUIPart_type_get
, METH_O
, NULL
},
13432 { (char *)"DockUIPart_orientation_set", _wrap_DockUIPart_orientation_set
, METH_VARARGS
, NULL
},
13433 { (char *)"DockUIPart_orientation_get", (PyCFunction
)_wrap_DockUIPart_orientation_get
, METH_O
, NULL
},
13434 { (char *)"DockUIPart_dock_set", _wrap_DockUIPart_dock_set
, METH_VARARGS
, NULL
},
13435 { (char *)"DockUIPart_dock_get", (PyCFunction
)_wrap_DockUIPart_dock_get
, METH_O
, NULL
},
13436 { (char *)"DockUIPart_pane_set", _wrap_DockUIPart_pane_set
, METH_VARARGS
, NULL
},
13437 { (char *)"DockUIPart_pane_get", (PyCFunction
)_wrap_DockUIPart_pane_get
, METH_O
, NULL
},
13438 { (char *)"DockUIPart_button_set", _wrap_DockUIPart_button_set
, METH_VARARGS
, NULL
},
13439 { (char *)"DockUIPart_button_get", (PyCFunction
)_wrap_DockUIPart_button_get
, METH_O
, NULL
},
13440 { (char *)"DockUIPart_cont_sizer_set", _wrap_DockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
13441 { (char *)"DockUIPart_cont_sizer_get", (PyCFunction
)_wrap_DockUIPart_cont_sizer_get
, METH_O
, NULL
},
13442 { (char *)"DockUIPart_sizer_item_set", _wrap_DockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
13443 { (char *)"DockUIPart_sizer_item_get", (PyCFunction
)_wrap_DockUIPart_sizer_item_get
, METH_O
, NULL
},
13444 { (char *)"DockUIPart_rect_set", _wrap_DockUIPart_rect_set
, METH_VARARGS
, NULL
},
13445 { (char *)"DockUIPart_rect_get", (PyCFunction
)_wrap_DockUIPart_rect_get
, METH_O
, NULL
},
13446 { (char *)"new_DockUIPart", (PyCFunction
)_wrap_new_DockUIPart
, METH_NOARGS
, NULL
},
13447 { (char *)"delete_DockUIPart", (PyCFunction
)_wrap_delete_DockUIPart
, METH_O
, NULL
},
13448 { (char *)"DockUIPart_swigregister", DockUIPart_swigregister
, METH_VARARGS
, NULL
},
13449 { (char *)"DockUIPart_swiginit", DockUIPart_swiginit
, METH_VARARGS
, NULL
},
13450 { (char *)"PaneButton_button_id_set", _wrap_PaneButton_button_id_set
, METH_VARARGS
, NULL
},
13451 { (char *)"PaneButton_button_id_get", (PyCFunction
)_wrap_PaneButton_button_id_get
, METH_O
, NULL
},
13452 { (char *)"new_PaneButton", (PyCFunction
)_wrap_new_PaneButton
, METH_NOARGS
, NULL
},
13453 { (char *)"delete_PaneButton", (PyCFunction
)_wrap_delete_PaneButton
, METH_O
, NULL
},
13454 { (char *)"PaneButton_swigregister", PaneButton_swigregister
, METH_VARARGS
, NULL
},
13455 { (char *)"PaneButton_swiginit", PaneButton_swiginit
, METH_VARARGS
, NULL
},
13456 { (char *)"delete_DockArt", (PyCFunction
)_wrap_delete_DockArt
, METH_O
, NULL
},
13457 { (char *)"DockArt_GetMetric", (PyCFunction
) _wrap_DockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13458 { (char *)"DockArt_SetMetric", (PyCFunction
) _wrap_DockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13459 { (char *)"DockArt_SetFont", (PyCFunction
) _wrap_DockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13460 { (char *)"DockArt_GetFont", (PyCFunction
) _wrap_DockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13461 { (char *)"DockArt_GetColour", (PyCFunction
) _wrap_DockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13462 { (char *)"DockArt_SetColour", (PyCFunction
) _wrap_DockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13463 { (char *)"DockArt_GetColor", (PyCFunction
) _wrap_DockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13464 { (char *)"DockArt_SetColor", (PyCFunction
) _wrap_DockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13465 { (char *)"DockArt_DrawSash", (PyCFunction
) _wrap_DockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13466 { (char *)"DockArt_DrawBackground", (PyCFunction
) _wrap_DockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13467 { (char *)"DockArt_DrawCaption", (PyCFunction
) _wrap_DockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13468 { (char *)"DockArt_DrawGripper", (PyCFunction
) _wrap_DockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13469 { (char *)"DockArt_DrawBorder", (PyCFunction
) _wrap_DockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13470 { (char *)"DockArt_DrawPaneButton", (PyCFunction
) _wrap_DockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13471 { (char *)"DockArt_swigregister", DockArt_swigregister
, METH_VARARGS
, NULL
},
13472 { (char *)"new_DefaultDockArt", (PyCFunction
)_wrap_new_DefaultDockArt
, METH_NOARGS
, NULL
},
13473 { (char *)"DefaultDockArt_swigregister", DefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
13474 { (char *)"DefaultDockArt_swiginit", DefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
13475 { (char *)"new_FloatingPane", (PyCFunction
) _wrap_new_FloatingPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13476 { (char *)"delete_FloatingPane", (PyCFunction
)_wrap_delete_FloatingPane
, METH_O
, NULL
},
13477 { (char *)"FloatingPane_SetPaneWindow", (PyCFunction
) _wrap_FloatingPane_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13478 { (char *)"FloatingPane_swigregister", FloatingPane_swigregister
, METH_VARARGS
, NULL
},
13479 { (char *)"FloatingPane_swiginit", FloatingPane_swiginit
, METH_VARARGS
, NULL
},
13480 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13481 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13482 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13483 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
13484 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
13485 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
13486 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
13487 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
13488 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
13489 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
13490 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
13491 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
13492 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
13493 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
13494 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
13495 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
13496 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
13497 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
13498 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
13499 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
13500 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
13501 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
13502 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
13503 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
13504 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
13505 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
13506 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
13507 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
13508 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
13509 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
13510 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
13511 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
13512 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
13513 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13514 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13515 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13516 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
13517 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
13518 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
13519 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13520 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13521 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13522 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13523 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
13524 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13525 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
13526 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13527 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13528 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13529 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
13530 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13531 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13532 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
13533 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
13534 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13535 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
13536 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
13537 { (char *)"new_PreAuiMultiNotebook", (PyCFunction
)_wrap_new_PreAuiMultiNotebook
, METH_NOARGS
, NULL
},
13538 { (char *)"new_AuiMultiNotebook", (PyCFunction
) _wrap_new_AuiMultiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13539 { (char *)"AuiMultiNotebook_Create", (PyCFunction
) _wrap_AuiMultiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13540 { (char *)"AuiMultiNotebook_AddPage", (PyCFunction
) _wrap_AuiMultiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13541 { (char *)"AuiMultiNotebook_InsertPage", (PyCFunction
) _wrap_AuiMultiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13542 { (char *)"AuiMultiNotebook_DeletePage", (PyCFunction
) _wrap_AuiMultiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13543 { (char *)"AuiMultiNotebook_RemovePage", (PyCFunction
) _wrap_AuiMultiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13544 { (char *)"AuiMultiNotebook_SetPageText", (PyCFunction
) _wrap_AuiMultiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13545 { (char *)"AuiMultiNotebook_SetSelection", (PyCFunction
) _wrap_AuiMultiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13546 { (char *)"AuiMultiNotebook_GetSelection", (PyCFunction
)_wrap_AuiMultiNotebook_GetSelection
, METH_O
, NULL
},
13547 { (char *)"AuiMultiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiMultiNotebook_GetPageCount
, METH_O
, NULL
},
13548 { (char *)"AuiMultiNotebook_GetPage", (PyCFunction
) _wrap_AuiMultiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
13549 { (char *)"AuiMultiNotebook_swigregister", AuiMultiNotebook_swigregister
, METH_VARARGS
, NULL
},
13550 { (char *)"AuiMultiNotebook_swiginit", AuiMultiNotebook_swiginit
, METH_VARARGS
, NULL
},
13551 { (char *)"PyDockArt_swigregister", PyDockArt_swigregister
, METH_VARARGS
, NULL
},
13552 { NULL
, NULL
, 0, NULL
}
13556 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13558 static void *_p_wxFloatingPaneTo_p_wxMiniFrame(void *x
) {
13559 return (void *)((wxMiniFrame
*) ((wxFloatingPane
*) x
));
13561 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
13562 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
13564 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
13565 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
13567 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
13568 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
13570 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
13571 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
13573 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
13574 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
13576 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
13577 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
13579 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
13580 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
13582 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
13583 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
13585 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
13586 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
13588 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
13589 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
13591 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
13592 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
13594 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
13595 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
13597 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
13598 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
13600 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
13601 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
13603 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
13604 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
13606 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
13607 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
13609 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
13610 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
13612 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
13613 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
13615 static void *_p_wxFloatingPaneTo_p_wxTopLevelWindow(void *x
) {
13616 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
13618 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
13619 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
13621 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
13622 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
13624 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
13625 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
13627 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
13628 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
13630 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
13631 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
13633 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
13634 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
13636 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
13637 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
13639 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
13640 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
13642 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
13643 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
13645 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
13646 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
13648 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
13649 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
13651 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
13652 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
13654 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
13655 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
13657 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
13658 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
13660 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
13661 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
13663 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
13664 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
13666 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
13667 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
13669 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
13670 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
13672 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
13673 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
13675 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
13676 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
13678 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
13679 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
13681 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
13682 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
13684 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
13685 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
13687 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
13688 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
13690 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
13691 return (void *)((wxWindow
*) ((wxPanel
*) x
));
13693 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
13694 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
13696 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
13697 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
13699 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
13700 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
13702 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
13703 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
13705 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
13706 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
13708 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
13709 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
13711 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
13712 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
13714 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
13715 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
13717 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
13718 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
13720 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
13721 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
13723 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
13724 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
13726 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
13727 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
13729 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
13730 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
13732 static void *_p_wxControlTo_p_wxWindow(void *x
) {
13733 return (void *)((wxWindow
*) ((wxControl
*) x
));
13735 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
13736 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
13738 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
13739 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
13741 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
13742 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
13744 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
13745 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
13747 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
13748 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
13750 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
13751 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
13753 static void *_p_wxFloatingPaneTo_p_wxWindow(void *x
) {
13754 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
13756 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
13757 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
13759 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
13760 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
13762 static void *_p_wxAuiMultiNotebookTo_p_wxWindow(void *x
) {
13763 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiMultiNotebook
*) x
));
13765 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
13766 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
13768 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
13769 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
13771 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
13772 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
13774 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
13775 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
13777 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
13778 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
13780 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
13781 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
13783 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
13784 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
13786 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
13787 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
13789 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
13790 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
13792 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
13793 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
13795 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
13796 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
13798 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
13799 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
13801 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
13802 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
13804 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
13805 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
13807 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
13808 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
13810 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
13811 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
13813 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
13814 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
13816 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
13817 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
13819 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
13820 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
13822 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
13823 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
13825 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
13826 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
13828 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
13829 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
13831 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
13832 return (void *)((wxWindow
**) ((wxPanel
**) x
));
13834 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
13835 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
13837 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
13838 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
13840 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
13841 return (void *)((wxWindow
**) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
**) x
));
13843 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
13844 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
13846 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
13847 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
13849 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
13850 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
13852 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
13853 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
13855 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
13856 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
13858 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
13859 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
13861 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
13862 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
13864 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
13865 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
13867 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
13868 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
13870 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
13871 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
13873 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
13874 return (void *)((wxWindow
**) ((wxControl
**) x
));
13876 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
13877 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
13879 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
13880 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
13882 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
13883 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
13885 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
13886 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
13888 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
13889 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
13891 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
13892 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
13894 static void *_p_p_wxFloatingPaneTo_p_p_wxWindow(void *x
) {
13895 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
**) x
));
13897 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
13898 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
13900 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
13901 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
13903 static void *_p_p_wxAuiMultiNotebookTo_p_p_wxWindow(void *x
) {
13904 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiMultiNotebook
**) x
));
13906 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
13907 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
13909 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
13910 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
13912 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
13913 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
13915 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
13916 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
13918 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
13919 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
13921 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
13922 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
13924 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
13925 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
13927 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
13928 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
13930 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
13931 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
13933 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
13934 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
13936 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
13937 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
13939 static void *_p_wxAuiMultiNotebookTo_p_wxControl(void *x
) {
13940 return (void *)((wxControl
*) ((wxAuiMultiNotebook
*) x
));
13942 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
13943 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
13945 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
13946 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
13948 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
13949 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
13951 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
13952 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
13954 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
13955 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
13957 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
13958 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
13960 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
13961 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
13963 static void *_p_wxFrameManagerEventTo_p_wxEvent(void *x
) {
13964 return (void *)((wxEvent
*) ((wxFrameManagerEvent
*) x
));
13966 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
13967 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
13969 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
13970 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
13972 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
13973 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
13975 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
13976 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
13978 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
13979 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
13981 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
13982 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
13984 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
13985 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
13987 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
13988 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
13990 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
13991 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
13993 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
13994 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
13996 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
13997 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
13999 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
14000 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
14002 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
14003 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
14005 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
14006 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
14008 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
14009 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
14011 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
14012 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
14014 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
14015 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
14017 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
14018 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
14020 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
14021 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
14023 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
14024 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
14026 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
14027 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
14029 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
14030 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
14032 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
14033 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
14035 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
14036 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
14038 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
14039 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
14041 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
14042 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
14044 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
14045 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
14047 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
14048 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
14050 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
14051 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
14053 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
14054 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
14056 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
14057 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
14059 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
14060 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
14062 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
14063 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
14065 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
14066 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
14068 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
14069 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
14071 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
14072 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
14074 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
14075 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
14077 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
14078 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
14080 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
14081 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
14083 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
14084 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
14086 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
14087 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
14089 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
14090 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
14092 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
14093 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
14095 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
14096 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
14098 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
14099 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
14101 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
14102 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
14104 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
14105 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
14107 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
14108 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
14110 static void *_p_wxSizerTo_p_wxObject(void *x
) {
14111 return (void *)((wxObject
*) ((wxSizer
*) x
));
14113 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
14114 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
14116 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
14117 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
14119 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
14120 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
14122 static void *_p_wxEventTo_p_wxObject(void *x
) {
14123 return (void *)((wxObject
*) ((wxEvent
*) x
));
14125 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
14126 return (void *)((wxObject
*) ((wxFontData
*) x
));
14128 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
14129 return (void *)((wxObject
*) ((wxPrintData
*) x
));
14131 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
14132 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
14134 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
14135 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
14137 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
14138 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
14140 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
14141 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
14143 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
14144 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
14146 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
14147 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
14149 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
14150 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
14152 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
14153 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
14155 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
14156 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
14158 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
14159 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
14161 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
14162 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
14164 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
14165 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
14167 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
14168 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
14170 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
14171 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
14173 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
14174 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
14176 static void *_p_wxControlTo_p_wxObject(void *x
) {
14177 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
14179 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
14180 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
14182 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
14183 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
14185 static void *_p_wxFrameManagerEventTo_p_wxObject(void *x
) {
14186 return (void *)((wxObject
*) (wxEvent
*) ((wxFrameManagerEvent
*) x
));
14188 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
14189 return (void *)((wxObject
*) ((wxFSFile
*) x
));
14191 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
14192 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
14194 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
14195 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
14197 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
14198 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
14200 static void *_p_wxAuiMultiNotebookTo_p_wxObject(void *x
) {
14201 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiMultiNotebook
*) x
));
14203 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
14204 return (void *)((wxObject
*) ((wxColourData
*) x
));
14206 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
14207 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
14209 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
14210 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
14212 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
14213 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
14215 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
14216 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
14218 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
14219 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
14221 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
14222 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
14224 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
14225 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
14227 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
14228 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
14230 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
14231 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
14233 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
14234 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
14236 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
14237 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
14239 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
14240 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
14242 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
14243 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
14245 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
14246 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
14248 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
14249 return (void *)((wxObject
*) ((wxPrinter
*) x
));
14251 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
14252 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
14254 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
14255 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
14257 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
14258 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
14260 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
14261 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
14263 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
14264 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
14266 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
14267 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
14269 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
14270 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
14272 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
14273 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
14275 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
14276 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
14278 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
14279 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
14281 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
14282 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
14284 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
14285 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
14287 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
14288 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
14290 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
14291 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
14293 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
14294 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
14296 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
14297 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
14299 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
14300 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
14302 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
14303 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
14305 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
14306 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
14308 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
14309 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
14311 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
14312 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
14314 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
14315 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
14317 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
14318 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
14320 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
14321 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
14323 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
14324 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
14326 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
14327 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
14329 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
14330 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
14332 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
14333 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
14335 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
14336 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
14338 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
14339 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
14341 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
14342 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
14344 static void *_p_wxImageTo_p_wxObject(void *x
) {
14345 return (void *)((wxObject
*) ((wxImage
*) x
));
14347 static void *_p_wxFrameTo_p_wxObject(void *x
) {
14348 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
14350 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
14351 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
14353 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
14354 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
14356 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
14357 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
14359 static void *_p_wxFloatingPaneTo_p_wxObject(void *x
) {
14360 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
14362 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
14363 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
14365 static void *_p_wxFrameManagerTo_p_wxObject(void *x
) {
14366 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxFrameManager
*) x
));
14368 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
14369 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
14371 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
14372 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
14374 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
14375 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
14377 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
14378 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
14380 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
14381 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
14383 static void *_p_wxWindowTo_p_wxObject(void *x
) {
14384 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
14386 static void *_p_wxMenuTo_p_wxObject(void *x
) {
14387 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
14389 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
14390 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
14392 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
14393 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
14395 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
14396 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
14398 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
14399 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
14401 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
14402 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
14404 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
14405 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
14407 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
14408 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
14410 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
14411 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
14413 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
14414 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
14416 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
14417 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
14419 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
14420 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
14422 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
14423 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
14425 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
14426 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
14428 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
14429 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
14431 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
14432 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
14434 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
14435 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
14437 static void *_p_wxPanelTo_p_wxObject(void *x
) {
14438 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
14440 static void *_p_wxDialogTo_p_wxObject(void *x
) {
14441 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
14443 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
14444 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
14446 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
14447 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
14449 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
14450 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
14452 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
14453 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
14455 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
14456 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
14458 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
14459 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
14461 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
14462 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
14464 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
14465 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
14467 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
14468 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
14470 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
14471 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
14473 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
14474 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
14476 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
14477 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
14479 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
14480 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
14482 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
14483 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
14485 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
14486 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
14488 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
14489 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
14491 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
14492 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
14494 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
14495 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
14497 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
14498 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
14500 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
14501 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
14503 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
14504 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
14506 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
14507 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
14509 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
14510 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
14512 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
14513 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
14515 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
14516 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
14518 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
14519 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
14521 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
14522 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
14524 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
14525 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
14527 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
14528 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
14530 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
14531 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
14533 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
14534 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
14536 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
14537 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
14539 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
14540 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
14542 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
14543 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
14545 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
14546 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
14548 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
14549 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
14551 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
14552 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
14554 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
14555 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
14557 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
14558 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
14560 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
14561 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
14563 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
14564 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
14566 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
14567 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
14569 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
14570 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
14572 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
14573 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
14575 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
14576 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
14578 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
14579 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
14581 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
14582 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
14584 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
14585 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
14587 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
14588 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
14590 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
14591 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
14593 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
14594 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
14596 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
14597 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
14599 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
14600 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
14602 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
14603 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
14605 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
14606 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
14608 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
14609 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
14611 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
14612 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
14614 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
14615 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
14617 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
14618 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
14620 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
14621 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
14623 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
14624 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
14626 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
14627 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
14629 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
14630 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
14632 static void *_p_wxFloatingPaneTo_p_wxEvtHandler(void *x
) {
14633 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
14635 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
14636 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
14638 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
14639 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
14641 static void *_p_wxAuiMultiNotebookTo_p_wxEvtHandler(void *x
) {
14642 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiMultiNotebook
*) x
));
14644 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
14645 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
14647 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
14648 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
14650 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
14651 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
14653 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
14654 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
14656 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
14657 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
14659 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
14660 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
14662 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
14663 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
14665 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
14666 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
14668 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
14669 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
14671 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
14672 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
14674 static void *_p_wxFrameManagerTo_p_wxEvtHandler(void *x
) {
14675 return (void *)((wxEvtHandler
*) ((wxFrameManager
*) x
));
14677 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
14678 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
14680 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
14681 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
14683 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
14684 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
14686 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
14687 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
14689 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
14690 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
14692 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
14693 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
14695 static void *_p_wxFloatingPaneTo_p_wxFrame(void *x
) {
14696 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxFloatingPane
*) x
));
14698 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
14699 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
14701 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
14702 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
14704 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
14705 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
14707 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
14708 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
14710 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
14711 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
14713 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
14714 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
14716 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
14717 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
14719 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
14720 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
14722 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
14723 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
14725 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
14726 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
14728 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
14729 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
14731 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
14732 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
14734 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
14735 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
14737 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
14738 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
14740 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
14741 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
14743 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
14744 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
14746 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
14747 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
14749 static void *_p_wxDefaultDockArtTo_p_wxDockArt(void *x
) {
14750 return (void *)((wxDockArt
*) ((wxDefaultDockArt
*) x
));
14752 static void *_p_wxPyDockArtTo_p_wxDockArt(void *x
) {
14753 return (void *)((wxDockArt
*) (wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
14755 static void *_p_wxPyDockArtTo_p_wxDefaultDockArt(void *x
) {
14756 return (void *)((wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
14758 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
14759 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};
14760 static swig_type_info _swigt__p_int
= {"_p_int", "int *|wxEventType *", 0, 0, (void*)0, 0};
14761 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
14762 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
14763 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
14764 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
14765 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
14766 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
14767 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
14768 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
14769 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
14770 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
14771 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
14772 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
14773 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
14774 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
14775 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
14776 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
14777 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
14778 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
14779 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
14780 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
14781 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
14782 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
14783 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
14784 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
14785 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
14786 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
14787 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
14788 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
14789 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
14790 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
14791 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
14792 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
14793 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
14794 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
14795 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
14796 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
14797 static swig_type_info _swigt__p_p_wxFloatingPane
= {"_p_p_wxFloatingPane", 0, 0, 0, 0, 0};
14798 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
14799 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
14800 static swig_type_info _swigt__p_p_wxAuiMultiNotebook
= {"_p_p_wxAuiMultiNotebook", 0, 0, 0, 0, 0};
14801 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
14802 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
14803 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
14804 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
14805 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
14806 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
14807 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
14808 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
14809 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
14810 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
14811 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
14812 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
14813 static swig_type_info _swigt__p_wxAuiMultiNotebook
= {"_p_wxAuiMultiNotebook", "wxAuiMultiNotebook *", 0, 0, (void*)0, 0};
14814 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
14815 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
14816 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
14817 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
14818 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
14819 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
14820 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
14821 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
14822 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
14823 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
14824 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
14825 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
14826 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
14827 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
14828 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
14829 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
14830 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
14831 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
14832 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
14833 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
14834 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
14835 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
14836 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
14837 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
14838 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
14839 static swig_type_info _swigt__p_wxDefaultDockArt
= {"_p_wxDefaultDockArt", "wxDefaultDockArt *", 0, 0, (void*)0, 0};
14840 static swig_type_info _swigt__p_wxDockArt
= {"_p_wxDockArt", "wxDockArt *", 0, 0, (void*)0, 0};
14841 static swig_type_info _swigt__p_wxDockInfo
= {"_p_wxDockInfo", "wxDockInfo *", 0, 0, (void*)0, 0};
14842 static swig_type_info _swigt__p_wxDockUIPart
= {"_p_wxDockUIPart", "wxDockUIPart *", 0, 0, (void*)0, 0};
14843 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
14844 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
14845 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
14846 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
14847 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
14848 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
14849 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
14850 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
14851 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
14852 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
14853 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
14854 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
14855 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
14856 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
14857 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
14858 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
14859 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
14860 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
14861 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
14862 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
14863 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
14864 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
14865 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
14866 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
14867 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
14868 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
14869 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
14870 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
14871 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
14872 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
14873 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
14874 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
14875 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
14876 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
14877 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
14878 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
14879 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
14880 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
14881 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
14882 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
14883 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
14884 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
14885 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
14886 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
14887 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
14888 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
14889 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
14890 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
14891 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
14892 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
14893 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
14894 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
14895 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
14896 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
14897 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
14898 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
14899 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
14900 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
14901 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
14902 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
14903 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
14904 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
14905 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
14906 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
14907 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
14908 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
14909 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
14910 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
14911 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
14912 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
14913 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
14914 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
14915 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
14916 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
14917 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
14918 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
14919 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
14920 static swig_type_info _swigt__p_wxFloatingPane
= {"_p_wxFloatingPane", "wxFloatingPane *", 0, 0, (void*)0, 0};
14921 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
14922 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
14923 static swig_type_info _swigt__p_wxFrameManager
= {"_p_wxFrameManager", "wxFrameManager *", 0, 0, (void*)0, 0};
14924 static swig_type_info _swigt__p_wxFrameManagerEvent
= {"_p_wxFrameManagerEvent", "wxFrameManagerEvent *", 0, 0, (void*)0, 0};
14925 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
14926 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
14927 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
14928 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
14929 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
14930 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
14931 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
14932 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
14933 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
14934 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
14935 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
14936 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
14937 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
14938 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
14939 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
14940 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
14941 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
14942 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
14943 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
14944 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
14945 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
14946 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
14947 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
14948 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
14949 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
14950 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
14951 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
14952 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
14953 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
14954 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
14955 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
14956 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
14957 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
14958 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
14959 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
14960 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
14961 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
14962 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
14963 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
14964 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
14965 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
14966 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
14967 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
14968 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
14969 static swig_type_info _swigt__p_wxPaneButton
= {"_p_wxPaneButton", "wxPaneButton *", 0, 0, (void*)0, 0};
14970 static swig_type_info _swigt__p_wxPaneButtonArray
= {"_p_wxPaneButtonArray", "wxPaneButtonArray *", 0, 0, (void*)0, 0};
14971 static swig_type_info _swigt__p_wxPaneInfo
= {"_p_wxPaneInfo", "wxPaneInfo *", 0, 0, (void*)0, 0};
14972 static swig_type_info _swigt__p_wxPaneInfoPtrArray
= {"_p_wxPaneInfoPtrArray", "wxPaneInfoPtrArray *", 0, 0, (void*)0, 0};
14973 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
14974 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
14975 static swig_type_info _swigt__p_wxPyDockArt
= {"_p_wxPyDockArt", "wxPyDockArt *", 0, 0, (void*)0, 0};
14976 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
14977 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
14978 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
14979 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
14980 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
14981 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
14982 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
14984 static swig_type_info
*swig_type_initial
[] = {
14986 &_swigt__p_form_ops_t
,
14988 &_swigt__p_p_wxAuiMultiNotebook
,
14989 &_swigt__p_p_wxAuiTabContainerButton
,
14990 &_swigt__p_p_wxAuiTabCtrl
,
14991 &_swigt__p_p_wxColourDialog
,
14992 &_swigt__p_p_wxControl
,
14993 &_swigt__p_p_wxControlWithItems
,
14994 &_swigt__p_p_wxDialog
,
14995 &_swigt__p_p_wxDirDialog
,
14996 &_swigt__p_p_wxFileDialog
,
14997 &_swigt__p_p_wxFindReplaceDialog
,
14998 &_swigt__p_p_wxFloatingPane
,
14999 &_swigt__p_p_wxFontDialog
,
15000 &_swigt__p_p_wxFrame
,
15001 &_swigt__p_p_wxMDIChildFrame
,
15002 &_swigt__p_p_wxMDIClientWindow
,
15003 &_swigt__p_p_wxMDIParentFrame
,
15004 &_swigt__p_p_wxMenuBar
,
15005 &_swigt__p_p_wxMessageDialog
,
15006 &_swigt__p_p_wxMiniFrame
,
15007 &_swigt__p_p_wxMultiChoiceDialog
,
15008 &_swigt__p_p_wxNumberEntryDialog
,
15009 &_swigt__p_p_wxPanel
,
15010 &_swigt__p_p_wxPasswordEntryDialog
,
15011 &_swigt__p_p_wxPopupWindow
,
15012 &_swigt__p_p_wxPreviewCanvas
,
15013 &_swigt__p_p_wxPreviewControlBar
,
15014 &_swigt__p_p_wxPreviewFrame
,
15015 &_swigt__p_p_wxProgressDialog
,
15016 &_swigt__p_p_wxPyHtmlListBox
,
15017 &_swigt__p_p_wxPyPanel
,
15018 &_swigt__p_p_wxPyPopupTransientWindow
,
15019 &_swigt__p_p_wxPyPreviewControlBar
,
15020 &_swigt__p_p_wxPyPreviewFrame
,
15021 &_swigt__p_p_wxPyScrolledWindow
,
15022 &_swigt__p_p_wxPyVListBox
,
15023 &_swigt__p_p_wxPyVScrolledWindow
,
15024 &_swigt__p_p_wxPyWindow
,
15025 &_swigt__p_p_wxSashLayoutWindow
,
15026 &_swigt__p_p_wxSashWindow
,
15027 &_swigt__p_p_wxScrolledWindow
,
15028 &_swigt__p_p_wxSingleChoiceDialog
,
15029 &_swigt__p_p_wxSplashScreen
,
15030 &_swigt__p_p_wxSplashScreenWindow
,
15031 &_swigt__p_p_wxSplitterWindow
,
15032 &_swigt__p_p_wxStatusBar
,
15033 &_swigt__p_p_wxTextEntryDialog
,
15034 &_swigt__p_p_wxTipWindow
,
15035 &_swigt__p_p_wxTopLevelWindow
,
15036 &_swigt__p_p_wxWindow
,
15037 &_swigt__p_unsigned_char
,
15038 &_swigt__p_unsigned_int
,
15039 &_swigt__p_unsigned_long
,
15040 &_swigt__p_wxANIHandler
,
15041 &_swigt__p_wxAcceleratorTable
,
15042 &_swigt__p_wxActivateEvent
,
15043 &_swigt__p_wxAuiMultiNotebook
,
15044 &_swigt__p_wxAuiNotebookEvent
,
15045 &_swigt__p_wxAuiNotebookPage
,
15046 &_swigt__p_wxAuiNotebookPageArray
,
15047 &_swigt__p_wxAuiTabContainer
,
15048 &_swigt__p_wxAuiTabContainerButton
,
15049 &_swigt__p_wxAuiTabCtrl
,
15050 &_swigt__p_wxBMPHandler
,
15051 &_swigt__p_wxBitmap
,
15052 &_swigt__p_wxBoxSizer
,
15053 &_swigt__p_wxCURHandler
,
15054 &_swigt__p_wxCalculateLayoutEvent
,
15055 &_swigt__p_wxChildFocusEvent
,
15056 &_swigt__p_wxClipboardTextEvent
,
15057 &_swigt__p_wxCloseEvent
,
15058 &_swigt__p_wxColor
,
15059 &_swigt__p_wxColour
,
15060 &_swigt__p_wxColourData
,
15061 &_swigt__p_wxColourDialog
,
15062 &_swigt__p_wxCommandEvent
,
15063 &_swigt__p_wxContextMenuEvent
,
15064 &_swigt__p_wxControl
,
15065 &_swigt__p_wxControlWithItems
,
15067 &_swigt__p_wxDateEvent
,
15068 &_swigt__p_wxDefaultDockArt
,
15069 &_swigt__p_wxDialog
,
15070 &_swigt__p_wxDirDialog
,
15071 &_swigt__p_wxDisplayChangedEvent
,
15072 &_swigt__p_wxDockArt
,
15073 &_swigt__p_wxDockInfo
,
15074 &_swigt__p_wxDockUIPart
,
15075 &_swigt__p_wxDropFilesEvent
,
15076 &_swigt__p_wxDuplexMode
,
15077 &_swigt__p_wxEraseEvent
,
15078 &_swigt__p_wxEvent
,
15079 &_swigt__p_wxEvtHandler
,
15080 &_swigt__p_wxFSFile
,
15081 &_swigt__p_wxFileDialog
,
15082 &_swigt__p_wxFileSystem
,
15083 &_swigt__p_wxFindDialogEvent
,
15084 &_swigt__p_wxFindReplaceData
,
15085 &_swigt__p_wxFindReplaceDialog
,
15086 &_swigt__p_wxFlexGridSizer
,
15087 &_swigt__p_wxFloatingPane
,
15088 &_swigt__p_wxFocusEvent
,
15090 &_swigt__p_wxFontData
,
15091 &_swigt__p_wxFontDialog
,
15092 &_swigt__p_wxFrame
,
15093 &_swigt__p_wxFrameManager
,
15094 &_swigt__p_wxFrameManagerEvent
,
15095 &_swigt__p_wxGBSizerItem
,
15096 &_swigt__p_wxGIFHandler
,
15097 &_swigt__p_wxGridBagSizer
,
15098 &_swigt__p_wxGridSizer
,
15099 &_swigt__p_wxICOHandler
,
15100 &_swigt__p_wxIconizeEvent
,
15101 &_swigt__p_wxIdleEvent
,
15102 &_swigt__p_wxImage
,
15103 &_swigt__p_wxImageHandler
,
15104 &_swigt__p_wxIndividualLayoutConstraint
,
15105 &_swigt__p_wxInitDialogEvent
,
15106 &_swigt__p_wxJPEGHandler
,
15107 &_swigt__p_wxKeyEvent
,
15108 &_swigt__p_wxLayoutAlgorithm
,
15109 &_swigt__p_wxLayoutConstraints
,
15110 &_swigt__p_wxMDIChildFrame
,
15111 &_swigt__p_wxMDIClientWindow
,
15112 &_swigt__p_wxMDIParentFrame
,
15113 &_swigt__p_wxMaximizeEvent
,
15115 &_swigt__p_wxMenuBar
,
15116 &_swigt__p_wxMenuEvent
,
15117 &_swigt__p_wxMenuItem
,
15118 &_swigt__p_wxMessageDialog
,
15119 &_swigt__p_wxMiniFrame
,
15120 &_swigt__p_wxMouseCaptureChangedEvent
,
15121 &_swigt__p_wxMouseCaptureLostEvent
,
15122 &_swigt__p_wxMouseEvent
,
15123 &_swigt__p_wxMoveEvent
,
15124 &_swigt__p_wxMultiChoiceDialog
,
15125 &_swigt__p_wxNavigationKeyEvent
,
15126 &_swigt__p_wxNcPaintEvent
,
15127 &_swigt__p_wxNotifyEvent
,
15128 &_swigt__p_wxNumberEntryDialog
,
15129 &_swigt__p_wxObject
,
15130 &_swigt__p_wxPCXHandler
,
15131 &_swigt__p_wxPNGHandler
,
15132 &_swigt__p_wxPNMHandler
,
15133 &_swigt__p_wxPageSetupDialog
,
15134 &_swigt__p_wxPageSetupDialogData
,
15135 &_swigt__p_wxPaintEvent
,
15136 &_swigt__p_wxPaletteChangedEvent
,
15137 &_swigt__p_wxPaneButton
,
15138 &_swigt__p_wxPaneButtonArray
,
15139 &_swigt__p_wxPaneInfo
,
15140 &_swigt__p_wxPaneInfoPtrArray
,
15141 &_swigt__p_wxPanel
,
15142 &_swigt__p_wxPaperSize
,
15143 &_swigt__p_wxPasswordEntryDialog
,
15144 &_swigt__p_wxPoint
,
15145 &_swigt__p_wxPopupWindow
,
15146 &_swigt__p_wxPreviewCanvas
,
15147 &_swigt__p_wxPreviewControlBar
,
15148 &_swigt__p_wxPreviewFrame
,
15149 &_swigt__p_wxPrintData
,
15150 &_swigt__p_wxPrintDialog
,
15151 &_swigt__p_wxPrintDialogData
,
15152 &_swigt__p_wxPrintPreview
,
15153 &_swigt__p_wxPrinter
,
15154 &_swigt__p_wxProgressDialog
,
15155 &_swigt__p_wxPyApp
,
15156 &_swigt__p_wxPyCommandEvent
,
15157 &_swigt__p_wxPyDockArt
,
15158 &_swigt__p_wxPyEvent
,
15159 &_swigt__p_wxPyHtmlListBox
,
15160 &_swigt__p_wxPyImageHandler
,
15161 &_swigt__p_wxPyPanel
,
15162 &_swigt__p_wxPyPopupTransientWindow
,
15163 &_swigt__p_wxPyPreviewControlBar
,
15164 &_swigt__p_wxPyPreviewFrame
,
15165 &_swigt__p_wxPyPrintPreview
,
15166 &_swigt__p_wxPyPrintout
,
15167 &_swigt__p_wxPyScrolledWindow
,
15168 &_swigt__p_wxPySizer
,
15169 &_swigt__p_wxPyTaskBarIcon
,
15170 &_swigt__p_wxPyVListBox
,
15171 &_swigt__p_wxPyVScrolledWindow
,
15172 &_swigt__p_wxPyValidator
,
15173 &_swigt__p_wxPyWindow
,
15174 &_swigt__p_wxQueryLayoutInfoEvent
,
15175 &_swigt__p_wxQueryNewPaletteEvent
,
15177 &_swigt__p_wxSashEvent
,
15178 &_swigt__p_wxSashLayoutWindow
,
15179 &_swigt__p_wxSashWindow
,
15180 &_swigt__p_wxScrollEvent
,
15181 &_swigt__p_wxScrollWinEvent
,
15182 &_swigt__p_wxScrolledWindow
,
15183 &_swigt__p_wxSetCursorEvent
,
15184 &_swigt__p_wxShowEvent
,
15185 &_swigt__p_wxSingleChoiceDialog
,
15187 &_swigt__p_wxSizeEvent
,
15188 &_swigt__p_wxSizer
,
15189 &_swigt__p_wxSizerItem
,
15190 &_swigt__p_wxSplashScreen
,
15191 &_swigt__p_wxSplashScreenWindow
,
15192 &_swigt__p_wxSplitterEvent
,
15193 &_swigt__p_wxSplitterWindow
,
15194 &_swigt__p_wxStaticBoxSizer
,
15195 &_swigt__p_wxStatusBar
,
15196 &_swigt__p_wxStdDialogButtonSizer
,
15197 &_swigt__p_wxString
,
15198 &_swigt__p_wxSysColourChangedEvent
,
15199 &_swigt__p_wxTIFFHandler
,
15200 &_swigt__p_wxTaskBarIconEvent
,
15201 &_swigt__p_wxTextEntryDialog
,
15202 &_swigt__p_wxTipWindow
,
15203 &_swigt__p_wxTopLevelWindow
,
15204 &_swigt__p_wxUpdateUIEvent
,
15205 &_swigt__p_wxValidator
,
15206 &_swigt__p_wxWindow
,
15207 &_swigt__p_wxWindowCreateEvent
,
15208 &_swigt__p_wxWindowDestroyEvent
,
15209 &_swigt__p_wxXPMHandler
,
15212 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
15213 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
15214 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
15215 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
15216 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
15217 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
15218 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
15219 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
15220 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15221 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
15222 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
15223 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15224 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15225 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15226 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15227 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15228 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
15229 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
15230 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
15231 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15232 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
15233 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
15234 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
15235 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
15236 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15237 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
15238 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
15239 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
15240 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
15241 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
15242 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15243 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
15244 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
15245 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
15246 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
15247 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
15248 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
15249 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
15250 static swig_cast_info _swigc__p_p_wxFloatingPane
[] = {{&_swigt__p_p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
15251 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
15252 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
15253 static swig_cast_info _swigc__p_p_wxAuiMultiNotebook
[] = {{&_swigt__p_p_wxAuiMultiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
15254 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
15255 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
15256 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
15257 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
15258 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
15259 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
15260 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
15261 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
15262 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
15263 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}};
15264 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
15265 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
15266 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
15267 static swig_cast_info _swigc__p_wxAuiMultiNotebook
[] = { {&_swigt__p_wxAuiMultiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
15268 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
15269 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
15270 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
15271 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}};
15272 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
15273 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
15274 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
15275 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
15276 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
15277 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
15278 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
15279 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
15280 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
15281 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
15282 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
15283 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
15284 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
15285 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
15286 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
15287 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
15288 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
15289 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}};
15290 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
15291 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}};
15292 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
15293 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}};
15294 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}};
15295 static swig_cast_info _swigc__p_wxDockInfo
[] = { {&_swigt__p_wxDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
15296 static swig_cast_info _swigc__p_wxDockUIPart
[] = { {&_swigt__p_wxDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
15297 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
15298 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
15299 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
15300 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
15301 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
15302 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
15303 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
15304 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
15305 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
15306 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
15307 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
15308 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
15309 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
15310 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
15311 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
15312 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
15313 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
15314 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
15315 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
15316 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
15317 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
15318 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
15319 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
15320 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
15321 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
15322 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
15323 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
15324 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
15325 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
15326 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
15327 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
15328 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}};
15329 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
15330 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
15331 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
15332 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
15333 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
15334 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15335 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
15336 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15337 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15338 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
15339 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
15340 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15341 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
15342 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
15343 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
15344 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
15345 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
15346 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15347 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
15348 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15349 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
15350 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
15351 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
15352 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
15353 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
15354 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
15355 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
15356 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
15357 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
15358 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
15359 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
15360 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
15361 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
15362 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
15363 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
15364 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
15365 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
15366 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
15367 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
15368 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
15369 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
15370 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
15371 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
15372 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
15373 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}};
15374 static swig_cast_info _swigc__p_wxFloatingPane
[] = { {&_swigt__p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
15375 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
15376 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}};
15377 static swig_cast_info _swigc__p_wxFrameManager
[] = { {&_swigt__p_wxFrameManager
, 0, 0, 0},{0, 0, 0, 0}};
15378 static swig_cast_info _swigc__p_wxFrameManagerEvent
[] = { {&_swigt__p_wxFrameManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
15379 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}};
15380 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}};
15381 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
15382 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
15383 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
15384 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
15385 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
15386 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
15387 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
15388 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
15389 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
15390 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
15391 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
15392 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
15393 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
15394 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
15395 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
15396 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
15397 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
15398 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
15399 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
15400 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
15401 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
15402 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
15403 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
15404 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
15405 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
15406 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
15407 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
15408 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
15409 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
15410 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
15411 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
15412 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
15413 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
15414 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
15415 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
15416 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
15417 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
15418 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
15419 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
15420 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
15421 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
15422 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_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}};
15423 static swig_cast_info _swigc__p_wxPaneButton
[] = { {&_swigt__p_wxPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
15424 static swig_cast_info _swigc__p_wxPaneButtonArray
[] = { {&_swigt__p_wxPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
15425 static swig_cast_info _swigc__p_wxPaneInfo
[] = { {&_swigt__p_wxPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
15426 static swig_cast_info _swigc__p_wxPaneInfoPtrArray
[] = { {&_swigt__p_wxPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
15427 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
15428 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
15429 static swig_cast_info _swigc__p_wxPyDockArt
[] = { {&_swigt__p_wxPyDockArt
, 0, 0, 0},{0, 0, 0, 0}};
15430 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
15431 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
15432 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}};
15433 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}};
15434 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
15435 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}};
15436 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}};
15438 static swig_cast_info
*swig_cast_initial
[] = {
15440 _swigc__p_form_ops_t
,
15442 _swigc__p_p_wxAuiMultiNotebook
,
15443 _swigc__p_p_wxAuiTabContainerButton
,
15444 _swigc__p_p_wxAuiTabCtrl
,
15445 _swigc__p_p_wxColourDialog
,
15446 _swigc__p_p_wxControl
,
15447 _swigc__p_p_wxControlWithItems
,
15448 _swigc__p_p_wxDialog
,
15449 _swigc__p_p_wxDirDialog
,
15450 _swigc__p_p_wxFileDialog
,
15451 _swigc__p_p_wxFindReplaceDialog
,
15452 _swigc__p_p_wxFloatingPane
,
15453 _swigc__p_p_wxFontDialog
,
15454 _swigc__p_p_wxFrame
,
15455 _swigc__p_p_wxMDIChildFrame
,
15456 _swigc__p_p_wxMDIClientWindow
,
15457 _swigc__p_p_wxMDIParentFrame
,
15458 _swigc__p_p_wxMenuBar
,
15459 _swigc__p_p_wxMessageDialog
,
15460 _swigc__p_p_wxMiniFrame
,
15461 _swigc__p_p_wxMultiChoiceDialog
,
15462 _swigc__p_p_wxNumberEntryDialog
,
15463 _swigc__p_p_wxPanel
,
15464 _swigc__p_p_wxPasswordEntryDialog
,
15465 _swigc__p_p_wxPopupWindow
,
15466 _swigc__p_p_wxPreviewCanvas
,
15467 _swigc__p_p_wxPreviewControlBar
,
15468 _swigc__p_p_wxPreviewFrame
,
15469 _swigc__p_p_wxProgressDialog
,
15470 _swigc__p_p_wxPyHtmlListBox
,
15471 _swigc__p_p_wxPyPanel
,
15472 _swigc__p_p_wxPyPopupTransientWindow
,
15473 _swigc__p_p_wxPyPreviewControlBar
,
15474 _swigc__p_p_wxPyPreviewFrame
,
15475 _swigc__p_p_wxPyScrolledWindow
,
15476 _swigc__p_p_wxPyVListBox
,
15477 _swigc__p_p_wxPyVScrolledWindow
,
15478 _swigc__p_p_wxPyWindow
,
15479 _swigc__p_p_wxSashLayoutWindow
,
15480 _swigc__p_p_wxSashWindow
,
15481 _swigc__p_p_wxScrolledWindow
,
15482 _swigc__p_p_wxSingleChoiceDialog
,
15483 _swigc__p_p_wxSplashScreen
,
15484 _swigc__p_p_wxSplashScreenWindow
,
15485 _swigc__p_p_wxSplitterWindow
,
15486 _swigc__p_p_wxStatusBar
,
15487 _swigc__p_p_wxTextEntryDialog
,
15488 _swigc__p_p_wxTipWindow
,
15489 _swigc__p_p_wxTopLevelWindow
,
15490 _swigc__p_p_wxWindow
,
15491 _swigc__p_unsigned_char
,
15492 _swigc__p_unsigned_int
,
15493 _swigc__p_unsigned_long
,
15494 _swigc__p_wxANIHandler
,
15495 _swigc__p_wxAcceleratorTable
,
15496 _swigc__p_wxActivateEvent
,
15497 _swigc__p_wxAuiMultiNotebook
,
15498 _swigc__p_wxAuiNotebookEvent
,
15499 _swigc__p_wxAuiNotebookPage
,
15500 _swigc__p_wxAuiNotebookPageArray
,
15501 _swigc__p_wxAuiTabContainer
,
15502 _swigc__p_wxAuiTabContainerButton
,
15503 _swigc__p_wxAuiTabCtrl
,
15504 _swigc__p_wxBMPHandler
,
15505 _swigc__p_wxBitmap
,
15506 _swigc__p_wxBoxSizer
,
15507 _swigc__p_wxCURHandler
,
15508 _swigc__p_wxCalculateLayoutEvent
,
15509 _swigc__p_wxChildFocusEvent
,
15510 _swigc__p_wxClipboardTextEvent
,
15511 _swigc__p_wxCloseEvent
,
15513 _swigc__p_wxColour
,
15514 _swigc__p_wxColourData
,
15515 _swigc__p_wxColourDialog
,
15516 _swigc__p_wxCommandEvent
,
15517 _swigc__p_wxContextMenuEvent
,
15518 _swigc__p_wxControl
,
15519 _swigc__p_wxControlWithItems
,
15521 _swigc__p_wxDateEvent
,
15522 _swigc__p_wxDefaultDockArt
,
15523 _swigc__p_wxDialog
,
15524 _swigc__p_wxDirDialog
,
15525 _swigc__p_wxDisplayChangedEvent
,
15526 _swigc__p_wxDockArt
,
15527 _swigc__p_wxDockInfo
,
15528 _swigc__p_wxDockUIPart
,
15529 _swigc__p_wxDropFilesEvent
,
15530 _swigc__p_wxDuplexMode
,
15531 _swigc__p_wxEraseEvent
,
15533 _swigc__p_wxEvtHandler
,
15534 _swigc__p_wxFSFile
,
15535 _swigc__p_wxFileDialog
,
15536 _swigc__p_wxFileSystem
,
15537 _swigc__p_wxFindDialogEvent
,
15538 _swigc__p_wxFindReplaceData
,
15539 _swigc__p_wxFindReplaceDialog
,
15540 _swigc__p_wxFlexGridSizer
,
15541 _swigc__p_wxFloatingPane
,
15542 _swigc__p_wxFocusEvent
,
15544 _swigc__p_wxFontData
,
15545 _swigc__p_wxFontDialog
,
15547 _swigc__p_wxFrameManager
,
15548 _swigc__p_wxFrameManagerEvent
,
15549 _swigc__p_wxGBSizerItem
,
15550 _swigc__p_wxGIFHandler
,
15551 _swigc__p_wxGridBagSizer
,
15552 _swigc__p_wxGridSizer
,
15553 _swigc__p_wxICOHandler
,
15554 _swigc__p_wxIconizeEvent
,
15555 _swigc__p_wxIdleEvent
,
15557 _swigc__p_wxImageHandler
,
15558 _swigc__p_wxIndividualLayoutConstraint
,
15559 _swigc__p_wxInitDialogEvent
,
15560 _swigc__p_wxJPEGHandler
,
15561 _swigc__p_wxKeyEvent
,
15562 _swigc__p_wxLayoutAlgorithm
,
15563 _swigc__p_wxLayoutConstraints
,
15564 _swigc__p_wxMDIChildFrame
,
15565 _swigc__p_wxMDIClientWindow
,
15566 _swigc__p_wxMDIParentFrame
,
15567 _swigc__p_wxMaximizeEvent
,
15569 _swigc__p_wxMenuBar
,
15570 _swigc__p_wxMenuEvent
,
15571 _swigc__p_wxMenuItem
,
15572 _swigc__p_wxMessageDialog
,
15573 _swigc__p_wxMiniFrame
,
15574 _swigc__p_wxMouseCaptureChangedEvent
,
15575 _swigc__p_wxMouseCaptureLostEvent
,
15576 _swigc__p_wxMouseEvent
,
15577 _swigc__p_wxMoveEvent
,
15578 _swigc__p_wxMultiChoiceDialog
,
15579 _swigc__p_wxNavigationKeyEvent
,
15580 _swigc__p_wxNcPaintEvent
,
15581 _swigc__p_wxNotifyEvent
,
15582 _swigc__p_wxNumberEntryDialog
,
15583 _swigc__p_wxObject
,
15584 _swigc__p_wxPCXHandler
,
15585 _swigc__p_wxPNGHandler
,
15586 _swigc__p_wxPNMHandler
,
15587 _swigc__p_wxPageSetupDialog
,
15588 _swigc__p_wxPageSetupDialogData
,
15589 _swigc__p_wxPaintEvent
,
15590 _swigc__p_wxPaletteChangedEvent
,
15591 _swigc__p_wxPaneButton
,
15592 _swigc__p_wxPaneButtonArray
,
15593 _swigc__p_wxPaneInfo
,
15594 _swigc__p_wxPaneInfoPtrArray
,
15596 _swigc__p_wxPaperSize
,
15597 _swigc__p_wxPasswordEntryDialog
,
15599 _swigc__p_wxPopupWindow
,
15600 _swigc__p_wxPreviewCanvas
,
15601 _swigc__p_wxPreviewControlBar
,
15602 _swigc__p_wxPreviewFrame
,
15603 _swigc__p_wxPrintData
,
15604 _swigc__p_wxPrintDialog
,
15605 _swigc__p_wxPrintDialogData
,
15606 _swigc__p_wxPrintPreview
,
15607 _swigc__p_wxPrinter
,
15608 _swigc__p_wxProgressDialog
,
15610 _swigc__p_wxPyCommandEvent
,
15611 _swigc__p_wxPyDockArt
,
15612 _swigc__p_wxPyEvent
,
15613 _swigc__p_wxPyHtmlListBox
,
15614 _swigc__p_wxPyImageHandler
,
15615 _swigc__p_wxPyPanel
,
15616 _swigc__p_wxPyPopupTransientWindow
,
15617 _swigc__p_wxPyPreviewControlBar
,
15618 _swigc__p_wxPyPreviewFrame
,
15619 _swigc__p_wxPyPrintPreview
,
15620 _swigc__p_wxPyPrintout
,
15621 _swigc__p_wxPyScrolledWindow
,
15622 _swigc__p_wxPySizer
,
15623 _swigc__p_wxPyTaskBarIcon
,
15624 _swigc__p_wxPyVListBox
,
15625 _swigc__p_wxPyVScrolledWindow
,
15626 _swigc__p_wxPyValidator
,
15627 _swigc__p_wxPyWindow
,
15628 _swigc__p_wxQueryLayoutInfoEvent
,
15629 _swigc__p_wxQueryNewPaletteEvent
,
15631 _swigc__p_wxSashEvent
,
15632 _swigc__p_wxSashLayoutWindow
,
15633 _swigc__p_wxSashWindow
,
15634 _swigc__p_wxScrollEvent
,
15635 _swigc__p_wxScrollWinEvent
,
15636 _swigc__p_wxScrolledWindow
,
15637 _swigc__p_wxSetCursorEvent
,
15638 _swigc__p_wxShowEvent
,
15639 _swigc__p_wxSingleChoiceDialog
,
15641 _swigc__p_wxSizeEvent
,
15643 _swigc__p_wxSizerItem
,
15644 _swigc__p_wxSplashScreen
,
15645 _swigc__p_wxSplashScreenWindow
,
15646 _swigc__p_wxSplitterEvent
,
15647 _swigc__p_wxSplitterWindow
,
15648 _swigc__p_wxStaticBoxSizer
,
15649 _swigc__p_wxStatusBar
,
15650 _swigc__p_wxStdDialogButtonSizer
,
15651 _swigc__p_wxString
,
15652 _swigc__p_wxSysColourChangedEvent
,
15653 _swigc__p_wxTIFFHandler
,
15654 _swigc__p_wxTaskBarIconEvent
,
15655 _swigc__p_wxTextEntryDialog
,
15656 _swigc__p_wxTipWindow
,
15657 _swigc__p_wxTopLevelWindow
,
15658 _swigc__p_wxUpdateUIEvent
,
15659 _swigc__p_wxValidator
,
15660 _swigc__p_wxWindow
,
15661 _swigc__p_wxWindowCreateEvent
,
15662 _swigc__p_wxWindowDestroyEvent
,
15663 _swigc__p_wxXPMHandler
,
15667 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
15669 static swig_const_info swig_const_table
[] = {
15670 {0, 0, 0, 0.0, 0, 0}};
15675 /* -----------------------------------------------------------------------------
15676 * Type initialization:
15677 * This problem is tough by the requirement that no dynamic
15678 * memory is used. Also, since swig_type_info structures store pointers to
15679 * swig_cast_info structures and swig_cast_info structures store pointers back
15680 * to swig_type_info structures, we need some lookup code at initialization.
15681 * The idea is that swig generates all the structures that are needed.
15682 * The runtime then collects these partially filled structures.
15683 * The SWIG_InitializeModule function takes these initial arrays out of
15684 * swig_module, and does all the lookup, filling in the swig_module.types
15685 * array with the correct data and linking the correct swig_cast_info
15686 * structures together.
15688 * The generated swig_type_info structures are assigned staticly to an initial
15689 * array. We just loop though that array, and handle each type individually.
15690 * First we lookup if this type has been already loaded, and if so, use the
15691 * loaded structure instead of the generated one. Then we have to fill in the
15692 * cast linked list. The cast data is initially stored in something like a
15693 * two-dimensional array. Each row corresponds to a type (there are the same
15694 * number of rows as there are in the swig_type_initial array). Each entry in
15695 * a column is one of the swig_cast_info structures for that type.
15696 * The cast_initial array is actually an array of arrays, because each row has
15697 * a variable number of columns. So to actually build the cast linked list,
15698 * we find the array of casts associated with the type, and loop through it
15699 * adding the casts to the list. The one last trick we need to do is making
15700 * sure the type pointer in the swig_cast_info struct is correct.
15702 * First off, we lookup the cast->type name to see if it is already loaded.
15703 * There are three cases to handle:
15704 * 1) If the cast->type has already been loaded AND the type we are adding
15705 * casting info to has not been loaded (it is in this module), THEN we
15706 * replace the cast->type pointer with the type pointer that has already
15708 * 2) If BOTH types (the one we are adding casting info to, and the
15709 * cast->type) are loaded, THEN the cast info has already been loaded by
15710 * the previous module so we just ignore it.
15711 * 3) Finally, if cast->type has not already been loaded, then we add that
15712 * swig_cast_info to the linked list (because the cast->type) pointer will
15714 * ----------------------------------------------------------------------------- */
15724 #define SWIGRUNTIME_DEBUG
15728 SWIG_InitializeModule(void *clientdata
) {
15730 swig_module_info
*module_head
;
15731 static int init_run
= 0;
15733 clientdata
= clientdata
;
15735 if (init_run
) return;
15738 /* Initialize the swig_module */
15739 swig_module
.type_initial
= swig_type_initial
;
15740 swig_module
.cast_initial
= swig_cast_initial
;
15742 /* Try and load any already created modules */
15743 module_head
= SWIG_GetModule(clientdata
);
15745 swig_module
.next
= module_head
->next
;
15746 module_head
->next
= &swig_module
;
15748 /* This is the first module loaded */
15749 swig_module
.next
= &swig_module
;
15750 SWIG_SetModule(clientdata
, &swig_module
);
15753 /* Now work on filling in swig_module.types */
15754 #ifdef SWIGRUNTIME_DEBUG
15755 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
15757 for (i
= 0; i
< swig_module
.size
; ++i
) {
15758 swig_type_info
*type
= 0;
15759 swig_type_info
*ret
;
15760 swig_cast_info
*cast
;
15762 #ifdef SWIGRUNTIME_DEBUG
15763 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
15766 /* if there is another module already loaded */
15767 if (swig_module
.next
!= &swig_module
) {
15768 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
15771 /* Overwrite clientdata field */
15772 #ifdef SWIGRUNTIME_DEBUG
15773 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
15775 if (swig_module
.type_initial
[i
]->clientdata
) {
15776 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
15777 #ifdef SWIGRUNTIME_DEBUG
15778 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
15782 type
= swig_module
.type_initial
[i
];
15785 /* Insert casting types */
15786 cast
= swig_module
.cast_initial
[i
];
15787 while (cast
->type
) {
15788 /* Don't need to add information already in the list */
15790 #ifdef SWIGRUNTIME_DEBUG
15791 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
15793 if (swig_module
.next
!= &swig_module
) {
15794 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
15795 #ifdef SWIGRUNTIME_DEBUG
15796 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
15800 if (type
== swig_module
.type_initial
[i
]) {
15801 #ifdef SWIGRUNTIME_DEBUG
15802 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
15807 /* Check for casting already in the list */
15808 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
15809 #ifdef SWIGRUNTIME_DEBUG
15810 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
15812 if (!ocast
) ret
= 0;
15817 #ifdef SWIGRUNTIME_DEBUG
15818 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
15821 type
->cast
->prev
= cast
;
15822 cast
->next
= type
->cast
;
15828 /* Set entry in modules->types array equal to the type */
15829 swig_module
.types
[i
] = type
;
15831 swig_module
.types
[i
] = 0;
15833 #ifdef SWIGRUNTIME_DEBUG
15834 printf("**** SWIG_InitializeModule: Cast List ******\n");
15835 for (i
= 0; i
< swig_module
.size
; ++i
) {
15837 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
15838 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
15839 while (cast
->type
) {
15840 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
15844 printf("---- Total casts: %d\n",j
);
15846 printf("**** SWIG_InitializeModule: Cast List ******\n");
15850 /* This function will propagate the clientdata field of type to
15851 * any new swig_type_info structures that have been added into the list
15852 * of equivalent types. It is like calling
15853 * SWIG_TypeClientData(type, clientdata) a second time.
15856 SWIG_PropagateClientData(void) {
15858 swig_cast_info
*equiv
;
15859 static int init_run
= 0;
15861 if (init_run
) return;
15864 for (i
= 0; i
< swig_module
.size
; i
++) {
15865 if (swig_module
.types
[i
]->clientdata
) {
15866 equiv
= swig_module
.types
[i
]->cast
;
15868 if (!equiv
->converter
) {
15869 if (equiv
->type
&& !equiv
->type
->clientdata
)
15870 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
15872 equiv
= equiv
->next
;
15892 /* Python-specific SWIG API */
15893 #define SWIG_newvarlink() SWIG_Python_newvarlink()
15894 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
15895 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
15897 /* -----------------------------------------------------------------------------
15898 * global variable support code.
15899 * ----------------------------------------------------------------------------- */
15901 typedef struct swig_globalvar
{
15902 char *name
; /* Name of global variable */
15903 PyObject
*(*get_attr
)(void); /* Return the current value */
15904 int (*set_attr
)(PyObject
*); /* Set the value */
15905 struct swig_globalvar
*next
;
15908 typedef struct swig_varlinkobject
{
15910 swig_globalvar
*vars
;
15911 } swig_varlinkobject
;
15913 SWIGINTERN PyObject
*
15914 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
15915 return PyString_FromString("<Swig global variables>");
15918 SWIGINTERN PyObject
*
15919 swig_varlink_str(swig_varlinkobject
*v
) {
15920 PyObject
*str
= PyString_FromString("(");
15921 swig_globalvar
*var
;
15922 for (var
= v
->vars
; var
; var
=var
->next
) {
15923 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
15924 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
15926 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
15931 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
15932 PyObject
*str
= swig_varlink_str(v
);
15933 fprintf(fp
,"Swig global variables ");
15934 fprintf(fp
,"%s\n", PyString_AsString(str
));
15940 swig_varlink_dealloc(swig_varlinkobject
*v
) {
15941 swig_globalvar
*var
= v
->vars
;
15943 swig_globalvar
*n
= var
->next
;
15950 SWIGINTERN PyObject
*
15951 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
15952 PyObject
*res
= NULL
;
15953 swig_globalvar
*var
= v
->vars
;
15955 if (strcmp(var
->name
,n
) == 0) {
15956 res
= (*var
->get_attr
)();
15961 if (res
== NULL
&& !PyErr_Occurred()) {
15962 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
15968 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
15970 swig_globalvar
*var
= v
->vars
;
15972 if (strcmp(var
->name
,n
) == 0) {
15973 res
= (*var
->set_attr
)(p
);
15978 if (res
== 1 && !PyErr_Occurred()) {
15979 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
15984 SWIGINTERN PyTypeObject
*
15985 swig_varlink_type(void) {
15986 static char varlink__doc__
[] = "Swig var link object";
15987 static PyTypeObject varlink_type
;
15988 static int type_init
= 0;
15990 const PyTypeObject tmp
15992 PyObject_HEAD_INIT(NULL
)
15993 0, /* Number of items in variable part (ob_size) */
15994 (char *)"swigvarlink", /* Type name (tp_name) */
15995 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
15996 0, /* Itemsize (tp_itemsize) */
15997 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
15998 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
15999 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
16000 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
16001 0, /* tp_compare */
16002 (reprfunc
) swig_varlink_repr
, /* tp_repr */
16003 0, /* tp_as_number */
16004 0, /* tp_as_sequence */
16005 0, /* tp_as_mapping */
16008 (reprfunc
)swig_varlink_str
, /* tp_str */
16009 0, /* tp_getattro */
16010 0, /* tp_setattro */
16011 0, /* tp_as_buffer */
16013 varlink__doc__
, /* tp_doc */
16014 0, /* tp_traverse */
16016 0, /* tp_richcompare */
16017 0, /* tp_weaklistoffset */
16018 #if PY_VERSION_HEX >= 0x02020000
16019 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
16021 #if PY_VERSION_HEX >= 0x02030000
16024 #ifdef COUNT_ALLOCS
16025 0,0,0,0 /* tp_alloc -> tp_next */
16028 varlink_type
= tmp
;
16029 varlink_type
.ob_type
= &PyType_Type
;
16032 return &varlink_type
;
16035 /* Create a variable linking object for use later */
16036 SWIGINTERN PyObject
*
16037 SWIG_Python_newvarlink(void) {
16038 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
16042 return ((PyObject
*) result
);
16046 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
16047 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
16048 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
16050 size_t size
= strlen(name
)+1;
16051 gv
->name
= (char *)malloc(size
);
16053 strncpy(gv
->name
,name
,size
);
16054 gv
->get_attr
= get_attr
;
16055 gv
->set_attr
= set_attr
;
16056 gv
->next
= v
->vars
;
16062 SWIGINTERN PyObject
*
16064 static PyObject
*_SWIG_globals
= 0;
16065 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
16066 return _SWIG_globals
;
16069 /* -----------------------------------------------------------------------------
16070 * constants/methods manipulation
16071 * ----------------------------------------------------------------------------- */
16073 /* Install Constants */
16075 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
16078 for (i
= 0; constants
[i
].type
; ++i
) {
16079 switch(constants
[i
].type
) {
16080 case SWIG_PY_POINTER
:
16081 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
16083 case SWIG_PY_BINARY
:
16084 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
16091 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
16097 /* -----------------------------------------------------------------------------*/
16098 /* Fix SwigMethods to carry the callback ptrs when needed */
16099 /* -----------------------------------------------------------------------------*/
16102 SWIG_Python_FixMethods(PyMethodDef
*methods
,
16103 swig_const_info
*const_table
,
16104 swig_type_info
**types
,
16105 swig_type_info
**types_initial
) {
16107 for (i
= 0; methods
[i
].ml_name
; ++i
) {
16108 const char *c
= methods
[i
].ml_doc
;
16109 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
16111 swig_const_info
*ci
= 0;
16112 const char *name
= c
+ 10;
16113 for (j
= 0; const_table
[j
].type
; ++j
) {
16114 if (strncmp(const_table
[j
].name
, name
,
16115 strlen(const_table
[j
].name
)) == 0) {
16116 ci
= &(const_table
[j
]);
16121 size_t shift
= (ci
->ptype
) - types
;
16122 swig_type_info
*ty
= types_initial
[shift
];
16123 size_t ldoc
= (c
- methods
[i
].ml_doc
);
16124 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
16125 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
16128 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
16130 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
16132 strncpy(buff
, "swig_ptr: ", 10);
16134 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
16135 methods
[i
].ml_doc
= ndoc
;
16147 /* -----------------------------------------------------------------------------*
16148 * Partial Init method
16149 * -----------------------------------------------------------------------------*/
16154 SWIGEXPORT
void SWIG_init(void) {
16157 /* Fix SwigMethods to carry the callback ptrs when needed */
16158 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
16160 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
16161 d
= PyModule_GetDict(m
);
16163 SWIG_InitializeModule(0);
16164 SWIG_InstallConstants(d
,swig_const_table
);
16167 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
16168 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
16169 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
16170 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
16171 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
16172 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
16173 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
16174 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
16175 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
16176 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
16177 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
16178 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
16179 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT_FADE
)));
16180 SWIG_Python_SetConstant(d
, "AUI_MGR_DISABLE_VENETIAN_BLINDS",SWIG_From_int(static_cast< int >(wxAUI_MGR_DISABLE_VENETIAN_BLINDS
)));
16181 SWIG_Python_SetConstant(d
, "AUI_MGR_DISABLE_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE
)));
16182 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
16183 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_SIZE
)));
16184 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_SIZE
)));
16185 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_SIZE
)));
16186 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BORDER_SIZE
)));
16187 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BUTTON_SIZE
)));
16188 SWIG_Python_SetConstant(d
, "AUI_ART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BACKGROUND_COLOUR
)));
16189 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_COLOUR
)));
16190 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_COLOUR
)));
16191 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
16192 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_COLOUR
)));
16193 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
16194 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
)));
16195 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
)));
16196 SWIG_Python_SetConstant(d
, "AUI_ART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BORDER_COLOUR
)));
16197 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_COLOUR
)));
16198 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_FONT
)));
16199 SWIG_Python_SetConstant(d
, "AUI_ART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRADIENT_TYPE
)));
16200 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
16201 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
16202 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
16203 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
16204 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
16205 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
16206 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
16207 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
16208 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
16209 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
16210 SWIG_addvarlink(SWIG_globals(),(char*)"NullDockInfo",NullDockInfo_get
, NullDockInfo_set
);
16211 SWIG_addvarlink(SWIG_globals(),(char*)"NullPaneInfo",NullPaneInfo_get
, NullPaneInfo_set
);
16212 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloating
)));
16213 SWIG_Python_SetConstant(d
, "PaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxPaneInfo::optionHidden
)));
16214 SWIG_Python_SetConstant(d
, "PaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionLeftDockable
)));
16215 SWIG_Python_SetConstant(d
, "PaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionRightDockable
)));
16216 SWIG_Python_SetConstant(d
, "PaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionTopDockable
)));
16217 SWIG_Python_SetConstant(d
, "PaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionBottomDockable
)));
16218 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloatable
)));
16219 SWIG_Python_SetConstant(d
, "PaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionMovable
)));
16220 SWIG_Python_SetConstant(d
, "PaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionResizable
)));
16221 SWIG_Python_SetConstant(d
, "PaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxPaneInfo::optionPaneBorder
)));
16222 SWIG_Python_SetConstant(d
, "PaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxPaneInfo::optionCaption
)));
16223 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripper
)));
16224 SWIG_Python_SetConstant(d
, "PaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxPaneInfo::optionDestroyOnClose
)));
16225 SWIG_Python_SetConstant(d
, "PaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxPaneInfo::optionToolbar
)));
16226 SWIG_Python_SetConstant(d
, "PaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxPaneInfo::optionActive
)));
16227 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripperTop
)));
16228 SWIG_Python_SetConstant(d
, "PaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonClose
)));
16229 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMaximize
)));
16230 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMinimize
)));
16231 SWIG_Python_SetConstant(d
, "PaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonPin
)));
16232 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom1
)));
16233 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom2
)));
16234 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom3
)));
16235 SWIG_Python_SetConstant(d
, "PaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxPaneInfo::actionPane
)));
16236 SWIG_Python_SetConstant(d
, "DockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxDockUIPart::typeCaption
)));
16237 SWIG_Python_SetConstant(d
, "DockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxDockUIPart::typeGripper
)));
16238 SWIG_Python_SetConstant(d
, "DockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDock
)));
16239 SWIG_Python_SetConstant(d
, "DockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDockSizer
)));
16240 SWIG_Python_SetConstant(d
, "DockUIPart_typePane",SWIG_From_int(static_cast< int >(wxDockUIPart::typePane
)));
16241 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneSizer
)));
16242 SWIG_Python_SetConstant(d
, "DockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxDockUIPart::typeBackground
)));
16243 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneBorder
)));
16244 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneButton
)));
16245 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
16246 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));
16247 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
16248 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
16249 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
16250 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
16251 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
16252 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
16253 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));