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_unsigned_char swig_types[3]
2470 #define SWIGTYPE_p_unsigned_int swig_types[4]
2471 #define SWIGTYPE_p_unsigned_long swig_types[5]
2472 #define SWIGTYPE_p_wxANIHandler swig_types[6]
2473 #define SWIGTYPE_p_wxAcceleratorTable swig_types[7]
2474 #define SWIGTYPE_p_wxActivateEvent swig_types[8]
2475 #define SWIGTYPE_p_wxBMPHandler swig_types[9]
2476 #define SWIGTYPE_p_wxBoxSizer swig_types[10]
2477 #define SWIGTYPE_p_wxCURHandler swig_types[11]
2478 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[12]
2479 #define SWIGTYPE_p_wxChildFocusEvent swig_types[13]
2480 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[14]
2481 #define SWIGTYPE_p_wxCloseEvent swig_types[15]
2482 #define SWIGTYPE_p_wxColor swig_types[16]
2483 #define SWIGTYPE_p_wxColour swig_types[17]
2484 #define SWIGTYPE_p_wxColourData swig_types[18]
2485 #define SWIGTYPE_p_wxColourDialog swig_types[19]
2486 #define SWIGTYPE_p_wxCommandEvent swig_types[20]
2487 #define SWIGTYPE_p_wxContextMenuEvent swig_types[21]
2488 #define SWIGTYPE_p_wxControl swig_types[22]
2489 #define SWIGTYPE_p_wxControlWithItems swig_types[23]
2490 #define SWIGTYPE_p_wxDC swig_types[24]
2491 #define SWIGTYPE_p_wxDateEvent swig_types[25]
2492 #define SWIGTYPE_p_wxDefaultDockArt swig_types[26]
2493 #define SWIGTYPE_p_wxDialog swig_types[27]
2494 #define SWIGTYPE_p_wxDirDialog swig_types[28]
2495 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[29]
2496 #define SWIGTYPE_p_wxDockArt swig_types[30]
2497 #define SWIGTYPE_p_wxDockInfo swig_types[31]
2498 #define SWIGTYPE_p_wxDockUIPart swig_types[32]
2499 #define SWIGTYPE_p_wxDropFilesEvent swig_types[33]
2500 #define SWIGTYPE_p_wxDuplexMode swig_types[34]
2501 #define SWIGTYPE_p_wxEraseEvent swig_types[35]
2502 #define SWIGTYPE_p_wxEvent swig_types[36]
2503 #define SWIGTYPE_p_wxEvtHandler swig_types[37]
2504 #define SWIGTYPE_p_wxFSFile swig_types[38]
2505 #define SWIGTYPE_p_wxFileDialog swig_types[39]
2506 #define SWIGTYPE_p_wxFileSystem swig_types[40]
2507 #define SWIGTYPE_p_wxFindDialogEvent swig_types[41]
2508 #define SWIGTYPE_p_wxFindReplaceData swig_types[42]
2509 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[43]
2510 #define SWIGTYPE_p_wxFlexGridSizer swig_types[44]
2511 #define SWIGTYPE_p_wxFloatingPane swig_types[45]
2512 #define SWIGTYPE_p_wxFocusEvent swig_types[46]
2513 #define SWIGTYPE_p_wxFont swig_types[47]
2514 #define SWIGTYPE_p_wxFontData swig_types[48]
2515 #define SWIGTYPE_p_wxFontDialog swig_types[49]
2516 #define SWIGTYPE_p_wxFrame swig_types[50]
2517 #define SWIGTYPE_p_wxFrameManager swig_types[51]
2518 #define SWIGTYPE_p_wxFrameManagerEvent swig_types[52]
2519 #define SWIGTYPE_p_wxGBSizerItem swig_types[53]
2520 #define SWIGTYPE_p_wxGIFHandler swig_types[54]
2521 #define SWIGTYPE_p_wxGridBagSizer swig_types[55]
2522 #define SWIGTYPE_p_wxGridSizer swig_types[56]
2523 #define SWIGTYPE_p_wxICOHandler swig_types[57]
2524 #define SWIGTYPE_p_wxIconizeEvent swig_types[58]
2525 #define SWIGTYPE_p_wxIdleEvent swig_types[59]
2526 #define SWIGTYPE_p_wxImage swig_types[60]
2527 #define SWIGTYPE_p_wxImageHandler swig_types[61]
2528 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[62]
2529 #define SWIGTYPE_p_wxInitDialogEvent swig_types[63]
2530 #define SWIGTYPE_p_wxJPEGHandler swig_types[64]
2531 #define SWIGTYPE_p_wxKeyEvent swig_types[65]
2532 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[66]
2533 #define SWIGTYPE_p_wxLayoutConstraints swig_types[67]
2534 #define SWIGTYPE_p_wxMDIChildFrame swig_types[68]
2535 #define SWIGTYPE_p_wxMDIClientWindow swig_types[69]
2536 #define SWIGTYPE_p_wxMDIParentFrame swig_types[70]
2537 #define SWIGTYPE_p_wxMaximizeEvent swig_types[71]
2538 #define SWIGTYPE_p_wxMenu swig_types[72]
2539 #define SWIGTYPE_p_wxMenuBar swig_types[73]
2540 #define SWIGTYPE_p_wxMenuEvent swig_types[74]
2541 #define SWIGTYPE_p_wxMenuItem swig_types[75]
2542 #define SWIGTYPE_p_wxMessageDialog swig_types[76]
2543 #define SWIGTYPE_p_wxMiniFrame swig_types[77]
2544 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[78]
2545 #define SWIGTYPE_p_wxMouseEvent swig_types[79]
2546 #define SWIGTYPE_p_wxMoveEvent swig_types[80]
2547 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[81]
2548 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[82]
2549 #define SWIGTYPE_p_wxNcPaintEvent swig_types[83]
2550 #define SWIGTYPE_p_wxNotifyEvent swig_types[84]
2551 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[85]
2552 #define SWIGTYPE_p_wxObject swig_types[86]
2553 #define SWIGTYPE_p_wxPCXHandler swig_types[87]
2554 #define SWIGTYPE_p_wxPNGHandler swig_types[88]
2555 #define SWIGTYPE_p_wxPNMHandler swig_types[89]
2556 #define SWIGTYPE_p_wxPageSetupDialog swig_types[90]
2557 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[91]
2558 #define SWIGTYPE_p_wxPaintEvent swig_types[92]
2559 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[93]
2560 #define SWIGTYPE_p_wxPaneButton swig_types[94]
2561 #define SWIGTYPE_p_wxPaneButtonArray swig_types[95]
2562 #define SWIGTYPE_p_wxPaneInfo swig_types[96]
2563 #define SWIGTYPE_p_wxPaneInfoPtrArray swig_types[97]
2564 #define SWIGTYPE_p_wxPanel swig_types[98]
2565 #define SWIGTYPE_p_wxPaperSize swig_types[99]
2566 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[100]
2567 #define SWIGTYPE_p_wxPoint swig_types[101]
2568 #define SWIGTYPE_p_wxPopupWindow swig_types[102]
2569 #define SWIGTYPE_p_wxPreviewCanvas swig_types[103]
2570 #define SWIGTYPE_p_wxPreviewControlBar swig_types[104]
2571 #define SWIGTYPE_p_wxPreviewFrame swig_types[105]
2572 #define SWIGTYPE_p_wxPrintData swig_types[106]
2573 #define SWIGTYPE_p_wxPrintDialog swig_types[107]
2574 #define SWIGTYPE_p_wxPrintDialogData swig_types[108]
2575 #define SWIGTYPE_p_wxPrintPreview swig_types[109]
2576 #define SWIGTYPE_p_wxPrinter swig_types[110]
2577 #define SWIGTYPE_p_wxProgressDialog swig_types[111]
2578 #define SWIGTYPE_p_wxPyApp swig_types[112]
2579 #define SWIGTYPE_p_wxPyCommandEvent swig_types[113]
2580 #define SWIGTYPE_p_wxPyDockArt swig_types[114]
2581 #define SWIGTYPE_p_wxPyEvent swig_types[115]
2582 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[116]
2583 #define SWIGTYPE_p_wxPyImageHandler swig_types[117]
2584 #define SWIGTYPE_p_wxPyPanel swig_types[118]
2585 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[119]
2586 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[120]
2587 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[121]
2588 #define SWIGTYPE_p_wxPyPrintPreview swig_types[122]
2589 #define SWIGTYPE_p_wxPyPrintout swig_types[123]
2590 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[124]
2591 #define SWIGTYPE_p_wxPySizer swig_types[125]
2592 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[126]
2593 #define SWIGTYPE_p_wxPyVListBox swig_types[127]
2594 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[128]
2595 #define SWIGTYPE_p_wxPyValidator swig_types[129]
2596 #define SWIGTYPE_p_wxPyWindow swig_types[130]
2597 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[131]
2598 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[132]
2599 #define SWIGTYPE_p_wxRect swig_types[133]
2600 #define SWIGTYPE_p_wxSashEvent swig_types[134]
2601 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[135]
2602 #define SWIGTYPE_p_wxSashWindow swig_types[136]
2603 #define SWIGTYPE_p_wxScrollEvent swig_types[137]
2604 #define SWIGTYPE_p_wxScrollWinEvent swig_types[138]
2605 #define SWIGTYPE_p_wxScrolledWindow swig_types[139]
2606 #define SWIGTYPE_p_wxSetCursorEvent swig_types[140]
2607 #define SWIGTYPE_p_wxShowEvent swig_types[141]
2608 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[142]
2609 #define SWIGTYPE_p_wxSize swig_types[143]
2610 #define SWIGTYPE_p_wxSizeEvent swig_types[144]
2611 #define SWIGTYPE_p_wxSizer swig_types[145]
2612 #define SWIGTYPE_p_wxSizerItem swig_types[146]
2613 #define SWIGTYPE_p_wxSplashScreen swig_types[147]
2614 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[148]
2615 #define SWIGTYPE_p_wxSplitterEvent swig_types[149]
2616 #define SWIGTYPE_p_wxSplitterWindow swig_types[150]
2617 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[151]
2618 #define SWIGTYPE_p_wxStatusBar swig_types[152]
2619 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[153]
2620 #define SWIGTYPE_p_wxString swig_types[154]
2621 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[155]
2622 #define SWIGTYPE_p_wxTIFFHandler swig_types[156]
2623 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[157]
2624 #define SWIGTYPE_p_wxTextEntryDialog swig_types[158]
2625 #define SWIGTYPE_p_wxTipWindow swig_types[159]
2626 #define SWIGTYPE_p_wxTopLevelWindow swig_types[160]
2627 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[161]
2628 #define SWIGTYPE_p_wxValidator swig_types[162]
2629 #define SWIGTYPE_p_wxWindow swig_types[163]
2630 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[164]
2631 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[165]
2632 #define SWIGTYPE_p_wxXPMHandler swig_types[166]
2633 static swig_type_info
*swig_types
[168];
2634 static swig_module_info swig_module
= {swig_types
, 167, 0, 0, 0, 0};
2635 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2636 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2638 /* -------- TYPES TABLE (END) -------- */
2640 #if (PY_VERSION_HEX <= 0x02000000)
2641 # if !defined(SWIG_PYTHON_CLASSIC)
2642 # error "This python version requires to use swig with the '-classic' option"
2645 #if (PY_VERSION_HEX <= 0x02020000)
2646 # error "This python version requires to use swig with the '-nomodern' option"
2648 #if (PY_VERSION_HEX <= 0x02020000)
2649 # error "This python version requires to use swig with the '-nomodernargs' option"
2652 # error "This python version requires to use swig with the '-nofastunpack' option"
2655 /*-----------------------------------------------
2657 ------------------------------------------------*/
2658 #define SWIG_init init_aui
2660 #define SWIG_name "_aui"
2662 #define SWIGVERSION 0x010329
2665 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2666 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2669 #include <stdexcept>
2673 class PyObject_ptr
{
2678 PyObject_ptr() :_obj(0)
2682 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2687 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2689 if (initial_ref
) Py_XINCREF(_obj
);
2692 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2694 Py_XINCREF(item
._obj
);
2705 operator PyObject
*() const
2710 PyObject
*operator->() const
2719 struct PyObject_var
: PyObject_ptr
{
2720 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2722 PyObject_var
& operator = (PyObject
* obj
)
2732 #include "wx/wxPython/wxPython.h"
2733 #include "wx/wxPython/pyclasses.h"
2734 #include <wx/aui/aui.h>
2737 #define SWIG_From_long PyInt_FromLong
2740 SWIGINTERNINLINE PyObject
*
2741 SWIG_From_int (int value
)
2743 return SWIG_From_long (value
);
2749 # define LLONG_MIN LONG_LONG_MIN
2752 # define LLONG_MAX LONG_LONG_MAX
2755 # define ULLONG_MAX ULONG_LONG_MAX
2760 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2762 if (PyNumber_Check(obj
)) {
2763 if (val
) *val
= PyInt_AsLong(obj
);
2766 return SWIG_TypeError
;
2771 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2774 int res
= SWIG_AsVal_long (obj
, &v
);
2775 if (SWIG_IsOK(res
)) {
2776 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2777 return SWIG_OverflowError
;
2779 if (val
) *val
= static_cast< int >(v
);
2787 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2789 if (obj
== Py_True
) {
2790 if (val
) *val
= true;
2792 } else if (obj
== Py_False
) {
2793 if (val
) *val
= false;
2797 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2798 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2804 class wxPyDockArt
: public wxDefaultDockArt
2806 wxPyDockArt() : wxDefaultDockArt() {}
2808 DEC_PYCALLBACK_INT_INT(GetMetric
);
2809 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2810 DEC_PYCALLBACK__INTFONT(SetFont
);
2811 DEC_PYCALLBACK_FONT_INT(GetFont
);
2812 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2813 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2815 virtual void DrawSash(wxDC
& dc
,
2820 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2821 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2822 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2823 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2824 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiO)",
2825 odc
, orientation
, orect
));
2829 wxPyEndBlockThreads(blocked
);
2831 wxDefaultDockArt::DrawSash(dc
, orientation
, rect
);
2834 virtual void DrawBackground(wxDC
& dc
,
2839 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2840 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2841 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2842 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2843 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiO)",
2844 odc
, orientation
, orect
));
2848 wxPyEndBlockThreads(blocked
);
2850 wxDefaultDockArt::DrawBackground(dc
, orientation
, rect
);
2853 virtual void DrawCaption(wxDC
& dc
,
2854 const wxString
& text
,
2859 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2860 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2861 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2862 PyObject
* otext
= wx2PyString(text
);
2863 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2864 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2865 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)",
2866 odc
, otext
, orect
, opane
));
2872 wxPyEndBlockThreads(blocked
);
2874 wxDefaultDockArt::DrawCaption(dc
, text
, rect
, pane
);
2877 virtual void DrawGripper(wxDC
& dc
,
2882 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2883 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
2884 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2885 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2886 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2887 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
2892 wxPyEndBlockThreads(blocked
);
2894 wxDefaultDockArt::DrawGripper(dc
, rect
, pane
);
2897 virtual void DrawBorder(wxDC
& dc
,
2902 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2903 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
2904 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2905 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2906 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2907 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
2912 wxPyEndBlockThreads(blocked
);
2914 wxDefaultDockArt::DrawBorder(dc
, rect
, pane
);
2917 virtual void DrawPaneButton(wxDC
& dc
,
2924 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2925 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
2926 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2927 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2928 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2929 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OiIOO)",
2930 odc
, button
, button_state
,
2936 wxPyEndBlockThreads(blocked
);
2938 wxDefaultDockArt::DrawPaneButton(dc
, button
, button_state
, rect
, pane
);
2945 IMP_PYCALLBACK_INT_INT(wxPyDockArt
, wxDefaultDockArt
, GetMetric
);
2946 IMP_PYCALLBACK_VOID_INTINT(wxPyDockArt
, wxDefaultDockArt
, SetMetric
);
2947 IMP_PYCALLBACK__INTFONT(wxPyDockArt
, wxDefaultDockArt
, SetFont
);
2948 IMP_PYCALLBACK_FONT_INT(wxPyDockArt
, wxDefaultDockArt
, GetFont
);
2949 IMP_PYCALLBACK_COLOUR_INT(wxPyDockArt
, wxDefaultDockArt
, GetColour
);
2950 IMP_PYCALLBACK__INTCOLOUR(wxPyDockArt
, wxDefaultDockArt
, SetColour
);
2956 SWIGINTERN
int NullDockInfo_set(PyObject
*_val
) {
2959 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxDockInfo
, 0 | 0);
2960 if (!SWIG_IsOK(res
)) {
2961 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
2964 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
2967 temp
= reinterpret_cast< wxDockInfo
* >(argp
);
2968 wxNullDockInfo
= *temp
;
2969 if (SWIG_IsNewObj(res
)) delete temp
;
2978 SWIGINTERN PyObject
*NullDockInfo_get(void) {
2979 PyObject
*pyobj
= 0;
2981 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullDockInfo
), SWIGTYPE_p_wxDockInfo
, 0 );
2986 SWIGINTERN
int NullPaneInfo_set(PyObject
*_val
) {
2989 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
2990 if (!SWIG_IsOK(res
)) {
2991 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
2994 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
2997 temp
= reinterpret_cast< wxPaneInfo
* >(argp
);
2998 wxNullPaneInfo
= *temp
;
2999 if (SWIG_IsNewObj(res
)) delete temp
;
3008 SWIGINTERN PyObject
*NullPaneInfo_get(void) {
3009 PyObject
*pyobj
= 0;
3011 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullPaneInfo
), SWIGTYPE_p_wxPaneInfo
, 0 );
3016 SWIGINTERN PyObject
*_wrap_new_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3017 PyObject
*resultobj
= 0;
3018 wxPaneInfo
*result
= 0 ;
3020 if (!SWIG_Python_UnpackTuple(args
,"new_PaneInfo",0,0,0)) SWIG_fail
;
3022 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3023 result
= (wxPaneInfo
*)new wxPaneInfo();
3024 wxPyEndAllowThreads(__tstate
);
3025 if (PyErr_Occurred()) SWIG_fail
;
3027 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_NEW
| 0 );
3034 SWIGINTERN PyObject
*_wrap_delete_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3035 PyObject
*resultobj
= 0;
3036 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3039 PyObject
*swig_obj
[1] ;
3041 if (!args
) SWIG_fail
;
3043 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3044 if (!SWIG_IsOK(res1
)) {
3045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PaneInfo" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3047 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3049 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3052 wxPyEndAllowThreads(__tstate
);
3053 if (PyErr_Occurred()) SWIG_fail
;
3055 resultobj
= SWIG_Py_Void();
3062 SWIGINTERN PyObject
*_wrap_PaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3063 PyObject
*resultobj
= 0;
3064 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3068 PyObject
*swig_obj
[1] ;
3070 if (!args
) SWIG_fail
;
3072 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3073 if (!SWIG_IsOK(res1
)) {
3074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsOk" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3076 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3079 result
= (bool)((wxPaneInfo
const *)arg1
)->IsOk();
3080 wxPyEndAllowThreads(__tstate
);
3081 if (PyErr_Occurred()) SWIG_fail
;
3084 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3092 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3093 PyObject
*resultobj
= 0;
3094 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3098 PyObject
*swig_obj
[1] ;
3100 if (!args
) SWIG_fail
;
3102 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3103 if (!SWIG_IsOK(res1
)) {
3104 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3106 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3109 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFixed();
3110 wxPyEndAllowThreads(__tstate
);
3111 if (PyErr_Occurred()) SWIG_fail
;
3114 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3122 SWIGINTERN PyObject
*_wrap_PaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3123 PyObject
*resultobj
= 0;
3124 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3128 PyObject
*swig_obj
[1] ;
3130 if (!args
) SWIG_fail
;
3132 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3133 if (!SWIG_IsOK(res1
)) {
3134 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3136 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3138 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3139 result
= (bool)((wxPaneInfo
const *)arg1
)->IsResizable();
3140 wxPyEndAllowThreads(__tstate
);
3141 if (PyErr_Occurred()) SWIG_fail
;
3144 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3152 SWIGINTERN PyObject
*_wrap_PaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3153 PyObject
*resultobj
= 0;
3154 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3158 PyObject
*swig_obj
[1] ;
3160 if (!args
) SWIG_fail
;
3162 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3163 if (!SWIG_IsOK(res1
)) {
3164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsShown" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3166 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3169 result
= (bool)((wxPaneInfo
const *)arg1
)->IsShown();
3170 wxPyEndAllowThreads(__tstate
);
3171 if (PyErr_Occurred()) SWIG_fail
;
3174 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3182 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3183 PyObject
*resultobj
= 0;
3184 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3188 PyObject
*swig_obj
[1] ;
3190 if (!args
) SWIG_fail
;
3192 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3193 if (!SWIG_IsOK(res1
)) {
3194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3196 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3199 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloating();
3200 wxPyEndAllowThreads(__tstate
);
3201 if (PyErr_Occurred()) SWIG_fail
;
3204 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3212 SWIGINTERN PyObject
*_wrap_PaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3213 PyObject
*resultobj
= 0;
3214 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3218 PyObject
*swig_obj
[1] ;
3220 if (!args
) SWIG_fail
;
3222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3223 if (!SWIG_IsOK(res1
)) {
3224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3226 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3229 result
= (bool)((wxPaneInfo
const *)arg1
)->IsDocked();
3230 wxPyEndAllowThreads(__tstate
);
3231 if (PyErr_Occurred()) SWIG_fail
;
3234 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3242 SWIGINTERN PyObject
*_wrap_PaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3243 PyObject
*resultobj
= 0;
3244 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3248 PyObject
*swig_obj
[1] ;
3250 if (!args
) SWIG_fail
;
3252 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3253 if (!SWIG_IsOK(res1
)) {
3254 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3256 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3258 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3259 result
= (bool)((wxPaneInfo
const *)arg1
)->IsToolbar();
3260 wxPyEndAllowThreads(__tstate
);
3261 if (PyErr_Occurred()) SWIG_fail
;
3264 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3272 SWIGINTERN PyObject
*_wrap_PaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3273 PyObject
*resultobj
= 0;
3274 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3278 PyObject
*swig_obj
[1] ;
3280 if (!args
) SWIG_fail
;
3282 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3283 if (!SWIG_IsOK(res1
)) {
3284 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3286 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3289 result
= (bool)((wxPaneInfo
const *)arg1
)->IsTopDockable();
3290 wxPyEndAllowThreads(__tstate
);
3291 if (PyErr_Occurred()) SWIG_fail
;
3294 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3302 SWIGINTERN PyObject
*_wrap_PaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3303 PyObject
*resultobj
= 0;
3304 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3308 PyObject
*swig_obj
[1] ;
3310 if (!args
) SWIG_fail
;
3312 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3313 if (!SWIG_IsOK(res1
)) {
3314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3316 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3319 result
= (bool)((wxPaneInfo
const *)arg1
)->IsBottomDockable();
3320 wxPyEndAllowThreads(__tstate
);
3321 if (PyErr_Occurred()) SWIG_fail
;
3324 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3332 SWIGINTERN PyObject
*_wrap_PaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3333 PyObject
*resultobj
= 0;
3334 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3338 PyObject
*swig_obj
[1] ;
3340 if (!args
) SWIG_fail
;
3342 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3343 if (!SWIG_IsOK(res1
)) {
3344 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3346 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3349 result
= (bool)((wxPaneInfo
const *)arg1
)->IsLeftDockable();
3350 wxPyEndAllowThreads(__tstate
);
3351 if (PyErr_Occurred()) SWIG_fail
;
3354 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3362 SWIGINTERN PyObject
*_wrap_PaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3363 PyObject
*resultobj
= 0;
3364 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3368 PyObject
*swig_obj
[1] ;
3370 if (!args
) SWIG_fail
;
3372 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3373 if (!SWIG_IsOK(res1
)) {
3374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3376 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3379 result
= (bool)((wxPaneInfo
const *)arg1
)->IsRightDockable();
3380 wxPyEndAllowThreads(__tstate
);
3381 if (PyErr_Occurred()) SWIG_fail
;
3384 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3392 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3393 PyObject
*resultobj
= 0;
3394 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3398 PyObject
*swig_obj
[1] ;
3400 if (!args
) SWIG_fail
;
3402 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3403 if (!SWIG_IsOK(res1
)) {
3404 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3406 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3408 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3409 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloatable();
3410 wxPyEndAllowThreads(__tstate
);
3411 if (PyErr_Occurred()) SWIG_fail
;
3414 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3422 SWIGINTERN PyObject
*_wrap_PaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3423 PyObject
*resultobj
= 0;
3424 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3428 PyObject
*swig_obj
[1] ;
3430 if (!args
) SWIG_fail
;
3432 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3433 if (!SWIG_IsOK(res1
)) {
3434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3436 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3439 result
= (bool)((wxPaneInfo
const *)arg1
)->IsMovable();
3440 wxPyEndAllowThreads(__tstate
);
3441 if (PyErr_Occurred()) SWIG_fail
;
3444 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3452 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3453 PyObject
*resultobj
= 0;
3454 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3458 PyObject
*swig_obj
[1] ;
3460 if (!args
) SWIG_fail
;
3462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3463 if (!SWIG_IsOK(res1
)) {
3464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3466 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3469 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCaption();
3470 wxPyEndAllowThreads(__tstate
);
3471 if (PyErr_Occurred()) SWIG_fail
;
3474 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3482 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3483 PyObject
*resultobj
= 0;
3484 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3488 PyObject
*swig_obj
[1] ;
3490 if (!args
) SWIG_fail
;
3492 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3493 if (!SWIG_IsOK(res1
)) {
3494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3496 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3499 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripper();
3500 wxPyEndAllowThreads(__tstate
);
3501 if (PyErr_Occurred()) SWIG_fail
;
3504 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3512 SWIGINTERN PyObject
*_wrap_PaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3513 PyObject
*resultobj
= 0;
3514 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3518 PyObject
*swig_obj
[1] ;
3520 if (!args
) SWIG_fail
;
3522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3523 if (!SWIG_IsOK(res1
)) {
3524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3526 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3529 result
= (bool)((wxPaneInfo
const *)arg1
)->HasBorder();
3530 wxPyEndAllowThreads(__tstate
);
3531 if (PyErr_Occurred()) SWIG_fail
;
3534 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3542 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3543 PyObject
*resultobj
= 0;
3544 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3548 PyObject
*swig_obj
[1] ;
3550 if (!args
) SWIG_fail
;
3552 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3553 if (!SWIG_IsOK(res1
)) {
3554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3556 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3559 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCloseButton();
3560 wxPyEndAllowThreads(__tstate
);
3561 if (PyErr_Occurred()) SWIG_fail
;
3564 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3572 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3573 PyObject
*resultobj
= 0;
3574 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3578 PyObject
*swig_obj
[1] ;
3580 if (!args
) SWIG_fail
;
3582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3583 if (!SWIG_IsOK(res1
)) {
3584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3586 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3589 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMaximizeButton();
3590 wxPyEndAllowThreads(__tstate
);
3591 if (PyErr_Occurred()) SWIG_fail
;
3594 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3602 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3603 PyObject
*resultobj
= 0;
3604 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3608 PyObject
*swig_obj
[1] ;
3610 if (!args
) SWIG_fail
;
3612 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3613 if (!SWIG_IsOK(res1
)) {
3614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3616 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3619 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMinimizeButton();
3620 wxPyEndAllowThreads(__tstate
);
3621 if (PyErr_Occurred()) SWIG_fail
;
3624 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3632 SWIGINTERN PyObject
*_wrap_PaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3633 PyObject
*resultobj
= 0;
3634 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3638 PyObject
*swig_obj
[1] ;
3640 if (!args
) SWIG_fail
;
3642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3643 if (!SWIG_IsOK(res1
)) {
3644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3646 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3649 result
= (bool)((wxPaneInfo
const *)arg1
)->HasPinButton();
3650 wxPyEndAllowThreads(__tstate
);
3651 if (PyErr_Occurred()) SWIG_fail
;
3654 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3662 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3663 PyObject
*resultobj
= 0;
3664 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3668 PyObject
*swig_obj
[1] ;
3670 if (!args
) SWIG_fail
;
3672 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3673 if (!SWIG_IsOK(res1
)) {
3674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3676 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3679 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripperTop();
3680 wxPyEndAllowThreads(__tstate
);
3681 if (PyErr_Occurred()) SWIG_fail
;
3684 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3692 SWIGINTERN PyObject
*_wrap_PaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3693 PyObject
*resultobj
= 0;
3694 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3695 wxWindow
*arg2
= (wxWindow
*) 0 ;
3696 wxPaneInfo
*result
= 0 ;
3701 PyObject
* obj0
= 0 ;
3702 PyObject
* obj1
= 0 ;
3703 char * kwnames
[] = {
3704 (char *) "self",(char *) "w", NULL
3707 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3708 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3709 if (!SWIG_IsOK(res1
)) {
3710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Window" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3712 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3713 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3714 if (!SWIG_IsOK(res2
)) {
3715 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
3717 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
3719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3721 wxPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
3722 result
= (wxPaneInfo
*) &_result_ref
;
3724 wxPyEndAllowThreads(__tstate
);
3725 if (PyErr_Occurred()) SWIG_fail
;
3728 resultobj
= obj0
; Py_INCREF(resultobj
);
3736 SWIGINTERN PyObject
*_wrap_PaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3737 PyObject
*resultobj
= 0;
3738 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3739 wxString
*arg2
= 0 ;
3740 wxPaneInfo
*result
= 0 ;
3743 bool temp2
= false ;
3744 PyObject
* obj0
= 0 ;
3745 PyObject
* obj1
= 0 ;
3746 char * kwnames
[] = {
3747 (char *) "self",(char *) "n", NULL
3750 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3751 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3752 if (!SWIG_IsOK(res1
)) {
3753 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Name" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3755 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3757 arg2
= wxString_in_helper(obj1
);
3758 if (arg2
== NULL
) SWIG_fail
;
3762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3764 wxPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
3765 result
= (wxPaneInfo
*) &_result_ref
;
3767 wxPyEndAllowThreads(__tstate
);
3768 if (PyErr_Occurred()) SWIG_fail
;
3771 resultobj
= obj0
; Py_INCREF(resultobj
);
3787 SWIGINTERN PyObject
*_wrap_PaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3788 PyObject
*resultobj
= 0;
3789 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3790 wxString
*arg2
= 0 ;
3791 wxPaneInfo
*result
= 0 ;
3794 bool temp2
= false ;
3795 PyObject
* obj0
= 0 ;
3796 PyObject
* obj1
= 0 ;
3797 char * kwnames
[] = {
3798 (char *) "self",(char *) "c", NULL
3801 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3802 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3803 if (!SWIG_IsOK(res1
)) {
3804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Caption" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3806 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3808 arg2
= wxString_in_helper(obj1
);
3809 if (arg2
== NULL
) SWIG_fail
;
3813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3815 wxPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
3816 result
= (wxPaneInfo
*) &_result_ref
;
3818 wxPyEndAllowThreads(__tstate
);
3819 if (PyErr_Occurred()) SWIG_fail
;
3822 resultobj
= obj0
; Py_INCREF(resultobj
);
3838 SWIGINTERN PyObject
*_wrap_PaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3839 PyObject
*resultobj
= 0;
3840 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3841 wxPaneInfo
*result
= 0 ;
3844 PyObject
*swig_obj
[1] ;
3846 if (!args
) SWIG_fail
;
3848 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3849 if (!SWIG_IsOK(res1
)) {
3850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Left" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3852 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3856 wxPaneInfo
&_result_ref
= (arg1
)->Left();
3857 result
= (wxPaneInfo
*) &_result_ref
;
3859 wxPyEndAllowThreads(__tstate
);
3860 if (PyErr_Occurred()) SWIG_fail
;
3863 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
3871 SWIGINTERN PyObject
*_wrap_PaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3872 PyObject
*resultobj
= 0;
3873 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3874 wxPaneInfo
*result
= 0 ;
3877 PyObject
*swig_obj
[1] ;
3879 if (!args
) SWIG_fail
;
3881 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3882 if (!SWIG_IsOK(res1
)) {
3883 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Right" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3885 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3887 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3889 wxPaneInfo
&_result_ref
= (arg1
)->Right();
3890 result
= (wxPaneInfo
*) &_result_ref
;
3892 wxPyEndAllowThreads(__tstate
);
3893 if (PyErr_Occurred()) SWIG_fail
;
3896 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
3904 SWIGINTERN PyObject
*_wrap_PaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3905 PyObject
*resultobj
= 0;
3906 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3907 wxPaneInfo
*result
= 0 ;
3910 PyObject
*swig_obj
[1] ;
3912 if (!args
) SWIG_fail
;
3914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3915 if (!SWIG_IsOK(res1
)) {
3916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Top" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3918 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3922 wxPaneInfo
&_result_ref
= (arg1
)->Top();
3923 result
= (wxPaneInfo
*) &_result_ref
;
3925 wxPyEndAllowThreads(__tstate
);
3926 if (PyErr_Occurred()) SWIG_fail
;
3929 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
3937 SWIGINTERN PyObject
*_wrap_PaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3938 PyObject
*resultobj
= 0;
3939 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3940 wxPaneInfo
*result
= 0 ;
3943 PyObject
*swig_obj
[1] ;
3945 if (!args
) SWIG_fail
;
3947 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3948 if (!SWIG_IsOK(res1
)) {
3949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Bottom" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3951 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3953 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3955 wxPaneInfo
&_result_ref
= (arg1
)->Bottom();
3956 result
= (wxPaneInfo
*) &_result_ref
;
3958 wxPyEndAllowThreads(__tstate
);
3959 if (PyErr_Occurred()) SWIG_fail
;
3962 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
3970 SWIGINTERN PyObject
*_wrap_PaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3971 PyObject
*resultobj
= 0;
3972 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3973 wxPaneInfo
*result
= 0 ;
3976 PyObject
*swig_obj
[1] ;
3978 if (!args
) SWIG_fail
;
3980 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3981 if (!SWIG_IsOK(res1
)) {
3982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Center" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3984 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3988 wxPaneInfo
&_result_ref
= (arg1
)->Center();
3989 result
= (wxPaneInfo
*) &_result_ref
;
3991 wxPyEndAllowThreads(__tstate
);
3992 if (PyErr_Occurred()) SWIG_fail
;
3995 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4003 SWIGINTERN PyObject
*_wrap_PaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4004 PyObject
*resultobj
= 0;
4005 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4006 wxPaneInfo
*result
= 0 ;
4009 PyObject
*swig_obj
[1] ;
4011 if (!args
) SWIG_fail
;
4013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4014 if (!SWIG_IsOK(res1
)) {
4015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Centre" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4017 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4021 wxPaneInfo
&_result_ref
= (arg1
)->Centre();
4022 result
= (wxPaneInfo
*) &_result_ref
;
4024 wxPyEndAllowThreads(__tstate
);
4025 if (PyErr_Occurred()) SWIG_fail
;
4028 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4036 SWIGINTERN PyObject
*_wrap_PaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4037 PyObject
*resultobj
= 0;
4038 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4040 wxPaneInfo
*result
= 0 ;
4045 PyObject
* obj0
= 0 ;
4046 PyObject
* obj1
= 0 ;
4047 char * kwnames
[] = {
4048 (char *) "self",(char *) "direction", NULL
4051 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4052 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4053 if (!SWIG_IsOK(res1
)) {
4054 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Direction" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4056 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4057 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4058 if (!SWIG_IsOK(ecode2
)) {
4059 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4061 arg2
= static_cast< int >(val2
);
4063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4065 wxPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4066 result
= (wxPaneInfo
*) &_result_ref
;
4068 wxPyEndAllowThreads(__tstate
);
4069 if (PyErr_Occurred()) SWIG_fail
;
4072 resultobj
= obj0
; Py_INCREF(resultobj
);
4080 SWIGINTERN PyObject
*_wrap_PaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4081 PyObject
*resultobj
= 0;
4082 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4084 wxPaneInfo
*result
= 0 ;
4089 PyObject
* obj0
= 0 ;
4090 PyObject
* obj1
= 0 ;
4091 char * kwnames
[] = {
4092 (char *) "self",(char *) "layer", NULL
4095 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4096 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4097 if (!SWIG_IsOK(res1
)) {
4098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Layer" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4100 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4101 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4102 if (!SWIG_IsOK(ecode2
)) {
4103 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4105 arg2
= static_cast< int >(val2
);
4107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4109 wxPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4110 result
= (wxPaneInfo
*) &_result_ref
;
4112 wxPyEndAllowThreads(__tstate
);
4113 if (PyErr_Occurred()) SWIG_fail
;
4116 resultobj
= obj0
; Py_INCREF(resultobj
);
4124 SWIGINTERN PyObject
*_wrap_PaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4125 PyObject
*resultobj
= 0;
4126 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4128 wxPaneInfo
*result
= 0 ;
4133 PyObject
* obj0
= 0 ;
4134 PyObject
* obj1
= 0 ;
4135 char * kwnames
[] = {
4136 (char *) "self",(char *) "row", NULL
4139 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4140 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4141 if (!SWIG_IsOK(res1
)) {
4142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Row" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4144 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4145 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4146 if (!SWIG_IsOK(ecode2
)) {
4147 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4149 arg2
= static_cast< int >(val2
);
4151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4153 wxPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4154 result
= (wxPaneInfo
*) &_result_ref
;
4156 wxPyEndAllowThreads(__tstate
);
4157 if (PyErr_Occurred()) SWIG_fail
;
4160 resultobj
= obj0
; Py_INCREF(resultobj
);
4168 SWIGINTERN PyObject
*_wrap_PaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4169 PyObject
*resultobj
= 0;
4170 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4172 wxPaneInfo
*result
= 0 ;
4177 PyObject
* obj0
= 0 ;
4178 PyObject
* obj1
= 0 ;
4179 char * kwnames
[] = {
4180 (char *) "self",(char *) "pos", NULL
4183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4185 if (!SWIG_IsOK(res1
)) {
4186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Position" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4188 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4190 if (!SWIG_IsOK(ecode2
)) {
4191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4193 arg2
= static_cast< int >(val2
);
4195 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4197 wxPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4198 result
= (wxPaneInfo
*) &_result_ref
;
4200 wxPyEndAllowThreads(__tstate
);
4201 if (PyErr_Occurred()) SWIG_fail
;
4204 resultobj
= obj0
; Py_INCREF(resultobj
);
4212 SWIGINTERN PyObject
*_wrap_PaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4213 PyObject
*resultobj
= 0;
4214 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4216 wxPaneInfo
*result
= 0 ;
4220 PyObject
* obj0
= 0 ;
4221 PyObject
* obj1
= 0 ;
4222 char * kwnames
[] = {
4223 (char *) "self",(char *) "size", NULL
4226 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4227 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4228 if (!SWIG_IsOK(res1
)) {
4229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BestSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4231 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4234 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4239 wxPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4240 result
= (wxPaneInfo
*) &_result_ref
;
4242 wxPyEndAllowThreads(__tstate
);
4243 if (PyErr_Occurred()) SWIG_fail
;
4246 resultobj
= obj0
; Py_INCREF(resultobj
);
4254 SWIGINTERN PyObject
*_wrap_PaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4255 PyObject
*resultobj
= 0;
4256 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4258 wxPaneInfo
*result
= 0 ;
4262 PyObject
* obj0
= 0 ;
4263 PyObject
* obj1
= 0 ;
4264 char * kwnames
[] = {
4265 (char *) "self",(char *) "size", NULL
4268 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4269 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4270 if (!SWIG_IsOK(res1
)) {
4271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4273 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4276 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4281 wxPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4282 result
= (wxPaneInfo
*) &_result_ref
;
4284 wxPyEndAllowThreads(__tstate
);
4285 if (PyErr_Occurred()) SWIG_fail
;
4288 resultobj
= obj0
; Py_INCREF(resultobj
);
4296 SWIGINTERN PyObject
*_wrap_PaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4297 PyObject
*resultobj
= 0;
4298 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4300 wxPaneInfo
*result
= 0 ;
4304 PyObject
* obj0
= 0 ;
4305 PyObject
* obj1
= 0 ;
4306 char * kwnames
[] = {
4307 (char *) "self",(char *) "size", NULL
4310 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4311 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4312 if (!SWIG_IsOK(res1
)) {
4313 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4315 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4318 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4323 wxPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4324 result
= (wxPaneInfo
*) &_result_ref
;
4326 wxPyEndAllowThreads(__tstate
);
4327 if (PyErr_Occurred()) SWIG_fail
;
4330 resultobj
= obj0
; Py_INCREF(resultobj
);
4338 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4339 PyObject
*resultobj
= 0;
4340 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4342 wxPaneInfo
*result
= 0 ;
4346 PyObject
* obj0
= 0 ;
4347 PyObject
* obj1
= 0 ;
4348 char * kwnames
[] = {
4349 (char *) "self",(char *) "pos", NULL
4352 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4353 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4354 if (!SWIG_IsOK(res1
)) {
4355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4357 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4360 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4365 wxPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4366 result
= (wxPaneInfo
*) &_result_ref
;
4368 wxPyEndAllowThreads(__tstate
);
4369 if (PyErr_Occurred()) SWIG_fail
;
4372 resultobj
= obj0
; Py_INCREF(resultobj
);
4380 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4381 PyObject
*resultobj
= 0;
4382 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4384 wxPaneInfo
*result
= 0 ;
4388 PyObject
* obj0
= 0 ;
4389 PyObject
* obj1
= 0 ;
4390 char * kwnames
[] = {
4391 (char *) "self",(char *) "size", NULL
4394 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4395 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4396 if (!SWIG_IsOK(res1
)) {
4397 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4399 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4402 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4407 wxPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4408 result
= (wxPaneInfo
*) &_result_ref
;
4410 wxPyEndAllowThreads(__tstate
);
4411 if (PyErr_Occurred()) SWIG_fail
;
4414 resultobj
= obj0
; Py_INCREF(resultobj
);
4422 SWIGINTERN PyObject
*_wrap_PaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4423 PyObject
*resultobj
= 0;
4424 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4425 wxPaneInfo
*result
= 0 ;
4428 PyObject
*swig_obj
[1] ;
4430 if (!args
) SWIG_fail
;
4432 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4433 if (!SWIG_IsOK(res1
)) {
4434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Fixed" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4436 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4440 wxPaneInfo
&_result_ref
= (arg1
)->Fixed();
4441 result
= (wxPaneInfo
*) &_result_ref
;
4443 wxPyEndAllowThreads(__tstate
);
4444 if (PyErr_Occurred()) SWIG_fail
;
4447 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4455 SWIGINTERN PyObject
*_wrap_PaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4456 PyObject
*resultobj
= 0;
4457 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4458 bool arg2
= (bool) true ;
4459 wxPaneInfo
*result
= 0 ;
4464 PyObject
* obj0
= 0 ;
4465 PyObject
* obj1
= 0 ;
4466 char * kwnames
[] = {
4467 (char *) "self",(char *) "resizable", NULL
4470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Resizable",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_Resizable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4475 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4477 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4478 if (!SWIG_IsOK(ecode2
)) {
4479 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4481 arg2
= static_cast< bool >(val2
);
4484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4486 wxPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4487 result
= (wxPaneInfo
*) &_result_ref
;
4489 wxPyEndAllowThreads(__tstate
);
4490 if (PyErr_Occurred()) SWIG_fail
;
4493 resultobj
= obj0
; Py_INCREF(resultobj
);
4501 SWIGINTERN PyObject
*_wrap_PaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4502 PyObject
*resultobj
= 0;
4503 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4504 wxPaneInfo
*result
= 0 ;
4507 PyObject
*swig_obj
[1] ;
4509 if (!args
) SWIG_fail
;
4511 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4512 if (!SWIG_IsOK(res1
)) {
4513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dock" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4515 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4519 wxPaneInfo
&_result_ref
= (arg1
)->Dock();
4520 result
= (wxPaneInfo
*) &_result_ref
;
4522 wxPyEndAllowThreads(__tstate
);
4523 if (PyErr_Occurred()) SWIG_fail
;
4526 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4534 SWIGINTERN PyObject
*_wrap_PaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4535 PyObject
*resultobj
= 0;
4536 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4537 wxPaneInfo
*result
= 0 ;
4540 PyObject
*swig_obj
[1] ;
4542 if (!args
) SWIG_fail
;
4544 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4545 if (!SWIG_IsOK(res1
)) {
4546 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Float" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4548 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4552 wxPaneInfo
&_result_ref
= (arg1
)->Float();
4553 result
= (wxPaneInfo
*) &_result_ref
;
4555 wxPyEndAllowThreads(__tstate
);
4556 if (PyErr_Occurred()) SWIG_fail
;
4559 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4567 SWIGINTERN PyObject
*_wrap_PaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4568 PyObject
*resultobj
= 0;
4569 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4570 wxPaneInfo
*result
= 0 ;
4573 PyObject
*swig_obj
[1] ;
4575 if (!args
) SWIG_fail
;
4577 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4578 if (!SWIG_IsOK(res1
)) {
4579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Hide" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4581 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4583 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4585 wxPaneInfo
&_result_ref
= (arg1
)->Hide();
4586 result
= (wxPaneInfo
*) &_result_ref
;
4588 wxPyEndAllowThreads(__tstate
);
4589 if (PyErr_Occurred()) SWIG_fail
;
4592 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4600 SWIGINTERN PyObject
*_wrap_PaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4601 PyObject
*resultobj
= 0;
4602 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4603 bool arg2
= (bool) true ;
4604 wxPaneInfo
*result
= 0 ;
4609 PyObject
* obj0
= 0 ;
4610 PyObject
* obj1
= 0 ;
4611 char * kwnames
[] = {
4612 (char *) "self",(char *) "show", NULL
4615 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4616 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4617 if (!SWIG_IsOK(res1
)) {
4618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Show" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4620 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4622 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4623 if (!SWIG_IsOK(ecode2
)) {
4624 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
4626 arg2
= static_cast< bool >(val2
);
4629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4631 wxPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
4632 result
= (wxPaneInfo
*) &_result_ref
;
4634 wxPyEndAllowThreads(__tstate
);
4635 if (PyErr_Occurred()) SWIG_fail
;
4638 resultobj
= obj0
; Py_INCREF(resultobj
);
4646 SWIGINTERN PyObject
*_wrap_PaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4647 PyObject
*resultobj
= 0;
4648 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4649 bool arg2
= (bool) true ;
4650 wxPaneInfo
*result
= 0 ;
4655 PyObject
* obj0
= 0 ;
4656 PyObject
* obj1
= 0 ;
4657 char * kwnames
[] = {
4658 (char *) "self",(char *) "visible", NULL
4661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4663 if (!SWIG_IsOK(res1
)) {
4664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4666 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4668 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4669 if (!SWIG_IsOK(ecode2
)) {
4670 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
4672 arg2
= static_cast< bool >(val2
);
4675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4677 wxPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
4678 result
= (wxPaneInfo
*) &_result_ref
;
4680 wxPyEndAllowThreads(__tstate
);
4681 if (PyErr_Occurred()) SWIG_fail
;
4684 resultobj
= obj0
; Py_INCREF(resultobj
);
4692 SWIGINTERN PyObject
*_wrap_PaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4693 PyObject
*resultobj
= 0;
4694 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4695 bool arg2
= (bool) true ;
4696 wxPaneInfo
*result
= 0 ;
4701 PyObject
* obj0
= 0 ;
4702 PyObject
* obj1
= 0 ;
4703 char * kwnames
[] = {
4704 (char *) "self",(char *) "visible", NULL
4707 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4708 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4709 if (!SWIG_IsOK(res1
)) {
4710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4712 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4714 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4715 if (!SWIG_IsOK(ecode2
)) {
4716 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
4718 arg2
= static_cast< bool >(val2
);
4721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4723 wxPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
4724 result
= (wxPaneInfo
*) &_result_ref
;
4726 wxPyEndAllowThreads(__tstate
);
4727 if (PyErr_Occurred()) SWIG_fail
;
4730 resultobj
= obj0
; Py_INCREF(resultobj
);
4738 SWIGINTERN PyObject
*_wrap_PaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4739 PyObject
*resultobj
= 0;
4740 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4741 bool arg2
= (bool) true ;
4742 wxPaneInfo
*result
= 0 ;
4747 PyObject
* obj0
= 0 ;
4748 PyObject
* obj1
= 0 ;
4749 char * kwnames
[] = {
4750 (char *) "self",(char *) "visible", NULL
4753 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4754 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4755 if (!SWIG_IsOK(res1
)) {
4756 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Gripper" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4758 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4760 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4761 if (!SWIG_IsOK(ecode2
)) {
4762 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
4764 arg2
= static_cast< bool >(val2
);
4767 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4769 wxPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
4770 result
= (wxPaneInfo
*) &_result_ref
;
4772 wxPyEndAllowThreads(__tstate
);
4773 if (PyErr_Occurred()) SWIG_fail
;
4776 resultobj
= obj0
; Py_INCREF(resultobj
);
4784 SWIGINTERN PyObject
*_wrap_PaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4785 PyObject
*resultobj
= 0;
4786 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4787 bool arg2
= (bool) true ;
4788 wxPaneInfo
*result
= 0 ;
4793 PyObject
* obj0
= 0 ;
4794 PyObject
* obj1
= 0 ;
4795 char * kwnames
[] = {
4796 (char *) "self",(char *) "attop", NULL
4799 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4800 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4801 if (!SWIG_IsOK(res1
)) {
4802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4804 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4806 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4807 if (!SWIG_IsOK(ecode2
)) {
4808 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
4810 arg2
= static_cast< bool >(val2
);
4813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4815 wxPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
4816 result
= (wxPaneInfo
*) &_result_ref
;
4818 wxPyEndAllowThreads(__tstate
);
4819 if (PyErr_Occurred()) SWIG_fail
;
4822 resultobj
= obj0
; Py_INCREF(resultobj
);
4830 SWIGINTERN PyObject
*_wrap_PaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4831 PyObject
*resultobj
= 0;
4832 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4833 bool arg2
= (bool) true ;
4834 wxPaneInfo
*result
= 0 ;
4839 PyObject
* obj0
= 0 ;
4840 PyObject
* obj1
= 0 ;
4841 char * kwnames
[] = {
4842 (char *) "self",(char *) "visible", NULL
4845 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4846 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4847 if (!SWIG_IsOK(res1
)) {
4848 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4850 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4852 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4853 if (!SWIG_IsOK(ecode2
)) {
4854 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
4856 arg2
= static_cast< bool >(val2
);
4859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4861 wxPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
4862 result
= (wxPaneInfo
*) &_result_ref
;
4864 wxPyEndAllowThreads(__tstate
);
4865 if (PyErr_Occurred()) SWIG_fail
;
4868 resultobj
= obj0
; Py_INCREF(resultobj
);
4876 SWIGINTERN PyObject
*_wrap_PaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4877 PyObject
*resultobj
= 0;
4878 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4879 bool arg2
= (bool) true ;
4880 wxPaneInfo
*result
= 0 ;
4885 PyObject
* obj0
= 0 ;
4886 PyObject
* obj1
= 0 ;
4887 char * kwnames
[] = {
4888 (char *) "self",(char *) "visible", NULL
4891 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4892 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4893 if (!SWIG_IsOK(res1
)) {
4894 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4896 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4898 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4899 if (!SWIG_IsOK(ecode2
)) {
4900 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
4902 arg2
= static_cast< bool >(val2
);
4905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4907 wxPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
4908 result
= (wxPaneInfo
*) &_result_ref
;
4910 wxPyEndAllowThreads(__tstate
);
4911 if (PyErr_Occurred()) SWIG_fail
;
4914 resultobj
= obj0
; Py_INCREF(resultobj
);
4922 SWIGINTERN PyObject
*_wrap_PaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4923 PyObject
*resultobj
= 0;
4924 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4925 bool arg2
= (bool) true ;
4926 wxPaneInfo
*result
= 0 ;
4931 PyObject
* obj0
= 0 ;
4932 PyObject
* obj1
= 0 ;
4933 char * kwnames
[] = {
4934 (char *) "self",(char *) "visible", NULL
4937 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4938 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4939 if (!SWIG_IsOK(res1
)) {
4940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4942 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4944 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4945 if (!SWIG_IsOK(ecode2
)) {
4946 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
4948 arg2
= static_cast< bool >(val2
);
4951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4953 wxPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
4954 result
= (wxPaneInfo
*) &_result_ref
;
4956 wxPyEndAllowThreads(__tstate
);
4957 if (PyErr_Occurred()) SWIG_fail
;
4960 resultobj
= obj0
; Py_INCREF(resultobj
);
4968 SWIGINTERN PyObject
*_wrap_PaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4969 PyObject
*resultobj
= 0;
4970 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4971 bool arg2
= (bool) true ;
4972 wxPaneInfo
*result
= 0 ;
4977 PyObject
* obj0
= 0 ;
4978 PyObject
* obj1
= 0 ;
4979 char * kwnames
[] = {
4980 (char *) "self",(char *) "visible", NULL
4983 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4984 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4985 if (!SWIG_IsOK(res1
)) {
4986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PinButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4988 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4990 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4991 if (!SWIG_IsOK(ecode2
)) {
4992 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
4994 arg2
= static_cast< bool >(val2
);
4997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4999 wxPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5000 result
= (wxPaneInfo
*) &_result_ref
;
5002 wxPyEndAllowThreads(__tstate
);
5003 if (PyErr_Occurred()) SWIG_fail
;
5006 resultobj
= obj0
; Py_INCREF(resultobj
);
5014 SWIGINTERN PyObject
*_wrap_PaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5015 PyObject
*resultobj
= 0;
5016 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5017 bool arg2
= (bool) true ;
5018 wxPaneInfo
*result
= 0 ;
5023 PyObject
* obj0
= 0 ;
5024 PyObject
* obj1
= 0 ;
5025 char * kwnames
[] = {
5026 (char *) "self",(char *) "b", NULL
5029 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5030 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5031 if (!SWIG_IsOK(res1
)) {
5032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5034 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5036 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5037 if (!SWIG_IsOK(ecode2
)) {
5038 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5040 arg2
= static_cast< bool >(val2
);
5043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5045 wxPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5046 result
= (wxPaneInfo
*) &_result_ref
;
5048 wxPyEndAllowThreads(__tstate
);
5049 if (PyErr_Occurred()) SWIG_fail
;
5052 resultobj
= obj0
; Py_INCREF(resultobj
);
5060 SWIGINTERN PyObject
*_wrap_PaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5061 PyObject
*resultobj
= 0;
5062 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5063 bool arg2
= (bool) true ;
5064 wxPaneInfo
*result
= 0 ;
5069 PyObject
* obj0
= 0 ;
5070 PyObject
* obj1
= 0 ;
5071 char * kwnames
[] = {
5072 (char *) "self",(char *) "b", NULL
5075 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5076 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5077 if (!SWIG_IsOK(res1
)) {
5078 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5080 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5082 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5083 if (!SWIG_IsOK(ecode2
)) {
5084 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5086 arg2
= static_cast< bool >(val2
);
5089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5091 wxPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5092 result
= (wxPaneInfo
*) &_result_ref
;
5094 wxPyEndAllowThreads(__tstate
);
5095 if (PyErr_Occurred()) SWIG_fail
;
5098 resultobj
= obj0
; Py_INCREF(resultobj
);
5106 SWIGINTERN PyObject
*_wrap_PaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5107 PyObject
*resultobj
= 0;
5108 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5109 bool arg2
= (bool) true ;
5110 wxPaneInfo
*result
= 0 ;
5115 PyObject
* obj0
= 0 ;
5116 PyObject
* obj1
= 0 ;
5117 char * kwnames
[] = {
5118 (char *) "self",(char *) "b", NULL
5121 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5122 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5123 if (!SWIG_IsOK(res1
)) {
5124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5126 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5128 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5129 if (!SWIG_IsOK(ecode2
)) {
5130 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5132 arg2
= static_cast< bool >(val2
);
5135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5137 wxPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5138 result
= (wxPaneInfo
*) &_result_ref
;
5140 wxPyEndAllowThreads(__tstate
);
5141 if (PyErr_Occurred()) SWIG_fail
;
5144 resultobj
= obj0
; Py_INCREF(resultobj
);
5152 SWIGINTERN PyObject
*_wrap_PaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5153 PyObject
*resultobj
= 0;
5154 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5155 bool arg2
= (bool) true ;
5156 wxPaneInfo
*result
= 0 ;
5161 PyObject
* obj0
= 0 ;
5162 PyObject
* obj1
= 0 ;
5163 char * kwnames
[] = {
5164 (char *) "self",(char *) "b", NULL
5167 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5168 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5169 if (!SWIG_IsOK(res1
)) {
5170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5172 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5174 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5175 if (!SWIG_IsOK(ecode2
)) {
5176 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5178 arg2
= static_cast< bool >(val2
);
5181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5183 wxPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5184 result
= (wxPaneInfo
*) &_result_ref
;
5186 wxPyEndAllowThreads(__tstate
);
5187 if (PyErr_Occurred()) SWIG_fail
;
5190 resultobj
= obj0
; Py_INCREF(resultobj
);
5198 SWIGINTERN PyObject
*_wrap_PaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5199 PyObject
*resultobj
= 0;
5200 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5201 bool arg2
= (bool) true ;
5202 wxPaneInfo
*result
= 0 ;
5207 PyObject
* obj0
= 0 ;
5208 PyObject
* obj1
= 0 ;
5209 char * kwnames
[] = {
5210 (char *) "self",(char *) "b", NULL
5213 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5214 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5215 if (!SWIG_IsOK(res1
)) {
5216 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5218 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5220 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5221 if (!SWIG_IsOK(ecode2
)) {
5222 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5224 arg2
= static_cast< bool >(val2
);
5227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5229 wxPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5230 result
= (wxPaneInfo
*) &_result_ref
;
5232 wxPyEndAllowThreads(__tstate
);
5233 if (PyErr_Occurred()) SWIG_fail
;
5236 resultobj
= obj0
; Py_INCREF(resultobj
);
5244 SWIGINTERN PyObject
*_wrap_PaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5245 PyObject
*resultobj
= 0;
5246 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5247 bool arg2
= (bool) true ;
5248 wxPaneInfo
*result
= 0 ;
5253 PyObject
* obj0
= 0 ;
5254 PyObject
* obj1
= 0 ;
5255 char * kwnames
[] = {
5256 (char *) "self",(char *) "b", NULL
5259 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5260 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5261 if (!SWIG_IsOK(res1
)) {
5262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Floatable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5264 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5266 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5267 if (!SWIG_IsOK(ecode2
)) {
5268 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5270 arg2
= static_cast< bool >(val2
);
5273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5275 wxPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5276 result
= (wxPaneInfo
*) &_result_ref
;
5278 wxPyEndAllowThreads(__tstate
);
5279 if (PyErr_Occurred()) SWIG_fail
;
5282 resultobj
= obj0
; Py_INCREF(resultobj
);
5290 SWIGINTERN PyObject
*_wrap_PaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5291 PyObject
*resultobj
= 0;
5292 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5293 bool arg2
= (bool) true ;
5294 wxPaneInfo
*result
= 0 ;
5299 PyObject
* obj0
= 0 ;
5300 PyObject
* obj1
= 0 ;
5301 char * kwnames
[] = {
5302 (char *) "self",(char *) "b", NULL
5305 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5306 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5307 if (!SWIG_IsOK(res1
)) {
5308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Movable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5310 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5312 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5313 if (!SWIG_IsOK(ecode2
)) {
5314 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5316 arg2
= static_cast< bool >(val2
);
5319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5321 wxPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5322 result
= (wxPaneInfo
*) &_result_ref
;
5324 wxPyEndAllowThreads(__tstate
);
5325 if (PyErr_Occurred()) SWIG_fail
;
5328 resultobj
= obj0
; Py_INCREF(resultobj
);
5336 SWIGINTERN PyObject
*_wrap_PaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5337 PyObject
*resultobj
= 0;
5338 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5339 bool arg2
= (bool) true ;
5340 wxPaneInfo
*result
= 0 ;
5345 PyObject
* obj0
= 0 ;
5346 PyObject
* obj1
= 0 ;
5347 char * kwnames
[] = {
5348 (char *) "self",(char *) "b", NULL
5351 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5352 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5353 if (!SWIG_IsOK(res1
)) {
5354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5356 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5358 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5359 if (!SWIG_IsOK(ecode2
)) {
5360 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5362 arg2
= static_cast< bool >(val2
);
5365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5367 wxPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5368 result
= (wxPaneInfo
*) &_result_ref
;
5370 wxPyEndAllowThreads(__tstate
);
5371 if (PyErr_Occurred()) SWIG_fail
;
5374 resultobj
= obj0
; Py_INCREF(resultobj
);
5382 SWIGINTERN PyObject
*_wrap_PaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5383 PyObject
*resultobj
= 0;
5384 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5385 wxPaneInfo
*result
= 0 ;
5388 PyObject
*swig_obj
[1] ;
5390 if (!args
) SWIG_fail
;
5392 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5393 if (!SWIG_IsOK(res1
)) {
5394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5396 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5398 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5400 wxPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5401 result
= (wxPaneInfo
*) &_result_ref
;
5403 wxPyEndAllowThreads(__tstate
);
5404 if (PyErr_Occurred()) SWIG_fail
;
5407 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5415 SWIGINTERN PyObject
*_wrap_PaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5416 PyObject
*resultobj
= 0;
5417 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5418 wxPaneInfo
*result
= 0 ;
5421 PyObject
*swig_obj
[1] ;
5423 if (!args
) SWIG_fail
;
5425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5426 if (!SWIG_IsOK(res1
)) {
5427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5429 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5433 wxPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5434 result
= (wxPaneInfo
*) &_result_ref
;
5436 wxPyEndAllowThreads(__tstate
);
5437 if (PyErr_Occurred()) SWIG_fail
;
5440 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5448 SWIGINTERN PyObject
*_wrap_PaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5449 PyObject
*resultobj
= 0;
5450 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5451 wxPaneInfo
*result
= 0 ;
5454 PyObject
*swig_obj
[1] ;
5456 if (!args
) SWIG_fail
;
5458 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5459 if (!SWIG_IsOK(res1
)) {
5460 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5462 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5466 wxPaneInfo
&_result_ref
= (arg1
)->CenterPane();
5467 result
= (wxPaneInfo
*) &_result_ref
;
5469 wxPyEndAllowThreads(__tstate
);
5470 if (PyErr_Occurred()) SWIG_fail
;
5473 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5481 SWIGINTERN PyObject
*_wrap_PaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5482 PyObject
*resultobj
= 0;
5483 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5484 wxPaneInfo
*result
= 0 ;
5487 PyObject
*swig_obj
[1] ;
5489 if (!args
) SWIG_fail
;
5491 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5492 if (!SWIG_IsOK(res1
)) {
5493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5495 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5499 wxPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
5500 result
= (wxPaneInfo
*) &_result_ref
;
5502 wxPyEndAllowThreads(__tstate
);
5503 if (PyErr_Occurred()) SWIG_fail
;
5506 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5514 SWIGINTERN PyObject
*_wrap_PaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5515 PyObject
*resultobj
= 0;
5516 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5519 wxPaneInfo
*result
= 0 ;
5526 PyObject
* obj0
= 0 ;
5527 PyObject
* obj1
= 0 ;
5528 PyObject
* obj2
= 0 ;
5529 char * kwnames
[] = {
5530 (char *) "self",(char *) "flag",(char *) "option_state", NULL
5533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5535 if (!SWIG_IsOK(res1
)) {
5536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5538 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5539 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5540 if (!SWIG_IsOK(ecode2
)) {
5541 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
5543 arg2
= static_cast< int >(val2
);
5544 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5545 if (!SWIG_IsOK(ecode3
)) {
5546 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
5548 arg3
= static_cast< bool >(val3
);
5550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5552 wxPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
5553 result
= (wxPaneInfo
*) &_result_ref
;
5555 wxPyEndAllowThreads(__tstate
);
5556 if (PyErr_Occurred()) SWIG_fail
;
5559 resultobj
= obj0
; Py_INCREF(resultobj
);
5567 SWIGINTERN PyObject
*_wrap_PaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5568 PyObject
*resultobj
= 0;
5569 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5576 PyObject
* obj0
= 0 ;
5577 PyObject
* obj1
= 0 ;
5578 char * kwnames
[] = {
5579 (char *) "self",(char *) "flag", NULL
5582 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5583 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5584 if (!SWIG_IsOK(res1
)) {
5585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
5587 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5588 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5589 if (!SWIG_IsOK(ecode2
)) {
5590 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
5592 arg2
= static_cast< int >(val2
);
5594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5595 result
= (bool)((wxPaneInfo
const *)arg1
)->HasFlag(arg2
);
5596 wxPyEndAllowThreads(__tstate
);
5597 if (PyErr_Occurred()) SWIG_fail
;
5600 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5608 SWIGINTERN PyObject
*_wrap_PaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5609 PyObject
*resultobj
= 0;
5610 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5611 wxString
*arg2
= (wxString
*) 0 ;
5614 bool temp2
= false ;
5615 PyObject
*swig_obj
[2] ;
5617 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_name_set",2,2,swig_obj
)) 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_name_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5622 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5624 arg2
= wxString_in_helper(swig_obj
[1]);
5625 if (arg2
== NULL
) SWIG_fail
;
5628 if (arg1
) (arg1
)->name
= *arg2
;
5630 resultobj
= SWIG_Py_Void();
5645 SWIGINTERN PyObject
*_wrap_PaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5646 PyObject
*resultobj
= 0;
5647 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5648 wxString
*result
= 0 ;
5651 PyObject
*swig_obj
[1] ;
5653 if (!args
) SWIG_fail
;
5655 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5656 if (!SWIG_IsOK(res1
)) {
5657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_name_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5659 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5660 result
= (wxString
*)& ((arg1
)->name
);
5663 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
5665 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
5674 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5675 PyObject
*resultobj
= 0;
5676 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5677 wxString
*arg2
= (wxString
*) 0 ;
5680 bool temp2
= false ;
5681 PyObject
*swig_obj
[2] ;
5683 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
5684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5685 if (!SWIG_IsOK(res1
)) {
5686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5688 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5690 arg2
= wxString_in_helper(swig_obj
[1]);
5691 if (arg2
== NULL
) SWIG_fail
;
5694 if (arg1
) (arg1
)->caption
= *arg2
;
5696 resultobj
= SWIG_Py_Void();
5711 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5712 PyObject
*resultobj
= 0;
5713 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5714 wxString
*result
= 0 ;
5717 PyObject
*swig_obj
[1] ;
5719 if (!args
) SWIG_fail
;
5721 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5722 if (!SWIG_IsOK(res1
)) {
5723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5725 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5726 result
= (wxString
*)& ((arg1
)->caption
);
5729 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
5731 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
5740 SWIGINTERN PyObject
*_wrap_PaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5741 PyObject
*resultobj
= 0;
5742 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5743 wxWindow
*arg2
= (wxWindow
*) 0 ;
5748 PyObject
*swig_obj
[2] ;
5750 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
5751 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5752 if (!SWIG_IsOK(res1
)) {
5753 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5755 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5756 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
5757 if (!SWIG_IsOK(res2
)) {
5758 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
5760 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
5761 if (arg1
) (arg1
)->window
= arg2
;
5763 resultobj
= SWIG_Py_Void();
5770 SWIGINTERN PyObject
*_wrap_PaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5771 PyObject
*resultobj
= 0;
5772 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5773 wxWindow
*result
= 0 ;
5776 PyObject
*swig_obj
[1] ;
5778 if (!args
) SWIG_fail
;
5780 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5781 if (!SWIG_IsOK(res1
)) {
5782 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5784 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5785 result
= (wxWindow
*) ((arg1
)->window
);
5787 resultobj
= wxPyMake_wxObject(result
, 0);
5795 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5796 PyObject
*resultobj
= 0;
5797 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5798 wxWindow
*arg2
= (wxWindow
*) 0 ;
5803 PyObject
*swig_obj
[2] ;
5805 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
5806 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5807 if (!SWIG_IsOK(res1
)) {
5808 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5810 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5811 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
5812 if (!SWIG_IsOK(res2
)) {
5813 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_frame_set" "', expected argument " "2"" of type '" "wxWindow *""'");
5815 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
5816 if (arg1
) (arg1
)->frame
= arg2
;
5818 resultobj
= SWIG_Py_Void();
5825 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5826 PyObject
*resultobj
= 0;
5827 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5828 wxWindow
*result
= 0 ;
5831 PyObject
*swig_obj
[1] ;
5833 if (!args
) SWIG_fail
;
5835 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5836 if (!SWIG_IsOK(res1
)) {
5837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5839 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5840 result
= (wxWindow
*) ((arg1
)->frame
);
5842 resultobj
= wxPyMake_wxObject(result
, 0);
5850 SWIGINTERN PyObject
*_wrap_PaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5851 PyObject
*resultobj
= 0;
5852 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5858 PyObject
*swig_obj
[2] ;
5860 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
5861 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5862 if (!SWIG_IsOK(res1
)) {
5863 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5865 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5866 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
5867 if (!SWIG_IsOK(ecode2
)) {
5868 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
5870 arg2
= static_cast< int >(val2
);
5871 if (arg1
) (arg1
)->state
= arg2
;
5873 resultobj
= SWIG_Py_Void();
5880 SWIGINTERN PyObject
*_wrap_PaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5881 PyObject
*resultobj
= 0;
5882 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5886 PyObject
*swig_obj
[1] ;
5888 if (!args
) SWIG_fail
;
5890 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5891 if (!SWIG_IsOK(res1
)) {
5892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5894 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5895 result
= (int) ((arg1
)->state
);
5896 resultobj
= SWIG_From_int(static_cast< int >(result
));
5903 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5904 PyObject
*resultobj
= 0;
5905 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5911 PyObject
*swig_obj
[2] ;
5913 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
5914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5915 if (!SWIG_IsOK(res1
)) {
5916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5918 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5919 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
5920 if (!SWIG_IsOK(ecode2
)) {
5921 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
5923 arg2
= static_cast< int >(val2
);
5924 if (arg1
) (arg1
)->dock_direction
= arg2
;
5926 resultobj
= SWIG_Py_Void();
5933 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5934 PyObject
*resultobj
= 0;
5935 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5939 PyObject
*swig_obj
[1] ;
5941 if (!args
) SWIG_fail
;
5943 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5944 if (!SWIG_IsOK(res1
)) {
5945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5947 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5948 result
= (int) ((arg1
)->dock_direction
);
5949 resultobj
= SWIG_From_int(static_cast< int >(result
));
5956 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5957 PyObject
*resultobj
= 0;
5958 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5964 PyObject
*swig_obj
[2] ;
5966 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
5967 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5968 if (!SWIG_IsOK(res1
)) {
5969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5971 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5972 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
5973 if (!SWIG_IsOK(ecode2
)) {
5974 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
5976 arg2
= static_cast< int >(val2
);
5977 if (arg1
) (arg1
)->dock_layer
= arg2
;
5979 resultobj
= SWIG_Py_Void();
5986 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5987 PyObject
*resultobj
= 0;
5988 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5992 PyObject
*swig_obj
[1] ;
5994 if (!args
) SWIG_fail
;
5996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5997 if (!SWIG_IsOK(res1
)) {
5998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6000 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6001 result
= (int) ((arg1
)->dock_layer
);
6002 resultobj
= SWIG_From_int(static_cast< int >(result
));
6009 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6010 PyObject
*resultobj
= 0;
6011 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6017 PyObject
*swig_obj
[2] ;
6019 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6020 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6021 if (!SWIG_IsOK(res1
)) {
6022 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6024 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6025 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6026 if (!SWIG_IsOK(ecode2
)) {
6027 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6029 arg2
= static_cast< int >(val2
);
6030 if (arg1
) (arg1
)->dock_row
= arg2
;
6032 resultobj
= SWIG_Py_Void();
6039 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6040 PyObject
*resultobj
= 0;
6041 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6045 PyObject
*swig_obj
[1] ;
6047 if (!args
) SWIG_fail
;
6049 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6050 if (!SWIG_IsOK(res1
)) {
6051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6053 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6054 result
= (int) ((arg1
)->dock_row
);
6055 resultobj
= SWIG_From_int(static_cast< int >(result
));
6062 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6063 PyObject
*resultobj
= 0;
6064 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6070 PyObject
*swig_obj
[2] ;
6072 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6073 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6074 if (!SWIG_IsOK(res1
)) {
6075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6077 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6078 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6079 if (!SWIG_IsOK(ecode2
)) {
6080 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6082 arg2
= static_cast< int >(val2
);
6083 if (arg1
) (arg1
)->dock_pos
= arg2
;
6085 resultobj
= SWIG_Py_Void();
6092 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6093 PyObject
*resultobj
= 0;
6094 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6098 PyObject
*swig_obj
[1] ;
6100 if (!args
) SWIG_fail
;
6102 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6103 if (!SWIG_IsOK(res1
)) {
6104 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6106 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6107 result
= (int) ((arg1
)->dock_pos
);
6108 resultobj
= SWIG_From_int(static_cast< int >(result
));
6115 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6116 PyObject
*resultobj
= 0;
6117 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6118 wxSize
*arg2
= (wxSize
*) 0 ;
6123 PyObject
*swig_obj
[2] ;
6125 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6126 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6127 if (!SWIG_IsOK(res1
)) {
6128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6130 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6131 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6132 if (!SWIG_IsOK(res2
)) {
6133 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6135 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6136 if (arg1
) (arg1
)->best_size
= *arg2
;
6138 resultobj
= SWIG_Py_Void();
6145 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6146 PyObject
*resultobj
= 0;
6147 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6148 wxSize
*result
= 0 ;
6151 PyObject
*swig_obj
[1] ;
6153 if (!args
) SWIG_fail
;
6155 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6156 if (!SWIG_IsOK(res1
)) {
6157 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6159 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6160 result
= (wxSize
*)& ((arg1
)->best_size
);
6161 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6168 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6169 PyObject
*resultobj
= 0;
6170 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6171 wxSize
*arg2
= (wxSize
*) 0 ;
6176 PyObject
*swig_obj
[2] ;
6178 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6179 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6180 if (!SWIG_IsOK(res1
)) {
6181 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6183 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6184 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6185 if (!SWIG_IsOK(res2
)) {
6186 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6188 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6189 if (arg1
) (arg1
)->min_size
= *arg2
;
6191 resultobj
= SWIG_Py_Void();
6198 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6199 PyObject
*resultobj
= 0;
6200 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6201 wxSize
*result
= 0 ;
6204 PyObject
*swig_obj
[1] ;
6206 if (!args
) SWIG_fail
;
6208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6209 if (!SWIG_IsOK(res1
)) {
6210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6212 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6213 result
= (wxSize
*)& ((arg1
)->min_size
);
6214 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6221 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6222 PyObject
*resultobj
= 0;
6223 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6224 wxSize
*arg2
= (wxSize
*) 0 ;
6229 PyObject
*swig_obj
[2] ;
6231 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6232 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6233 if (!SWIG_IsOK(res1
)) {
6234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6236 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6237 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6238 if (!SWIG_IsOK(res2
)) {
6239 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6241 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6242 if (arg1
) (arg1
)->max_size
= *arg2
;
6244 resultobj
= SWIG_Py_Void();
6251 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6252 PyObject
*resultobj
= 0;
6253 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6254 wxSize
*result
= 0 ;
6257 PyObject
*swig_obj
[1] ;
6259 if (!args
) SWIG_fail
;
6261 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6262 if (!SWIG_IsOK(res1
)) {
6263 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6265 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6266 result
= (wxSize
*)& ((arg1
)->max_size
);
6267 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6274 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6275 PyObject
*resultobj
= 0;
6276 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6277 wxPoint
*arg2
= (wxPoint
*) 0 ;
6282 PyObject
*swig_obj
[2] ;
6284 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6285 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6286 if (!SWIG_IsOK(res1
)) {
6287 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6289 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6290 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6291 if (!SWIG_IsOK(res2
)) {
6292 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6294 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6295 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6297 resultobj
= SWIG_Py_Void();
6304 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6305 PyObject
*resultobj
= 0;
6306 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6307 wxPoint
*result
= 0 ;
6310 PyObject
*swig_obj
[1] ;
6312 if (!args
) SWIG_fail
;
6314 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6315 if (!SWIG_IsOK(res1
)) {
6316 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6318 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6319 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6320 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6327 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6328 PyObject
*resultobj
= 0;
6329 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6330 wxSize
*arg2
= (wxSize
*) 0 ;
6335 PyObject
*swig_obj
[2] ;
6337 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6338 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6339 if (!SWIG_IsOK(res1
)) {
6340 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6342 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6343 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6344 if (!SWIG_IsOK(res2
)) {
6345 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6347 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6348 if (arg1
) (arg1
)->floating_size
= *arg2
;
6350 resultobj
= SWIG_Py_Void();
6357 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6358 PyObject
*resultobj
= 0;
6359 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6360 wxSize
*result
= 0 ;
6363 PyObject
*swig_obj
[1] ;
6365 if (!args
) SWIG_fail
;
6367 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6368 if (!SWIG_IsOK(res1
)) {
6369 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6371 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6372 result
= (wxSize
*)& ((arg1
)->floating_size
);
6373 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6380 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6381 PyObject
*resultobj
= 0;
6382 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6388 PyObject
*swig_obj
[2] ;
6390 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6391 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6392 if (!SWIG_IsOK(res1
)) {
6393 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6395 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6396 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6397 if (!SWIG_IsOK(ecode2
)) {
6398 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6400 arg2
= static_cast< int >(val2
);
6401 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6403 resultobj
= SWIG_Py_Void();
6410 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6411 PyObject
*resultobj
= 0;
6412 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6416 PyObject
*swig_obj
[1] ;
6418 if (!args
) SWIG_fail
;
6420 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6421 if (!SWIG_IsOK(res1
)) {
6422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6424 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6425 result
= (int) ((arg1
)->dock_proportion
);
6426 resultobj
= SWIG_From_int(static_cast< int >(result
));
6433 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6434 PyObject
*resultobj
= 0;
6435 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6436 wxPaneButtonArray arg2
;
6441 PyObject
*swig_obj
[2] ;
6443 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6444 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6445 if (!SWIG_IsOK(res1
)) {
6446 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6448 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6450 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneButtonArray
, 0 | 0);
6451 if (!SWIG_IsOK(res2
)) {
6452 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6455 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6457 wxPaneButtonArray
* temp
= reinterpret_cast< wxPaneButtonArray
* >(argp2
);
6459 if (SWIG_IsNewObj(res2
)) delete temp
;
6462 if (arg1
) (arg1
)->buttons
= arg2
;
6464 resultobj
= SWIG_Py_Void();
6471 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6472 PyObject
*resultobj
= 0;
6473 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6474 wxPaneButtonArray result
;
6477 PyObject
*swig_obj
[1] ;
6479 if (!args
) SWIG_fail
;
6481 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6482 if (!SWIG_IsOK(res1
)) {
6483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6485 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6486 result
= ((arg1
)->buttons
);
6487 resultobj
= SWIG_NewPointerObj((new wxPaneButtonArray(static_cast< const wxPaneButtonArray
& >(result
))), SWIGTYPE_p_wxPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
6494 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6495 PyObject
*resultobj
= 0;
6496 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6497 wxRect
*arg2
= (wxRect
*) 0 ;
6502 PyObject
*swig_obj
[2] ;
6504 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
6505 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6506 if (!SWIG_IsOK(res1
)) {
6507 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6509 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6510 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
6511 if (!SWIG_IsOK(res2
)) {
6512 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
6514 arg2
= reinterpret_cast< wxRect
* >(argp2
);
6515 if (arg1
) (arg1
)->rect
= *arg2
;
6517 resultobj
= SWIG_Py_Void();
6524 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6525 PyObject
*resultobj
= 0;
6526 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6527 wxRect
*result
= 0 ;
6530 PyObject
*swig_obj
[1] ;
6532 if (!args
) SWIG_fail
;
6534 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6535 if (!SWIG_IsOK(res1
)) {
6536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6538 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6539 result
= (wxRect
*)& ((arg1
)->rect
);
6540 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
6547 SWIGINTERN PyObject
*PaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6549 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
6550 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneInfo
, SWIG_NewClientData(obj
));
6551 return SWIG_Py_Void();
6554 SWIGINTERN PyObject
*PaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6555 return SWIG_Python_InitShadowInstance(args
);
6558 SWIGINTERN PyObject
*_wrap_new_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6559 PyObject
*resultobj
= 0;
6560 wxFrame
*arg1
= (wxFrame
*) NULL
;
6561 int arg2
= (int) wxAUI_MGR_DEFAULT
;
6562 wxFrameManager
*result
= 0 ;
6567 PyObject
* obj0
= 0 ;
6568 PyObject
* obj1
= 0 ;
6569 char * kwnames
[] = {
6570 (char *) "frame",(char *) "flags", NULL
6573 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FrameManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6576 if (!SWIG_IsOK(res1
)) {
6577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FrameManager" "', expected argument " "1"" of type '" "wxFrame *""'");
6579 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6582 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6583 if (!SWIG_IsOK(ecode2
)) {
6584 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FrameManager" "', expected argument " "2"" of type '" "int""'");
6586 arg2
= static_cast< int >(val2
);
6589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6590 result
= (wxFrameManager
*)new wxFrameManager(arg1
,arg2
);
6591 wxPyEndAllowThreads(__tstate
);
6592 if (PyErr_Occurred()) SWIG_fail
;
6594 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_NEW
| 0 );
6601 SWIGINTERN PyObject
*_wrap_delete_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6602 PyObject
*resultobj
= 0;
6603 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6606 PyObject
*swig_obj
[1] ;
6608 if (!args
) SWIG_fail
;
6610 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_DISOWN
| 0 );
6611 if (!SWIG_IsOK(res1
)) {
6612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FrameManager" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6614 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6619 wxPyEndAllowThreads(__tstate
);
6620 if (PyErr_Occurred()) SWIG_fail
;
6622 resultobj
= SWIG_Py_Void();
6629 SWIGINTERN PyObject
*_wrap_FrameManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6630 PyObject
*resultobj
= 0;
6631 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6634 PyObject
*swig_obj
[1] ;
6636 if (!args
) SWIG_fail
;
6638 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6639 if (!SWIG_IsOK(res1
)) {
6640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_UnInit" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6642 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6646 wxPyEndAllowThreads(__tstate
);
6647 if (PyErr_Occurred()) SWIG_fail
;
6649 resultobj
= SWIG_Py_Void();
6656 SWIGINTERN PyObject
*_wrap_FrameManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6657 PyObject
*resultobj
= 0;
6658 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6664 PyObject
* obj0
= 0 ;
6665 PyObject
* obj1
= 0 ;
6666 char * kwnames
[] = {
6667 (char *) "self",(char *) "flags", NULL
6670 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6671 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6672 if (!SWIG_IsOK(res1
)) {
6673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetFlags" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6675 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6676 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6677 if (!SWIG_IsOK(ecode2
)) {
6678 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
6680 arg2
= static_cast< int >(val2
);
6682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6683 (arg1
)->SetFlags(arg2
);
6684 wxPyEndAllowThreads(__tstate
);
6685 if (PyErr_Occurred()) SWIG_fail
;
6687 resultobj
= SWIG_Py_Void();
6694 SWIGINTERN PyObject
*_wrap_FrameManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6695 PyObject
*resultobj
= 0;
6696 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6700 PyObject
*swig_obj
[1] ;
6702 if (!args
) SWIG_fail
;
6704 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6705 if (!SWIG_IsOK(res1
)) {
6706 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetFlags" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
6708 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6711 result
= (int)((wxFrameManager
const *)arg1
)->GetFlags();
6712 wxPyEndAllowThreads(__tstate
);
6713 if (PyErr_Occurred()) SWIG_fail
;
6715 resultobj
= SWIG_From_int(static_cast< int >(result
));
6722 SWIGINTERN PyObject
*_wrap_FrameManager_SetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6723 PyObject
*resultobj
= 0;
6724 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6725 wxWindow
*arg2
= (wxWindow
*) 0 ;
6730 PyObject
* obj0
= 0 ;
6731 PyObject
* obj1
= 0 ;
6732 char * kwnames
[] = {
6733 (char *) "self",(char *) "frame", NULL
6736 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6737 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6738 if (!SWIG_IsOK(res1
)) {
6739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetFrame" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6741 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6742 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6743 if (!SWIG_IsOK(res2
)) {
6744 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
6746 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6749 (arg1
)->SetFrame(arg2
);
6750 wxPyEndAllowThreads(__tstate
);
6751 if (PyErr_Occurred()) SWIG_fail
;
6753 resultobj
= SWIG_Py_Void();
6760 SWIGINTERN PyObject
*_wrap_FrameManager_GetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6761 PyObject
*resultobj
= 0;
6762 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6763 wxWindow
*result
= 0 ;
6766 PyObject
*swig_obj
[1] ;
6768 if (!args
) SWIG_fail
;
6770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6771 if (!SWIG_IsOK(res1
)) {
6772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetFrame" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
6774 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6777 result
= (wxWindow
*)((wxFrameManager
const *)arg1
)->GetFrame();
6778 wxPyEndAllowThreads(__tstate
);
6779 if (PyErr_Occurred()) SWIG_fail
;
6782 resultobj
= wxPyMake_wxObject(result
, 0);
6790 SWIGINTERN PyObject
*_wrap_FrameManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6791 PyObject
*resultobj
= 0;
6792 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6793 wxDockArt
*arg2
= (wxDockArt
*) 0 ;
6797 PyObject
* obj0
= 0 ;
6798 PyObject
* obj1
= 0 ;
6799 char * kwnames
[] = {
6800 (char *) "self",(char *) "art_provider", NULL
6803 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6804 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6805 if (!SWIG_IsOK(res1
)) {
6806 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6808 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6809 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
6810 if (!SWIG_IsOK(res2
)) {
6811 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "2"" of type '" "wxDockArt *""'");
6814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6815 (arg1
)->SetArtProvider(arg2
);
6816 wxPyEndAllowThreads(__tstate
);
6817 if (PyErr_Occurred()) SWIG_fail
;
6819 resultobj
= SWIG_Py_Void();
6826 SWIGINTERN PyObject
*_wrap_FrameManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6827 PyObject
*resultobj
= 0;
6828 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6829 wxDockArt
*result
= 0 ;
6832 PyObject
*swig_obj
[1] ;
6834 if (!args
) SWIG_fail
;
6836 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6837 if (!SWIG_IsOK(res1
)) {
6838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
6840 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6843 result
= (wxDockArt
*)((wxFrameManager
const *)arg1
)->GetArtProvider();
6844 wxPyEndAllowThreads(__tstate
);
6845 if (PyErr_Occurred()) SWIG_fail
;
6847 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockArt
, 0 | 0 );
6854 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6855 PyObject
*resultobj
= 0;
6856 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6857 wxWindow
*arg2
= (wxWindow
*) 0 ;
6858 wxPaneInfo
*result
= 0 ;
6863 PyObject
* obj0
= 0 ;
6864 PyObject
* obj1
= 0 ;
6865 char * kwnames
[] = {
6866 (char *) "self",(char *) "window", NULL
6869 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6870 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6871 if (!SWIG_IsOK(res1
)) {
6872 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6874 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6875 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6876 if (!SWIG_IsOK(res2
)) {
6877 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
6879 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6883 wxPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
6884 result
= (wxPaneInfo
*) &_result_ref
;
6886 wxPyEndAllowThreads(__tstate
);
6887 if (PyErr_Occurred()) SWIG_fail
;
6889 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6896 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6897 PyObject
*resultobj
= 0;
6898 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6899 wxString
*arg2
= 0 ;
6900 wxPaneInfo
*result
= 0 ;
6903 bool temp2
= false ;
6904 PyObject
* obj0
= 0 ;
6905 PyObject
* obj1
= 0 ;
6906 char * kwnames
[] = {
6907 (char *) "self",(char *) "name", NULL
6910 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6911 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6912 if (!SWIG_IsOK(res1
)) {
6913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByName" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6915 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6917 arg2
= wxString_in_helper(obj1
);
6918 if (arg2
== NULL
) SWIG_fail
;
6922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6924 wxPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
6925 result
= (wxPaneInfo
*) &_result_ref
;
6927 wxPyEndAllowThreads(__tstate
);
6928 if (PyErr_Occurred()) SWIG_fail
;
6930 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6945 SWIGINTERN PyObject
*_wrap_FrameManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6946 PyObject
*resultobj
= 0;
6947 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6948 wxPaneInfoArray
*result
= 0 ;
6951 PyObject
*swig_obj
[1] ;
6953 if (!args
) SWIG_fail
;
6955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
6956 if (!SWIG_IsOK(res1
)) {
6957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetAllPanes" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6959 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6963 wxPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
6964 result
= (wxPaneInfoArray
*) &_result_ref
;
6966 wxPyEndAllowThreads(__tstate
);
6967 if (PyErr_Occurred()) SWIG_fail
;
6970 resultobj
= PyList_New(0);
6971 for (size_t i
=0; i
< result
->GetCount(); i
++) {
6972 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxPaneInfo
, 0);
6973 PyList_Append(resultobj
, pane_obj
);
6982 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6983 PyObject
*resultobj
= 0;
6984 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6985 wxWindow
*arg2
= (wxWindow
*) 0 ;
6986 wxPaneInfo
*arg3
= 0 ;
6994 PyObject
* obj0
= 0 ;
6995 PyObject
* obj1
= 0 ;
6996 PyObject
* obj2
= 0 ;
6997 char * kwnames
[] = {
6998 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7001 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7002 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7003 if (!SWIG_IsOK(res1
)) {
7004 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane1" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7006 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7007 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7008 if (!SWIG_IsOK(res2
)) {
7009 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7011 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7012 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7013 if (!SWIG_IsOK(res3
)) {
7014 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7017 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7019 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7022 result
= (bool)(arg1
)->AddPane(arg2
,(wxPaneInfo
const &)*arg3
);
7023 wxPyEndAllowThreads(__tstate
);
7024 if (PyErr_Occurred()) SWIG_fail
;
7027 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7035 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7036 PyObject
*resultobj
= 0;
7037 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7038 wxWindow
*arg2
= (wxWindow
*) 0 ;
7039 int arg3
= (int) wxLEFT
;
7040 wxString
const &arg4_defvalue
= wxEmptyString
;
7041 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7049 bool temp4
= false ;
7050 PyObject
* obj0
= 0 ;
7051 PyObject
* obj1
= 0 ;
7052 PyObject
* obj2
= 0 ;
7053 PyObject
* obj3
= 0 ;
7054 char * kwnames
[] = {
7055 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7058 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:FrameManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7059 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7060 if (!SWIG_IsOK(res1
)) {
7061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane2" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7063 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7064 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7065 if (!SWIG_IsOK(res2
)) {
7066 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7068 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7070 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7071 if (!SWIG_IsOK(ecode3
)) {
7072 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7074 arg3
= static_cast< int >(val3
);
7078 arg4
= wxString_in_helper(obj3
);
7079 if (arg4
== NULL
) SWIG_fail
;
7084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7085 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7086 wxPyEndAllowThreads(__tstate
);
7087 if (PyErr_Occurred()) SWIG_fail
;
7090 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7106 SWIGINTERN PyObject
*_wrap_FrameManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7107 PyObject
*resultobj
= 0;
7108 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7109 wxWindow
*arg2
= (wxWindow
*) 0 ;
7110 wxPaneInfo
*arg3
= 0 ;
7111 int arg4
= (int) wxAUI_INSERT_PANE
;
7121 PyObject
* obj0
= 0 ;
7122 PyObject
* obj1
= 0 ;
7123 PyObject
* obj2
= 0 ;
7124 PyObject
* obj3
= 0 ;
7125 char * kwnames
[] = {
7126 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7129 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:FrameManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7130 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7131 if (!SWIG_IsOK(res1
)) {
7132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_InsertPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7134 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7135 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7136 if (!SWIG_IsOK(res2
)) {
7137 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7139 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7140 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7141 if (!SWIG_IsOK(res3
)) {
7142 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7145 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7147 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7149 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7150 if (!SWIG_IsOK(ecode4
)) {
7151 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FrameManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7153 arg4
= static_cast< int >(val4
);
7156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7157 result
= (bool)(arg1
)->InsertPane(arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
7158 wxPyEndAllowThreads(__tstate
);
7159 if (PyErr_Occurred()) SWIG_fail
;
7162 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7170 SWIGINTERN PyObject
*_wrap_FrameManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7171 PyObject
*resultobj
= 0;
7172 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7173 wxWindow
*arg2
= (wxWindow
*) 0 ;
7179 PyObject
* obj0
= 0 ;
7180 PyObject
* obj1
= 0 ;
7181 char * kwnames
[] = {
7182 (char *) "self",(char *) "window", NULL
7185 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7186 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7187 if (!SWIG_IsOK(res1
)) {
7188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_DetachPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7190 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7191 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7192 if (!SWIG_IsOK(res2
)) {
7193 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7195 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7197 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7198 result
= (bool)(arg1
)->DetachPane(arg2
);
7199 wxPyEndAllowThreads(__tstate
);
7200 if (PyErr_Occurred()) SWIG_fail
;
7203 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7211 SWIGINTERN PyObject
*_wrap_FrameManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7212 PyObject
*resultobj
= 0;
7213 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7217 PyObject
*swig_obj
[1] ;
7219 if (!args
) SWIG_fail
;
7221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7222 if (!SWIG_IsOK(res1
)) {
7223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SavePerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7225 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7228 result
= (arg1
)->SavePerspective();
7229 wxPyEndAllowThreads(__tstate
);
7230 if (PyErr_Occurred()) SWIG_fail
;
7234 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7236 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7245 SWIGINTERN PyObject
*_wrap_FrameManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7246 PyObject
*resultobj
= 0;
7247 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7248 wxString
*arg2
= 0 ;
7249 bool arg3
= (bool) true ;
7253 bool temp2
= false ;
7256 PyObject
* obj0
= 0 ;
7257 PyObject
* obj1
= 0 ;
7258 PyObject
* obj2
= 0 ;
7259 char * kwnames
[] = {
7260 (char *) "self",(char *) "perspective",(char *) "update", NULL
7263 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FrameManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7264 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7265 if (!SWIG_IsOK(res1
)) {
7266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7268 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7270 arg2
= wxString_in_helper(obj1
);
7271 if (arg2
== NULL
) SWIG_fail
;
7275 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
7276 if (!SWIG_IsOK(ecode3
)) {
7277 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
7279 arg3
= static_cast< bool >(val3
);
7282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7283 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
7284 wxPyEndAllowThreads(__tstate
);
7285 if (PyErr_Occurred()) SWIG_fail
;
7288 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7304 SWIGINTERN PyObject
*_wrap_FrameManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7305 PyObject
*resultobj
= 0;
7306 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7309 PyObject
*swig_obj
[1] ;
7311 if (!args
) SWIG_fail
;
7313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7314 if (!SWIG_IsOK(res1
)) {
7315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_Update" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7317 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7321 wxPyEndAllowThreads(__tstate
);
7322 if (PyErr_Occurred()) SWIG_fail
;
7324 resultobj
= SWIG_Py_Void();
7331 SWIGINTERN PyObject
*_wrap_FrameManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7332 PyObject
*resultobj
= 0;
7333 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7334 wxFrameManagerEvent
*arg2
= 0 ;
7339 PyObject
* obj0
= 0 ;
7340 PyObject
* obj1
= 0 ;
7341 char * kwnames
[] = {
7342 (char *) "self",(char *) "evt", NULL
7345 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7346 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7347 if (!SWIG_IsOK(res1
)) {
7348 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnRender" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7350 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7351 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
7352 if (!SWIG_IsOK(res2
)) {
7353 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7356 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7358 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
7360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7361 (arg1
)->OnRender(*arg2
);
7362 wxPyEndAllowThreads(__tstate
);
7363 if (PyErr_Occurred()) SWIG_fail
;
7365 resultobj
= SWIG_Py_Void();
7372 SWIGINTERN PyObject
*_wrap_FrameManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7373 PyObject
*resultobj
= 0;
7374 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7375 wxFrameManagerEvent
*arg2
= 0 ;
7380 PyObject
* obj0
= 0 ;
7381 PyObject
* obj1
= 0 ;
7382 char * kwnames
[] = {
7383 (char *) "self",(char *) "evt", NULL
7386 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7387 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7388 if (!SWIG_IsOK(res1
)) {
7389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7391 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7392 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
7393 if (!SWIG_IsOK(res2
)) {
7394 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7397 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
7399 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
7401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7402 (arg1
)->OnPaneButton(*arg2
);
7403 wxPyEndAllowThreads(__tstate
);
7404 if (PyErr_Occurred()) SWIG_fail
;
7406 resultobj
= SWIG_Py_Void();
7413 SWIGINTERN PyObject
*FrameManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7415 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7416 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManager
, SWIG_NewClientData(obj
));
7417 return SWIG_Py_Void();
7420 SWIGINTERN PyObject
*FrameManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7421 return SWIG_Python_InitShadowInstance(args
);
7424 SWIGINTERN PyObject
*_wrap_new_FrameManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7425 PyObject
*resultobj
= 0;
7426 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
7427 wxFrameManagerEvent
*result
= 0 ;
7430 PyObject
* obj0
= 0 ;
7431 char * kwnames
[] = {
7432 (char *) "type", NULL
7435 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FrameManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
7437 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7438 if (!SWIG_IsOK(ecode1
)) {
7439 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FrameManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
7441 arg1
= static_cast< wxEventType
>(val1
);
7444 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7445 result
= (wxFrameManagerEvent
*)new wxFrameManagerEvent(arg1
);
7446 wxPyEndAllowThreads(__tstate
);
7447 if (PyErr_Occurred()) SWIG_fail
;
7449 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManagerEvent
, SWIG_POINTER_NEW
| 0 );
7456 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7457 PyObject
*resultobj
= 0;
7458 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7459 wxEvent
*result
= 0 ;
7462 PyObject
*swig_obj
[1] ;
7464 if (!args
) SWIG_fail
;
7466 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7467 if (!SWIG_IsOK(res1
)) {
7468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Clone" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7470 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7473 result
= (wxEvent
*)((wxFrameManagerEvent
const *)arg1
)->Clone();
7474 wxPyEndAllowThreads(__tstate
);
7475 if (PyErr_Occurred()) SWIG_fail
;
7477 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
7484 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7485 PyObject
*resultobj
= 0;
7486 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7487 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
7492 PyObject
* obj0
= 0 ;
7493 PyObject
* obj1
= 0 ;
7494 char * kwnames
[] = {
7495 (char *) "self",(char *) "p", NULL
7498 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7499 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7500 if (!SWIG_IsOK(res1
)) {
7501 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7503 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7504 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7505 if (!SWIG_IsOK(res2
)) {
7506 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
7508 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7511 (arg1
)->SetPane(arg2
);
7512 wxPyEndAllowThreads(__tstate
);
7513 if (PyErr_Occurred()) SWIG_fail
;
7515 resultobj
= SWIG_Py_Void();
7522 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7523 PyObject
*resultobj
= 0;
7524 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7530 PyObject
* obj0
= 0 ;
7531 PyObject
* obj1
= 0 ;
7532 char * kwnames
[] = {
7533 (char *) "self",(char *) "b", NULL
7536 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7537 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7538 if (!SWIG_IsOK(res1
)) {
7539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7541 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7542 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7543 if (!SWIG_IsOK(ecode2
)) {
7544 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
7546 arg2
= static_cast< int >(val2
);
7548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7549 (arg1
)->SetButton(arg2
);
7550 wxPyEndAllowThreads(__tstate
);
7551 if (PyErr_Occurred()) SWIG_fail
;
7553 resultobj
= SWIG_Py_Void();
7560 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7561 PyObject
*resultobj
= 0;
7562 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7563 wxDC
*arg2
= (wxDC
*) 0 ;
7568 PyObject
* obj0
= 0 ;
7569 PyObject
* obj1
= 0 ;
7570 char * kwnames
[] = {
7571 (char *) "self",(char *) "pdc", NULL
7574 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7576 if (!SWIG_IsOK(res1
)) {
7577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7579 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7580 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
7581 if (!SWIG_IsOK(res2
)) {
7582 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
7584 arg2
= reinterpret_cast< wxDC
* >(argp2
);
7586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7587 (arg1
)->SetDC(arg2
);
7588 wxPyEndAllowThreads(__tstate
);
7589 if (PyErr_Occurred()) SWIG_fail
;
7591 resultobj
= SWIG_Py_Void();
7598 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7599 PyObject
*resultobj
= 0;
7600 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7601 wxPaneInfo
*result
= 0 ;
7604 PyObject
*swig_obj
[1] ;
7606 if (!args
) SWIG_fail
;
7608 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7609 if (!SWIG_IsOK(res1
)) {
7610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7612 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7615 result
= (wxPaneInfo
*)(arg1
)->GetPane();
7616 wxPyEndAllowThreads(__tstate
);
7617 if (PyErr_Occurred()) SWIG_fail
;
7619 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7626 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7627 PyObject
*resultobj
= 0;
7628 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7632 PyObject
*swig_obj
[1] ;
7634 if (!args
) SWIG_fail
;
7636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7637 if (!SWIG_IsOK(res1
)) {
7638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7640 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7643 result
= (int)(arg1
)->GetButton();
7644 wxPyEndAllowThreads(__tstate
);
7645 if (PyErr_Occurred()) SWIG_fail
;
7647 resultobj
= SWIG_From_int(static_cast< int >(result
));
7654 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7655 PyObject
*resultobj
= 0;
7656 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7660 PyObject
*swig_obj
[1] ;
7662 if (!args
) SWIG_fail
;
7664 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7665 if (!SWIG_IsOK(res1
)) {
7666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7668 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7671 result
= (wxDC
*)(arg1
)->GetDC();
7672 wxPyEndAllowThreads(__tstate
);
7673 if (PyErr_Occurred()) SWIG_fail
;
7676 resultobj
= wxPyMake_wxObject(result
, (bool)0);
7684 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7685 PyObject
*resultobj
= 0;
7686 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7687 bool arg2
= (bool) true ;
7692 PyObject
* obj0
= 0 ;
7693 PyObject
* obj1
= 0 ;
7694 char * kwnames
[] = {
7695 (char *) "self",(char *) "veto", NULL
7698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:FrameManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7700 if (!SWIG_IsOK(res1
)) {
7701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7703 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7705 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7706 if (!SWIG_IsOK(ecode2
)) {
7707 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
7709 arg2
= static_cast< bool >(val2
);
7712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7714 wxPyEndAllowThreads(__tstate
);
7715 if (PyErr_Occurred()) SWIG_fail
;
7717 resultobj
= SWIG_Py_Void();
7724 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7725 PyObject
*resultobj
= 0;
7726 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7730 PyObject
*swig_obj
[1] ;
7732 if (!args
) SWIG_fail
;
7734 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7735 if (!SWIG_IsOK(res1
)) {
7736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7738 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7741 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->GetVeto();
7742 wxPyEndAllowThreads(__tstate
);
7743 if (PyErr_Occurred()) SWIG_fail
;
7746 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7754 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7755 PyObject
*resultobj
= 0;
7756 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7762 PyObject
* obj0
= 0 ;
7763 PyObject
* obj1
= 0 ;
7764 char * kwnames
[] = {
7765 (char *) "self",(char *) "can_veto", NULL
7768 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7769 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7770 if (!SWIG_IsOK(res1
)) {
7771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7773 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7774 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7775 if (!SWIG_IsOK(ecode2
)) {
7776 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
7778 arg2
= static_cast< bool >(val2
);
7780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7781 (arg1
)->SetCanVeto(arg2
);
7782 wxPyEndAllowThreads(__tstate
);
7783 if (PyErr_Occurred()) SWIG_fail
;
7785 resultobj
= SWIG_Py_Void();
7792 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7793 PyObject
*resultobj
= 0;
7794 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7798 PyObject
*swig_obj
[1] ;
7800 if (!args
) SWIG_fail
;
7802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7803 if (!SWIG_IsOK(res1
)) {
7804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7806 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7809 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->CanVeto();
7810 wxPyEndAllowThreads(__tstate
);
7811 if (PyErr_Occurred()) SWIG_fail
;
7814 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7822 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7823 PyObject
*resultobj
= 0;
7824 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7825 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
7830 PyObject
*swig_obj
[2] ;
7832 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
7833 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7834 if (!SWIG_IsOK(res1
)) {
7835 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7837 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7838 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
7839 if (!SWIG_IsOK(res2
)) {
7840 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
7842 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7843 if (arg1
) (arg1
)->pane
= arg2
;
7845 resultobj
= SWIG_Py_Void();
7852 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7853 PyObject
*resultobj
= 0;
7854 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7855 wxPaneInfo
*result
= 0 ;
7858 PyObject
*swig_obj
[1] ;
7860 if (!args
) SWIG_fail
;
7862 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7863 if (!SWIG_IsOK(res1
)) {
7864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7866 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7867 result
= (wxPaneInfo
*) ((arg1
)->pane
);
7868 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7875 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7876 PyObject
*resultobj
= 0;
7877 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7883 PyObject
*swig_obj
[2] ;
7885 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
7886 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7887 if (!SWIG_IsOK(res1
)) {
7888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7890 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7891 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
7892 if (!SWIG_IsOK(ecode2
)) {
7893 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
7895 arg2
= static_cast< int >(val2
);
7896 if (arg1
) (arg1
)->button
= arg2
;
7898 resultobj
= SWIG_Py_Void();
7905 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7906 PyObject
*resultobj
= 0;
7907 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7911 PyObject
*swig_obj
[1] ;
7913 if (!args
) SWIG_fail
;
7915 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7916 if (!SWIG_IsOK(res1
)) {
7917 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7919 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7920 result
= (int) ((arg1
)->button
);
7921 resultobj
= SWIG_From_int(static_cast< int >(result
));
7928 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7929 PyObject
*resultobj
= 0;
7930 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7936 PyObject
*swig_obj
[2] ;
7938 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
7939 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7940 if (!SWIG_IsOK(res1
)) {
7941 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7943 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7944 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
7945 if (!SWIG_IsOK(ecode2
)) {
7946 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
7948 arg2
= static_cast< bool >(val2
);
7949 if (arg1
) (arg1
)->veto_flag
= arg2
;
7951 resultobj
= SWIG_Py_Void();
7958 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7959 PyObject
*resultobj
= 0;
7960 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7964 PyObject
*swig_obj
[1] ;
7966 if (!args
) SWIG_fail
;
7968 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7969 if (!SWIG_IsOK(res1
)) {
7970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7972 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7973 result
= (bool) ((arg1
)->veto_flag
);
7975 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7983 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7984 PyObject
*resultobj
= 0;
7985 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7991 PyObject
*swig_obj
[2] ;
7993 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
7994 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7995 if (!SWIG_IsOK(res1
)) {
7996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7998 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7999 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8000 if (!SWIG_IsOK(ecode2
)) {
8001 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8003 arg2
= static_cast< bool >(val2
);
8004 if (arg1
) (arg1
)->canveto_flag
= arg2
;
8006 resultobj
= SWIG_Py_Void();
8013 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8014 PyObject
*resultobj
= 0;
8015 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8019 PyObject
*swig_obj
[1] ;
8021 if (!args
) SWIG_fail
;
8023 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8024 if (!SWIG_IsOK(res1
)) {
8025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8027 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8028 result
= (bool) ((arg1
)->canveto_flag
);
8030 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8038 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8039 PyObject
*resultobj
= 0;
8040 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8041 wxDC
*arg2
= (wxDC
*) 0 ;
8046 PyObject
*swig_obj
[2] ;
8048 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
8049 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8050 if (!SWIG_IsOK(res1
)) {
8051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8053 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8054 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
8055 if (!SWIG_IsOK(res2
)) {
8056 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
8058 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8059 if (arg1
) (arg1
)->dc
= arg2
;
8061 resultobj
= SWIG_Py_Void();
8068 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8069 PyObject
*resultobj
= 0;
8070 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8074 PyObject
*swig_obj
[1] ;
8076 if (!args
) SWIG_fail
;
8078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8079 if (!SWIG_IsOK(res1
)) {
8080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8082 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8083 result
= (wxDC
*) ((arg1
)->dc
);
8085 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8093 SWIGINTERN PyObject
*FrameManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8095 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8096 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManagerEvent
, SWIG_NewClientData(obj
));
8097 return SWIG_Py_Void();
8100 SWIGINTERN PyObject
*FrameManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8101 return SWIG_Python_InitShadowInstance(args
);
8104 SWIGINTERN PyObject
*_wrap_new_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8105 PyObject
*resultobj
= 0;
8106 wxDockInfo
*result
= 0 ;
8108 if (!SWIG_Python_UnpackTuple(args
,"new_DockInfo",0,0,0)) SWIG_fail
;
8110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8111 result
= (wxDockInfo
*)new wxDockInfo();
8112 wxPyEndAllowThreads(__tstate
);
8113 if (PyErr_Occurred()) SWIG_fail
;
8115 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_NEW
| 0 );
8122 SWIGINTERN PyObject
*_wrap_DockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8123 PyObject
*resultobj
= 0;
8124 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8128 PyObject
*swig_obj
[1] ;
8130 if (!args
) SWIG_fail
;
8132 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8133 if (!SWIG_IsOK(res1
)) {
8134 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsOk" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8136 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8138 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8139 result
= (bool)((wxDockInfo
const *)arg1
)->IsOk();
8140 wxPyEndAllowThreads(__tstate
);
8141 if (PyErr_Occurred()) SWIG_fail
;
8144 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8152 SWIGINTERN PyObject
*_wrap_DockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8153 PyObject
*resultobj
= 0;
8154 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8158 PyObject
*swig_obj
[1] ;
8160 if (!args
) SWIG_fail
;
8162 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8163 if (!SWIG_IsOK(res1
)) {
8164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8166 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8169 result
= (bool)((wxDockInfo
const *)arg1
)->IsHorizontal();
8170 wxPyEndAllowThreads(__tstate
);
8171 if (PyErr_Occurred()) SWIG_fail
;
8174 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8182 SWIGINTERN PyObject
*_wrap_DockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8183 PyObject
*resultobj
= 0;
8184 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8188 PyObject
*swig_obj
[1] ;
8190 if (!args
) SWIG_fail
;
8192 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8193 if (!SWIG_IsOK(res1
)) {
8194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsVertical" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8196 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8199 result
= (bool)((wxDockInfo
const *)arg1
)->IsVertical();
8200 wxPyEndAllowThreads(__tstate
);
8201 if (PyErr_Occurred()) SWIG_fail
;
8204 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8212 SWIGINTERN PyObject
*_wrap_DockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8213 PyObject
*resultobj
= 0;
8214 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8215 wxPaneInfoPtrArray arg2
;
8220 PyObject
*swig_obj
[2] ;
8222 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
8223 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8224 if (!SWIG_IsOK(res1
)) {
8225 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8227 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8229 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneInfoPtrArray
, 0 | 0);
8230 if (!SWIG_IsOK(res2
)) {
8231 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8234 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8236 wxPaneInfoPtrArray
* temp
= reinterpret_cast< wxPaneInfoPtrArray
* >(argp2
);
8238 if (SWIG_IsNewObj(res2
)) delete temp
;
8241 if (arg1
) (arg1
)->panes
= arg2
;
8243 resultobj
= SWIG_Py_Void();
8250 SWIGINTERN PyObject
*_wrap_DockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8251 PyObject
*resultobj
= 0;
8252 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8253 wxPaneInfoPtrArray result
;
8256 PyObject
*swig_obj
[1] ;
8258 if (!args
) SWIG_fail
;
8260 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8261 if (!SWIG_IsOK(res1
)) {
8262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8264 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8265 result
= ((arg1
)->panes
);
8266 resultobj
= SWIG_NewPointerObj((new wxPaneInfoPtrArray(static_cast< const wxPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
8273 SWIGINTERN PyObject
*_wrap_DockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8274 PyObject
*resultobj
= 0;
8275 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8276 wxRect
*arg2
= (wxRect
*) 0 ;
8281 PyObject
*swig_obj
[2] ;
8283 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
8284 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8285 if (!SWIG_IsOK(res1
)) {
8286 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8288 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8289 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
8290 if (!SWIG_IsOK(res2
)) {
8291 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
8293 arg2
= reinterpret_cast< wxRect
* >(argp2
);
8294 if (arg1
) (arg1
)->rect
= *arg2
;
8296 resultobj
= SWIG_Py_Void();
8303 SWIGINTERN PyObject
*_wrap_DockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8304 PyObject
*resultobj
= 0;
8305 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8306 wxRect
*result
= 0 ;
8309 PyObject
*swig_obj
[1] ;
8311 if (!args
) SWIG_fail
;
8313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8314 if (!SWIG_IsOK(res1
)) {
8315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8317 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8318 result
= (wxRect
*)& ((arg1
)->rect
);
8319 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
8326 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8327 PyObject
*resultobj
= 0;
8328 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8334 PyObject
*swig_obj
[2] ;
8336 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
8337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8338 if (!SWIG_IsOK(res1
)) {
8339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8341 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8342 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8343 if (!SWIG_IsOK(ecode2
)) {
8344 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
8346 arg2
= static_cast< int >(val2
);
8347 if (arg1
) (arg1
)->dock_direction
= arg2
;
8349 resultobj
= SWIG_Py_Void();
8356 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8357 PyObject
*resultobj
= 0;
8358 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8362 PyObject
*swig_obj
[1] ;
8364 if (!args
) SWIG_fail
;
8366 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8367 if (!SWIG_IsOK(res1
)) {
8368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8370 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8371 result
= (int) ((arg1
)->dock_direction
);
8372 resultobj
= SWIG_From_int(static_cast< int >(result
));
8379 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8380 PyObject
*resultobj
= 0;
8381 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8387 PyObject
*swig_obj
[2] ;
8389 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
8390 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8391 if (!SWIG_IsOK(res1
)) {
8392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8394 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8395 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8396 if (!SWIG_IsOK(ecode2
)) {
8397 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
8399 arg2
= static_cast< int >(val2
);
8400 if (arg1
) (arg1
)->dock_layer
= arg2
;
8402 resultobj
= SWIG_Py_Void();
8409 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8410 PyObject
*resultobj
= 0;
8411 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8415 PyObject
*swig_obj
[1] ;
8417 if (!args
) SWIG_fail
;
8419 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8420 if (!SWIG_IsOK(res1
)) {
8421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8423 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8424 result
= (int) ((arg1
)->dock_layer
);
8425 resultobj
= SWIG_From_int(static_cast< int >(result
));
8432 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8433 PyObject
*resultobj
= 0;
8434 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8440 PyObject
*swig_obj
[2] ;
8442 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
8443 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8444 if (!SWIG_IsOK(res1
)) {
8445 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8447 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8448 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8449 if (!SWIG_IsOK(ecode2
)) {
8450 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
8452 arg2
= static_cast< int >(val2
);
8453 if (arg1
) (arg1
)->dock_row
= arg2
;
8455 resultobj
= SWIG_Py_Void();
8462 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8463 PyObject
*resultobj
= 0;
8464 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8468 PyObject
*swig_obj
[1] ;
8470 if (!args
) SWIG_fail
;
8472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8473 if (!SWIG_IsOK(res1
)) {
8474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8476 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8477 result
= (int) ((arg1
)->dock_row
);
8478 resultobj
= SWIG_From_int(static_cast< int >(result
));
8485 SWIGINTERN PyObject
*_wrap_DockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8486 PyObject
*resultobj
= 0;
8487 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8493 PyObject
*swig_obj
[2] ;
8495 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
8496 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8497 if (!SWIG_IsOK(res1
)) {
8498 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8500 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8501 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8502 if (!SWIG_IsOK(ecode2
)) {
8503 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
8505 arg2
= static_cast< int >(val2
);
8506 if (arg1
) (arg1
)->size
= arg2
;
8508 resultobj
= SWIG_Py_Void();
8515 SWIGINTERN PyObject
*_wrap_DockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8516 PyObject
*resultobj
= 0;
8517 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8521 PyObject
*swig_obj
[1] ;
8523 if (!args
) SWIG_fail
;
8525 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8526 if (!SWIG_IsOK(res1
)) {
8527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8529 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8530 result
= (int) ((arg1
)->size
);
8531 resultobj
= SWIG_From_int(static_cast< int >(result
));
8538 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8539 PyObject
*resultobj
= 0;
8540 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8546 PyObject
*swig_obj
[2] ;
8548 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
8549 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8550 if (!SWIG_IsOK(res1
)) {
8551 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8553 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8554 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8555 if (!SWIG_IsOK(ecode2
)) {
8556 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
8558 arg2
= static_cast< int >(val2
);
8559 if (arg1
) (arg1
)->min_size
= arg2
;
8561 resultobj
= SWIG_Py_Void();
8568 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8569 PyObject
*resultobj
= 0;
8570 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8574 PyObject
*swig_obj
[1] ;
8576 if (!args
) SWIG_fail
;
8578 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8579 if (!SWIG_IsOK(res1
)) {
8580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8582 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8583 result
= (int) ((arg1
)->min_size
);
8584 resultobj
= SWIG_From_int(static_cast< int >(result
));
8591 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8592 PyObject
*resultobj
= 0;
8593 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8599 PyObject
*swig_obj
[2] ;
8601 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
8602 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8603 if (!SWIG_IsOK(res1
)) {
8604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8606 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8607 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8608 if (!SWIG_IsOK(ecode2
)) {
8609 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
8611 arg2
= static_cast< bool >(val2
);
8612 if (arg1
) (arg1
)->resizable
= arg2
;
8614 resultobj
= SWIG_Py_Void();
8621 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8622 PyObject
*resultobj
= 0;
8623 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8627 PyObject
*swig_obj
[1] ;
8629 if (!args
) SWIG_fail
;
8631 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8632 if (!SWIG_IsOK(res1
)) {
8633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8635 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8636 result
= (bool) ((arg1
)->resizable
);
8638 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8646 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8647 PyObject
*resultobj
= 0;
8648 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8654 PyObject
*swig_obj
[2] ;
8656 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
8657 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8658 if (!SWIG_IsOK(res1
)) {
8659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8661 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8662 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8663 if (!SWIG_IsOK(ecode2
)) {
8664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
8666 arg2
= static_cast< bool >(val2
);
8667 if (arg1
) (arg1
)->toolbar
= arg2
;
8669 resultobj
= SWIG_Py_Void();
8676 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8677 PyObject
*resultobj
= 0;
8678 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8682 PyObject
*swig_obj
[1] ;
8684 if (!args
) SWIG_fail
;
8686 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8687 if (!SWIG_IsOK(res1
)) {
8688 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8690 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8691 result
= (bool) ((arg1
)->toolbar
);
8693 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8701 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8702 PyObject
*resultobj
= 0;
8703 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8709 PyObject
*swig_obj
[2] ;
8711 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
8712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8713 if (!SWIG_IsOK(res1
)) {
8714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8716 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8717 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8718 if (!SWIG_IsOK(ecode2
)) {
8719 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
8721 arg2
= static_cast< bool >(val2
);
8722 if (arg1
) (arg1
)->fixed
= arg2
;
8724 resultobj
= SWIG_Py_Void();
8731 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8732 PyObject
*resultobj
= 0;
8733 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8737 PyObject
*swig_obj
[1] ;
8739 if (!args
) SWIG_fail
;
8741 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8742 if (!SWIG_IsOK(res1
)) {
8743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8745 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8746 result
= (bool) ((arg1
)->fixed
);
8748 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8756 SWIGINTERN PyObject
*DockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8758 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8759 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockInfo
, SWIG_NewClientData(obj
));
8760 return SWIG_Py_Void();
8763 SWIGINTERN PyObject
*DockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8764 return SWIG_Python_InitShadowInstance(args
);
8767 SWIGINTERN PyObject
*_wrap_DockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8768 PyObject
*resultobj
= 0;
8769 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8775 PyObject
*swig_obj
[2] ;
8777 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
8778 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8779 if (!SWIG_IsOK(res1
)) {
8780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8782 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8783 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8784 if (!SWIG_IsOK(ecode2
)) {
8785 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
8787 arg2
= static_cast< int >(val2
);
8788 if (arg1
) (arg1
)->type
= arg2
;
8790 resultobj
= SWIG_Py_Void();
8797 SWIGINTERN PyObject
*_wrap_DockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8798 PyObject
*resultobj
= 0;
8799 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8803 PyObject
*swig_obj
[1] ;
8805 if (!args
) SWIG_fail
;
8807 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8808 if (!SWIG_IsOK(res1
)) {
8809 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8811 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8812 result
= (int) ((arg1
)->type
);
8813 resultobj
= SWIG_From_int(static_cast< int >(result
));
8820 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8821 PyObject
*resultobj
= 0;
8822 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8828 PyObject
*swig_obj
[2] ;
8830 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
8831 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8832 if (!SWIG_IsOK(res1
)) {
8833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8835 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8836 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8837 if (!SWIG_IsOK(ecode2
)) {
8838 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
8840 arg2
= static_cast< int >(val2
);
8841 if (arg1
) (arg1
)->orientation
= arg2
;
8843 resultobj
= SWIG_Py_Void();
8850 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8851 PyObject
*resultobj
= 0;
8852 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8856 PyObject
*swig_obj
[1] ;
8858 if (!args
) SWIG_fail
;
8860 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8861 if (!SWIG_IsOK(res1
)) {
8862 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8864 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8865 result
= (int) ((arg1
)->orientation
);
8866 resultobj
= SWIG_From_int(static_cast< int >(result
));
8873 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8874 PyObject
*resultobj
= 0;
8875 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8876 wxDockInfo
*arg2
= (wxDockInfo
*) 0 ;
8881 PyObject
*swig_obj
[2] ;
8883 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
8884 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8885 if (!SWIG_IsOK(res1
)) {
8886 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8888 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8889 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_DISOWN
| 0 );
8890 if (!SWIG_IsOK(res2
)) {
8891 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_dock_set" "', expected argument " "2"" of type '" "wxDockInfo *""'");
8893 arg2
= reinterpret_cast< wxDockInfo
* >(argp2
);
8894 if (arg1
) (arg1
)->dock
= arg2
;
8896 resultobj
= SWIG_Py_Void();
8903 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8904 PyObject
*resultobj
= 0;
8905 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8906 wxDockInfo
*result
= 0 ;
8909 PyObject
*swig_obj
[1] ;
8911 if (!args
) SWIG_fail
;
8913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8914 if (!SWIG_IsOK(res1
)) {
8915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8917 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8918 result
= (wxDockInfo
*) ((arg1
)->dock
);
8919 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8926 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8927 PyObject
*resultobj
= 0;
8928 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8929 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
8934 PyObject
*swig_obj
[2] ;
8936 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
8937 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8938 if (!SWIG_IsOK(res1
)) {
8939 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8941 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8942 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
8943 if (!SWIG_IsOK(res2
)) {
8944 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
8946 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
8947 if (arg1
) (arg1
)->pane
= arg2
;
8949 resultobj
= SWIG_Py_Void();
8956 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8957 PyObject
*resultobj
= 0;
8958 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8959 wxPaneInfo
*result
= 0 ;
8962 PyObject
*swig_obj
[1] ;
8964 if (!args
) SWIG_fail
;
8966 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8967 if (!SWIG_IsOK(res1
)) {
8968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8970 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8971 result
= (wxPaneInfo
*) ((arg1
)->pane
);
8972 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8979 SWIGINTERN PyObject
*_wrap_DockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8980 PyObject
*resultobj
= 0;
8981 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8982 wxPaneButton
*arg2
= (wxPaneButton
*) 0 ;
8987 PyObject
*swig_obj
[2] ;
8989 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
8990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8991 if (!SWIG_IsOK(res1
)) {
8992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8994 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8995 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
8996 if (!SWIG_IsOK(res2
)) {
8997 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_button_set" "', expected argument " "2"" of type '" "wxPaneButton *""'");
8999 arg2
= reinterpret_cast< wxPaneButton
* >(argp2
);
9000 if (arg1
) (arg1
)->button
= arg2
;
9002 resultobj
= SWIG_Py_Void();
9009 SWIGINTERN PyObject
*_wrap_DockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9010 PyObject
*resultobj
= 0;
9011 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9012 wxPaneButton
*result
= 0 ;
9015 PyObject
*swig_obj
[1] ;
9017 if (!args
) SWIG_fail
;
9019 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9020 if (!SWIG_IsOK(res1
)) {
9021 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9023 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9024 result
= (wxPaneButton
*) ((arg1
)->button
);
9025 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9032 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9033 PyObject
*resultobj
= 0;
9034 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9035 wxSizer
*arg2
= (wxSizer
*) 0 ;
9040 PyObject
*swig_obj
[2] ;
9042 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
9043 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9044 if (!SWIG_IsOK(res1
)) {
9045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9047 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9048 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
9049 if (!SWIG_IsOK(res2
)) {
9050 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
9052 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
9053 if (arg1
) (arg1
)->cont_sizer
= arg2
;
9055 resultobj
= SWIG_Py_Void();
9062 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9063 PyObject
*resultobj
= 0;
9064 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9065 wxSizer
*result
= 0 ;
9068 PyObject
*swig_obj
[1] ;
9070 if (!args
) SWIG_fail
;
9072 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9073 if (!SWIG_IsOK(res1
)) {
9074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9076 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9077 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
9079 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9087 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9088 PyObject
*resultobj
= 0;
9089 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9090 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
9095 PyObject
*swig_obj
[2] ;
9097 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
9098 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9099 if (!SWIG_IsOK(res1
)) {
9100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9102 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9103 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
9104 if (!SWIG_IsOK(res2
)) {
9105 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
9107 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
9108 if (arg1
) (arg1
)->sizer_item
= arg2
;
9110 resultobj
= SWIG_Py_Void();
9117 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9118 PyObject
*resultobj
= 0;
9119 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9120 wxSizerItem
*result
= 0 ;
9123 PyObject
*swig_obj
[1] ;
9125 if (!args
) SWIG_fail
;
9127 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9128 if (!SWIG_IsOK(res1
)) {
9129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9131 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9132 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
9133 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
9140 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9141 PyObject
*resultobj
= 0;
9142 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9143 wxRect
*arg2
= (wxRect
*) 0 ;
9148 PyObject
*swig_obj
[2] ;
9150 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
9151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9152 if (!SWIG_IsOK(res1
)) {
9153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9155 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9156 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9157 if (!SWIG_IsOK(res2
)) {
9158 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9160 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9161 if (arg1
) (arg1
)->rect
= *arg2
;
9163 resultobj
= SWIG_Py_Void();
9170 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9171 PyObject
*resultobj
= 0;
9172 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9173 wxRect
*result
= 0 ;
9176 PyObject
*swig_obj
[1] ;
9178 if (!args
) SWIG_fail
;
9180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9181 if (!SWIG_IsOK(res1
)) {
9182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9184 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9185 result
= (wxRect
*)& ((arg1
)->rect
);
9186 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9193 SWIGINTERN PyObject
*DockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9195 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9196 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockUIPart
, SWIG_NewClientData(obj
));
9197 return SWIG_Py_Void();
9200 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9201 PyObject
*resultobj
= 0;
9202 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9208 PyObject
*swig_obj
[2] ;
9210 if (!SWIG_Python_UnpackTuple(args
,"PaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
9211 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9212 if (!SWIG_IsOK(res1
)) {
9213 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_set" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9215 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9216 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9217 if (!SWIG_IsOK(ecode2
)) {
9218 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
9220 arg2
= static_cast< int >(val2
);
9221 if (arg1
) (arg1
)->button_id
= arg2
;
9223 resultobj
= SWIG_Py_Void();
9230 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9231 PyObject
*resultobj
= 0;
9232 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9236 PyObject
*swig_obj
[1] ;
9238 if (!args
) SWIG_fail
;
9240 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9241 if (!SWIG_IsOK(res1
)) {
9242 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_get" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9244 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9245 result
= (int) ((arg1
)->button_id
);
9246 resultobj
= SWIG_From_int(static_cast< int >(result
));
9253 SWIGINTERN PyObject
*PaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9255 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9256 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneButton
, SWIG_NewClientData(obj
));
9257 return SWIG_Py_Void();
9260 SWIGINTERN PyObject
*_wrap_delete_DockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9261 PyObject
*resultobj
= 0;
9262 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9265 PyObject
*swig_obj
[1] ;
9267 if (!args
) SWIG_fail
;
9269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
9270 if (!SWIG_IsOK(res1
)) {
9271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockArt" "', expected argument " "1"" of type '" "wxDockArt *""'");
9273 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9278 wxPyEndAllowThreads(__tstate
);
9279 if (PyErr_Occurred()) SWIG_fail
;
9281 resultobj
= SWIG_Py_Void();
9288 SWIGINTERN PyObject
*_wrap_DockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9289 PyObject
*resultobj
= 0;
9290 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9297 PyObject
* obj0
= 0 ;
9298 PyObject
* obj1
= 0 ;
9299 char * kwnames
[] = {
9300 (char *) "self",(char *) "id", NULL
9303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9305 if (!SWIG_IsOK(res1
)) {
9306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9308 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9309 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9310 if (!SWIG_IsOK(ecode2
)) {
9311 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
9313 arg2
= static_cast< int >(val2
);
9315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9316 result
= (int)(arg1
)->GetMetric(arg2
);
9317 wxPyEndAllowThreads(__tstate
);
9318 if (PyErr_Occurred()) SWIG_fail
;
9320 resultobj
= SWIG_From_int(static_cast< int >(result
));
9327 SWIGINTERN PyObject
*_wrap_DockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9328 PyObject
*resultobj
= 0;
9329 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9338 PyObject
* obj0
= 0 ;
9339 PyObject
* obj1
= 0 ;
9340 PyObject
* obj2
= 0 ;
9341 char * kwnames
[] = {
9342 (char *) "self",(char *) "id",(char *) "new_val", NULL
9345 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9346 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9347 if (!SWIG_IsOK(res1
)) {
9348 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9350 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9351 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9352 if (!SWIG_IsOK(ecode2
)) {
9353 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
9355 arg2
= static_cast< int >(val2
);
9356 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9357 if (!SWIG_IsOK(ecode3
)) {
9358 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
9360 arg3
= static_cast< int >(val3
);
9362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9363 (arg1
)->SetMetric(arg2
,arg3
);
9364 wxPyEndAllowThreads(__tstate
);
9365 if (PyErr_Occurred()) SWIG_fail
;
9367 resultobj
= SWIG_Py_Void();
9374 SWIGINTERN PyObject
*_wrap_DockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9375 PyObject
*resultobj
= 0;
9376 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9385 PyObject
* obj0
= 0 ;
9386 PyObject
* obj1
= 0 ;
9387 PyObject
* obj2
= 0 ;
9388 char * kwnames
[] = {
9389 (char *) "self",(char *) "id",(char *) "font", NULL
9392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9393 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9394 if (!SWIG_IsOK(res1
)) {
9395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
9397 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9398 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9399 if (!SWIG_IsOK(ecode2
)) {
9400 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
9402 arg2
= static_cast< int >(val2
);
9403 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
9404 if (!SWIG_IsOK(res3
)) {
9405 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9408 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9410 arg3
= reinterpret_cast< wxFont
* >(argp3
);
9412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9413 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
9414 wxPyEndAllowThreads(__tstate
);
9415 if (PyErr_Occurred()) SWIG_fail
;
9417 resultobj
= SWIG_Py_Void();
9424 SWIGINTERN PyObject
*_wrap_DockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9425 PyObject
*resultobj
= 0;
9426 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9433 PyObject
* obj0
= 0 ;
9434 PyObject
* obj1
= 0 ;
9435 char * kwnames
[] = {
9436 (char *) "self",(char *) "id", NULL
9439 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9440 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9441 if (!SWIG_IsOK(res1
)) {
9442 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
9444 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9445 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9446 if (!SWIG_IsOK(ecode2
)) {
9447 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
9449 arg2
= static_cast< int >(val2
);
9451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9452 result
= (arg1
)->GetFont(arg2
);
9453 wxPyEndAllowThreads(__tstate
);
9454 if (PyErr_Occurred()) SWIG_fail
;
9456 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
9463 SWIGINTERN PyObject
*_wrap_DockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9464 PyObject
*resultobj
= 0;
9465 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9472 PyObject
* obj0
= 0 ;
9473 PyObject
* obj1
= 0 ;
9474 char * kwnames
[] = {
9475 (char *) "self",(char *) "id", NULL
9478 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9479 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9480 if (!SWIG_IsOK(res1
)) {
9481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
9483 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9484 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9485 if (!SWIG_IsOK(ecode2
)) {
9486 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
9488 arg2
= static_cast< int >(val2
);
9490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9491 result
= (arg1
)->GetColour(arg2
);
9492 wxPyEndAllowThreads(__tstate
);
9493 if (PyErr_Occurred()) SWIG_fail
;
9495 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
9502 SWIGINTERN PyObject
*_wrap_DockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9503 PyObject
*resultobj
= 0;
9504 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9513 PyObject
* obj0
= 0 ;
9514 PyObject
* obj1
= 0 ;
9515 PyObject
* obj2
= 0 ;
9516 char * kwnames
[] = {
9517 (char *) "self",(char *) "id",(char *) "colour", NULL
9520 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9521 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9522 if (!SWIG_IsOK(res1
)) {
9523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
9525 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9526 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9527 if (!SWIG_IsOK(ecode2
)) {
9528 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
9530 arg2
= static_cast< int >(val2
);
9531 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
9532 if (!SWIG_IsOK(res3
)) {
9533 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
9536 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
9538 arg3
= reinterpret_cast< wxColor
* >(argp3
);
9540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9541 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
9542 wxPyEndAllowThreads(__tstate
);
9543 if (PyErr_Occurred()) SWIG_fail
;
9545 resultobj
= SWIG_Py_Void();
9552 SWIGINTERN PyObject
*_wrap_DockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9553 PyObject
*resultobj
= 0;
9554 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9561 PyObject
* obj0
= 0 ;
9562 PyObject
* obj1
= 0 ;
9563 char * kwnames
[] = {
9564 (char *) "self",(char *) "id", NULL
9567 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9568 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9569 if (!SWIG_IsOK(res1
)) {
9570 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
9572 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9573 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9574 if (!SWIG_IsOK(ecode2
)) {
9575 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
9577 arg2
= static_cast< int >(val2
);
9579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9580 result
= (arg1
)->GetColor(arg2
);
9581 wxPyEndAllowThreads(__tstate
);
9582 if (PyErr_Occurred()) SWIG_fail
;
9584 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
9591 SWIGINTERN PyObject
*_wrap_DockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9592 PyObject
*resultobj
= 0;
9593 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9595 wxColour
*arg3
= 0 ;
9601 PyObject
* obj0
= 0 ;
9602 PyObject
* obj1
= 0 ;
9603 PyObject
* obj2
= 0 ;
9604 char * kwnames
[] = {
9605 (char *) "self",(char *) "id",(char *) "color", NULL
9608 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9609 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9610 if (!SWIG_IsOK(res1
)) {
9611 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
9613 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9614 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9615 if (!SWIG_IsOK(ecode2
)) {
9616 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
9618 arg2
= static_cast< int >(val2
);
9621 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
9624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9625 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
9626 wxPyEndAllowThreads(__tstate
);
9627 if (PyErr_Occurred()) SWIG_fail
;
9629 resultobj
= SWIG_Py_Void();
9636 SWIGINTERN PyObject
*_wrap_DockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9637 PyObject
*resultobj
= 0;
9638 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9649 PyObject
* obj0
= 0 ;
9650 PyObject
* obj1
= 0 ;
9651 PyObject
* obj2
= 0 ;
9652 PyObject
* obj3
= 0 ;
9653 char * kwnames
[] = {
9654 (char *) "self",(char *) "dc",(char *) "orientation",(char *) "rect", NULL
9657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9658 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9659 if (!SWIG_IsOK(res1
)) {
9660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawSash" "', expected argument " "1"" of type '" "wxDockArt *""'");
9662 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9663 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9664 if (!SWIG_IsOK(res2
)) {
9665 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
9668 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
9670 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9671 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9672 if (!SWIG_IsOK(ecode3
)) {
9673 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawSash" "', expected argument " "3"" of type '" "int""'");
9675 arg3
= static_cast< int >(val3
);
9678 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9682 (arg1
)->DrawSash(*arg2
,arg3
,(wxRect
const &)*arg4
);
9683 wxPyEndAllowThreads(__tstate
);
9684 if (PyErr_Occurred()) SWIG_fail
;
9686 resultobj
= SWIG_Py_Void();
9693 SWIGINTERN PyObject
*_wrap_DockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9694 PyObject
*resultobj
= 0;
9695 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9706 PyObject
* obj0
= 0 ;
9707 PyObject
* obj1
= 0 ;
9708 PyObject
* obj2
= 0 ;
9709 PyObject
* obj3
= 0 ;
9710 char * kwnames
[] = {
9711 (char *) "self",(char *) "dc",(char *) "orientation",(char *) "rect", NULL
9714 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9715 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9716 if (!SWIG_IsOK(res1
)) {
9717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBackground" "', expected argument " "1"" of type '" "wxDockArt *""'");
9719 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9720 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9721 if (!SWIG_IsOK(res2
)) {
9722 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
9725 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
9727 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9728 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9729 if (!SWIG_IsOK(ecode3
)) {
9730 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawBackground" "', expected argument " "3"" of type '" "int""'");
9732 arg3
= static_cast< int >(val3
);
9735 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9739 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
9740 wxPyEndAllowThreads(__tstate
);
9741 if (PyErr_Occurred()) SWIG_fail
;
9743 resultobj
= SWIG_Py_Void();
9750 SWIGINTERN PyObject
*_wrap_DockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9751 PyObject
*resultobj
= 0;
9752 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9754 wxString
*arg3
= 0 ;
9756 wxPaneInfo
*arg5
= 0 ;
9761 bool temp3
= false ;
9765 PyObject
* obj0
= 0 ;
9766 PyObject
* obj1
= 0 ;
9767 PyObject
* obj2
= 0 ;
9768 PyObject
* obj3
= 0 ;
9769 PyObject
* obj4
= 0 ;
9770 char * kwnames
[] = {
9771 (char *) "self",(char *) "dc",(char *) "text",(char *) "rect",(char *) "pane", NULL
9774 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
9775 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9776 if (!SWIG_IsOK(res1
)) {
9777 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawCaption" "', expected argument " "1"" of type '" "wxDockArt *""'");
9779 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9780 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9781 if (!SWIG_IsOK(res2
)) {
9782 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
9785 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
9787 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9789 arg3
= wxString_in_helper(obj2
);
9790 if (arg3
== NULL
) SWIG_fail
;
9795 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9797 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
9798 if (!SWIG_IsOK(res5
)) {
9799 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawCaption" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
9802 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
9804 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
9806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9807 (arg1
)->DrawCaption(*arg2
,(wxString
const &)*arg3
,(wxRect
const &)*arg4
,*arg5
);
9808 wxPyEndAllowThreads(__tstate
);
9809 if (PyErr_Occurred()) SWIG_fail
;
9811 resultobj
= SWIG_Py_Void();
9826 SWIGINTERN PyObject
*_wrap_DockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9827 PyObject
*resultobj
= 0;
9828 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9831 wxPaneInfo
*arg4
= 0 ;
9839 PyObject
* obj0
= 0 ;
9840 PyObject
* obj1
= 0 ;
9841 PyObject
* obj2
= 0 ;
9842 PyObject
* obj3
= 0 ;
9843 char * kwnames
[] = {
9844 (char *) "self",(char *) "dc",(char *) "rect",(char *) "pane", NULL
9847 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9848 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9849 if (!SWIG_IsOK(res1
)) {
9850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawGripper" "', expected argument " "1"" of type '" "wxDockArt *""'");
9852 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9853 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9854 if (!SWIG_IsOK(res2
)) {
9855 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
9858 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
9860 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9863 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
9865 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxPaneInfo
, 0 );
9866 if (!SWIG_IsOK(res4
)) {
9867 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DockArt_DrawGripper" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9870 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9872 arg4
= reinterpret_cast< wxPaneInfo
* >(argp4
);
9874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9875 (arg1
)->DrawGripper(*arg2
,(wxRect
const &)*arg3
,*arg4
);
9876 wxPyEndAllowThreads(__tstate
);
9877 if (PyErr_Occurred()) SWIG_fail
;
9879 resultobj
= SWIG_Py_Void();
9886 SWIGINTERN PyObject
*_wrap_DockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9887 PyObject
*resultobj
= 0;
9888 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9891 wxPaneInfo
*arg4
= 0 ;
9899 PyObject
* obj0
= 0 ;
9900 PyObject
* obj1
= 0 ;
9901 PyObject
* obj2
= 0 ;
9902 PyObject
* obj3
= 0 ;
9903 char * kwnames
[] = {
9904 (char *) "self",(char *) "dc",(char *) "rect",(char *) "pane", NULL
9907 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9908 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9909 if (!SWIG_IsOK(res1
)) {
9910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBorder" "', expected argument " "1"" of type '" "wxDockArt *""'");
9912 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9913 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9914 if (!SWIG_IsOK(res2
)) {
9915 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
9918 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
9920 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9923 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
9925 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxPaneInfo
, 0 );
9926 if (!SWIG_IsOK(res4
)) {
9927 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DockArt_DrawBorder" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9930 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9932 arg4
= reinterpret_cast< wxPaneInfo
* >(argp4
);
9934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9935 (arg1
)->DrawBorder(*arg2
,(wxRect
const &)*arg3
,*arg4
);
9936 wxPyEndAllowThreads(__tstate
);
9937 if (PyErr_Occurred()) SWIG_fail
;
9939 resultobj
= SWIG_Py_Void();
9946 SWIGINTERN PyObject
*_wrap_DockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9947 PyObject
*resultobj
= 0;
9948 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9953 wxPaneInfo
*arg6
= 0 ;
9965 PyObject
* obj0
= 0 ;
9966 PyObject
* obj1
= 0 ;
9967 PyObject
* obj2
= 0 ;
9968 PyObject
* obj3
= 0 ;
9969 PyObject
* obj4
= 0 ;
9970 PyObject
* obj5
= 0 ;
9971 char * kwnames
[] = {
9972 (char *) "self",(char *) "dc",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
9975 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:DockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
9976 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9977 if (!SWIG_IsOK(res1
)) {
9978 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxDockArt *""'");
9980 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9981 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9982 if (!SWIG_IsOK(res2
)) {
9983 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
9986 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
9988 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9989 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9990 if (!SWIG_IsOK(ecode3
)) {
9991 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "3"" of type '" "int""'");
9993 arg3
= static_cast< int >(val3
);
9994 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9995 if (!SWIG_IsOK(ecode4
)) {
9996 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
9998 arg4
= static_cast< int >(val4
);
10001 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10003 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxPaneInfo
, 0 );
10004 if (!SWIG_IsOK(res6
)) {
10005 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10008 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10010 arg6
= reinterpret_cast< wxPaneInfo
* >(argp6
);
10012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10013 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
,*arg6
);
10014 wxPyEndAllowThreads(__tstate
);
10015 if (PyErr_Occurred()) SWIG_fail
;
10017 resultobj
= SWIG_Py_Void();
10024 SWIGINTERN PyObject
*DockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10026 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10027 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockArt
, SWIG_NewClientData(obj
));
10028 return SWIG_Py_Void();
10031 SWIGINTERN PyObject
*_wrap_new_DefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10032 PyObject
*resultobj
= 0;
10033 wxDefaultDockArt
*result
= 0 ;
10035 if (!SWIG_Python_UnpackTuple(args
,"new_DefaultDockArt",0,0,0)) SWIG_fail
;
10037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10038 result
= (wxDefaultDockArt
*)new wxDefaultDockArt();
10039 wxPyEndAllowThreads(__tstate
);
10040 if (PyErr_Occurred()) SWIG_fail
;
10042 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
10049 SWIGINTERN PyObject
*DefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10051 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10052 SWIG_TypeNewClientData(SWIGTYPE_p_wxDefaultDockArt
, SWIG_NewClientData(obj
));
10053 return SWIG_Py_Void();
10056 SWIGINTERN PyObject
*DefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10057 return SWIG_Python_InitShadowInstance(args
);
10060 SWIGINTERN PyObject
*_wrap_new_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10061 PyObject
*resultobj
= 0;
10062 wxWindow
*arg1
= (wxWindow
*) 0 ;
10063 wxFrameManager
*arg2
= (wxFrameManager
*) 0 ;
10064 wxPaneInfo
*arg3
= 0 ;
10065 int arg4
= (int) wxID_ANY
;
10066 wxFloatingPane
*result
= 0 ;
10075 PyObject
* obj0
= 0 ;
10076 PyObject
* obj1
= 0 ;
10077 PyObject
* obj2
= 0 ;
10078 PyObject
* obj3
= 0 ;
10079 char * kwnames
[] = {
10080 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id", NULL
10083 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FloatingPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10084 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10085 if (!SWIG_IsOK(res1
)) {
10086 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FloatingPane" "', expected argument " "1"" of type '" "wxWindow *""'");
10088 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10089 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
10090 if (!SWIG_IsOK(res2
)) {
10091 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FloatingPane" "', expected argument " "2"" of type '" "wxFrameManager *""'");
10093 arg2
= reinterpret_cast< wxFrameManager
* >(argp2
);
10094 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
10095 if (!SWIG_IsOK(res3
)) {
10096 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10099 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10101 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
10103 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10104 if (!SWIG_IsOK(ecode4
)) {
10105 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FloatingPane" "', expected argument " "4"" of type '" "int""'");
10107 arg4
= static_cast< int >(val4
);
10110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10111 result
= (wxFloatingPane
*)new wxFloatingPane(arg1
,arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
10112 wxPyEndAllowThreads(__tstate
);
10113 if (PyErr_Occurred()) SWIG_fail
;
10115 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_NEW
| 0 );
10122 SWIGINTERN PyObject
*_wrap_delete_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10123 PyObject
*resultobj
= 0;
10124 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
10127 PyObject
*swig_obj
[1] ;
10129 if (!args
) SWIG_fail
;
10130 swig_obj
[0] = args
;
10131 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_DISOWN
| 0 );
10132 if (!SWIG_IsOK(res1
)) {
10133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FloatingPane" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
10135 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
10137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10140 wxPyEndAllowThreads(__tstate
);
10141 if (PyErr_Occurred()) SWIG_fail
;
10143 resultobj
= SWIG_Py_Void();
10150 SWIGINTERN PyObject
*_wrap_FloatingPane_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10151 PyObject
*resultobj
= 0;
10152 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
10153 wxPaneInfo
*arg2
= 0 ;
10158 PyObject
* obj0
= 0 ;
10159 PyObject
* obj1
= 0 ;
10160 char * kwnames
[] = {
10161 (char *) "self",(char *) "pane", NULL
10164 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FloatingPane_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10165 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFloatingPane
, 0 | 0 );
10166 if (!SWIG_IsOK(res1
)) {
10167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
10169 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
10170 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
10171 if (!SWIG_IsOK(res2
)) {
10172 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
10175 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
10177 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
10179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10180 (arg1
)->SetPaneWindow((wxPaneInfo
const &)*arg2
);
10181 wxPyEndAllowThreads(__tstate
);
10182 if (PyErr_Occurred()) SWIG_fail
;
10184 resultobj
= SWIG_Py_Void();
10191 SWIGINTERN PyObject
*FloatingPane_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10193 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10194 SWIG_TypeNewClientData(SWIGTYPE_p_wxFloatingPane
, SWIG_NewClientData(obj
));
10195 return SWIG_Py_Void();
10198 SWIGINTERN PyObject
*FloatingPane_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10199 return SWIG_Python_InitShadowInstance(args
);
10202 SWIGINTERN PyObject
*PyDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10204 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10205 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDockArt
, SWIG_NewClientData(obj
));
10206 return SWIG_Py_Void();
10209 static PyMethodDef SwigMethods
[] = {
10210 { (char *)"new_PaneInfo", (PyCFunction
)_wrap_new_PaneInfo
, METH_NOARGS
, NULL
},
10211 { (char *)"delete_PaneInfo", (PyCFunction
)_wrap_delete_PaneInfo
, METH_O
, NULL
},
10212 { (char *)"PaneInfo_IsOk", (PyCFunction
)_wrap_PaneInfo_IsOk
, METH_O
, NULL
},
10213 { (char *)"PaneInfo_IsFixed", (PyCFunction
)_wrap_PaneInfo_IsFixed
, METH_O
, NULL
},
10214 { (char *)"PaneInfo_IsResizable", (PyCFunction
)_wrap_PaneInfo_IsResizable
, METH_O
, NULL
},
10215 { (char *)"PaneInfo_IsShown", (PyCFunction
)_wrap_PaneInfo_IsShown
, METH_O
, NULL
},
10216 { (char *)"PaneInfo_IsFloating", (PyCFunction
)_wrap_PaneInfo_IsFloating
, METH_O
, NULL
},
10217 { (char *)"PaneInfo_IsDocked", (PyCFunction
)_wrap_PaneInfo_IsDocked
, METH_O
, NULL
},
10218 { (char *)"PaneInfo_IsToolbar", (PyCFunction
)_wrap_PaneInfo_IsToolbar
, METH_O
, NULL
},
10219 { (char *)"PaneInfo_IsTopDockable", (PyCFunction
)_wrap_PaneInfo_IsTopDockable
, METH_O
, NULL
},
10220 { (char *)"PaneInfo_IsBottomDockable", (PyCFunction
)_wrap_PaneInfo_IsBottomDockable
, METH_O
, NULL
},
10221 { (char *)"PaneInfo_IsLeftDockable", (PyCFunction
)_wrap_PaneInfo_IsLeftDockable
, METH_O
, NULL
},
10222 { (char *)"PaneInfo_IsRightDockable", (PyCFunction
)_wrap_PaneInfo_IsRightDockable
, METH_O
, NULL
},
10223 { (char *)"PaneInfo_IsFloatable", (PyCFunction
)_wrap_PaneInfo_IsFloatable
, METH_O
, NULL
},
10224 { (char *)"PaneInfo_IsMovable", (PyCFunction
)_wrap_PaneInfo_IsMovable
, METH_O
, NULL
},
10225 { (char *)"PaneInfo_HasCaption", (PyCFunction
)_wrap_PaneInfo_HasCaption
, METH_O
, NULL
},
10226 { (char *)"PaneInfo_HasGripper", (PyCFunction
)_wrap_PaneInfo_HasGripper
, METH_O
, NULL
},
10227 { (char *)"PaneInfo_HasBorder", (PyCFunction
)_wrap_PaneInfo_HasBorder
, METH_O
, NULL
},
10228 { (char *)"PaneInfo_HasCloseButton", (PyCFunction
)_wrap_PaneInfo_HasCloseButton
, METH_O
, NULL
},
10229 { (char *)"PaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_PaneInfo_HasMaximizeButton
, METH_O
, NULL
},
10230 { (char *)"PaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_PaneInfo_HasMinimizeButton
, METH_O
, NULL
},
10231 { (char *)"PaneInfo_HasPinButton", (PyCFunction
)_wrap_PaneInfo_HasPinButton
, METH_O
, NULL
},
10232 { (char *)"PaneInfo_HasGripperTop", (PyCFunction
)_wrap_PaneInfo_HasGripperTop
, METH_O
, NULL
},
10233 { (char *)"PaneInfo_Window", (PyCFunction
) _wrap_PaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10234 { (char *)"PaneInfo_Name", (PyCFunction
) _wrap_PaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10235 { (char *)"PaneInfo_Caption", (PyCFunction
) _wrap_PaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10236 { (char *)"PaneInfo_Left", (PyCFunction
)_wrap_PaneInfo_Left
, METH_O
, NULL
},
10237 { (char *)"PaneInfo_Right", (PyCFunction
)_wrap_PaneInfo_Right
, METH_O
, NULL
},
10238 { (char *)"PaneInfo_Top", (PyCFunction
)_wrap_PaneInfo_Top
, METH_O
, NULL
},
10239 { (char *)"PaneInfo_Bottom", (PyCFunction
)_wrap_PaneInfo_Bottom
, METH_O
, NULL
},
10240 { (char *)"PaneInfo_Center", (PyCFunction
)_wrap_PaneInfo_Center
, METH_O
, NULL
},
10241 { (char *)"PaneInfo_Centre", (PyCFunction
)_wrap_PaneInfo_Centre
, METH_O
, NULL
},
10242 { (char *)"PaneInfo_Direction", (PyCFunction
) _wrap_PaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10243 { (char *)"PaneInfo_Layer", (PyCFunction
) _wrap_PaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10244 { (char *)"PaneInfo_Row", (PyCFunction
) _wrap_PaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10245 { (char *)"PaneInfo_Position", (PyCFunction
) _wrap_PaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10246 { (char *)"PaneInfo_BestSize", (PyCFunction
) _wrap_PaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10247 { (char *)"PaneInfo_MinSize", (PyCFunction
) _wrap_PaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10248 { (char *)"PaneInfo_MaxSize", (PyCFunction
) _wrap_PaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10249 { (char *)"PaneInfo_FloatingPosition", (PyCFunction
) _wrap_PaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10250 { (char *)"PaneInfo_FloatingSize", (PyCFunction
) _wrap_PaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10251 { (char *)"PaneInfo_Fixed", (PyCFunction
)_wrap_PaneInfo_Fixed
, METH_O
, NULL
},
10252 { (char *)"PaneInfo_Resizable", (PyCFunction
) _wrap_PaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10253 { (char *)"PaneInfo_Dock", (PyCFunction
)_wrap_PaneInfo_Dock
, METH_O
, NULL
},
10254 { (char *)"PaneInfo_Float", (PyCFunction
)_wrap_PaneInfo_Float
, METH_O
, NULL
},
10255 { (char *)"PaneInfo_Hide", (PyCFunction
)_wrap_PaneInfo_Hide
, METH_O
, NULL
},
10256 { (char *)"PaneInfo_Show", (PyCFunction
) _wrap_PaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10257 { (char *)"PaneInfo_CaptionVisible", (PyCFunction
) _wrap_PaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10258 { (char *)"PaneInfo_PaneBorder", (PyCFunction
) _wrap_PaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10259 { (char *)"PaneInfo_Gripper", (PyCFunction
) _wrap_PaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10260 { (char *)"PaneInfo_GripperTop", (PyCFunction
) _wrap_PaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10261 { (char *)"PaneInfo_CloseButton", (PyCFunction
) _wrap_PaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10262 { (char *)"PaneInfo_MaximizeButton", (PyCFunction
) _wrap_PaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10263 { (char *)"PaneInfo_MinimizeButton", (PyCFunction
) _wrap_PaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10264 { (char *)"PaneInfo_PinButton", (PyCFunction
) _wrap_PaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10265 { (char *)"PaneInfo_DestroyOnClose", (PyCFunction
) _wrap_PaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10266 { (char *)"PaneInfo_TopDockable", (PyCFunction
) _wrap_PaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10267 { (char *)"PaneInfo_BottomDockable", (PyCFunction
) _wrap_PaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10268 { (char *)"PaneInfo_LeftDockable", (PyCFunction
) _wrap_PaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10269 { (char *)"PaneInfo_RightDockable", (PyCFunction
) _wrap_PaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10270 { (char *)"PaneInfo_Floatable", (PyCFunction
) _wrap_PaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10271 { (char *)"PaneInfo_Movable", (PyCFunction
) _wrap_PaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10272 { (char *)"PaneInfo_Dockable", (PyCFunction
) _wrap_PaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10273 { (char *)"PaneInfo_DefaultPane", (PyCFunction
)_wrap_PaneInfo_DefaultPane
, METH_O
, NULL
},
10274 { (char *)"PaneInfo_CentrePane", (PyCFunction
)_wrap_PaneInfo_CentrePane
, METH_O
, NULL
},
10275 { (char *)"PaneInfo_CenterPane", (PyCFunction
)_wrap_PaneInfo_CenterPane
, METH_O
, NULL
},
10276 { (char *)"PaneInfo_ToolbarPane", (PyCFunction
)_wrap_PaneInfo_ToolbarPane
, METH_O
, NULL
},
10277 { (char *)"PaneInfo_SetFlag", (PyCFunction
) _wrap_PaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10278 { (char *)"PaneInfo_HasFlag", (PyCFunction
) _wrap_PaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10279 { (char *)"PaneInfo_name_set", _wrap_PaneInfo_name_set
, METH_VARARGS
, NULL
},
10280 { (char *)"PaneInfo_name_get", (PyCFunction
)_wrap_PaneInfo_name_get
, METH_O
, NULL
},
10281 { (char *)"PaneInfo_caption_set", _wrap_PaneInfo_caption_set
, METH_VARARGS
, NULL
},
10282 { (char *)"PaneInfo_caption_get", (PyCFunction
)_wrap_PaneInfo_caption_get
, METH_O
, NULL
},
10283 { (char *)"PaneInfo_window_set", _wrap_PaneInfo_window_set
, METH_VARARGS
, NULL
},
10284 { (char *)"PaneInfo_window_get", (PyCFunction
)_wrap_PaneInfo_window_get
, METH_O
, NULL
},
10285 { (char *)"PaneInfo_frame_set", _wrap_PaneInfo_frame_set
, METH_VARARGS
, NULL
},
10286 { (char *)"PaneInfo_frame_get", (PyCFunction
)_wrap_PaneInfo_frame_get
, METH_O
, NULL
},
10287 { (char *)"PaneInfo_state_set", _wrap_PaneInfo_state_set
, METH_VARARGS
, NULL
},
10288 { (char *)"PaneInfo_state_get", (PyCFunction
)_wrap_PaneInfo_state_get
, METH_O
, NULL
},
10289 { (char *)"PaneInfo_dock_direction_set", _wrap_PaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
10290 { (char *)"PaneInfo_dock_direction_get", (PyCFunction
)_wrap_PaneInfo_dock_direction_get
, METH_O
, NULL
},
10291 { (char *)"PaneInfo_dock_layer_set", _wrap_PaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
10292 { (char *)"PaneInfo_dock_layer_get", (PyCFunction
)_wrap_PaneInfo_dock_layer_get
, METH_O
, NULL
},
10293 { (char *)"PaneInfo_dock_row_set", _wrap_PaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
10294 { (char *)"PaneInfo_dock_row_get", (PyCFunction
)_wrap_PaneInfo_dock_row_get
, METH_O
, NULL
},
10295 { (char *)"PaneInfo_dock_pos_set", _wrap_PaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
10296 { (char *)"PaneInfo_dock_pos_get", (PyCFunction
)_wrap_PaneInfo_dock_pos_get
, METH_O
, NULL
},
10297 { (char *)"PaneInfo_best_size_set", _wrap_PaneInfo_best_size_set
, METH_VARARGS
, NULL
},
10298 { (char *)"PaneInfo_best_size_get", (PyCFunction
)_wrap_PaneInfo_best_size_get
, METH_O
, NULL
},
10299 { (char *)"PaneInfo_min_size_set", _wrap_PaneInfo_min_size_set
, METH_VARARGS
, NULL
},
10300 { (char *)"PaneInfo_min_size_get", (PyCFunction
)_wrap_PaneInfo_min_size_get
, METH_O
, NULL
},
10301 { (char *)"PaneInfo_max_size_set", _wrap_PaneInfo_max_size_set
, METH_VARARGS
, NULL
},
10302 { (char *)"PaneInfo_max_size_get", (PyCFunction
)_wrap_PaneInfo_max_size_get
, METH_O
, NULL
},
10303 { (char *)"PaneInfo_floating_pos_set", _wrap_PaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
10304 { (char *)"PaneInfo_floating_pos_get", (PyCFunction
)_wrap_PaneInfo_floating_pos_get
, METH_O
, NULL
},
10305 { (char *)"PaneInfo_floating_size_set", _wrap_PaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
10306 { (char *)"PaneInfo_floating_size_get", (PyCFunction
)_wrap_PaneInfo_floating_size_get
, METH_O
, NULL
},
10307 { (char *)"PaneInfo_dock_proportion_set", _wrap_PaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
10308 { (char *)"PaneInfo_dock_proportion_get", (PyCFunction
)_wrap_PaneInfo_dock_proportion_get
, METH_O
, NULL
},
10309 { (char *)"PaneInfo_buttons_set", _wrap_PaneInfo_buttons_set
, METH_VARARGS
, NULL
},
10310 { (char *)"PaneInfo_buttons_get", (PyCFunction
)_wrap_PaneInfo_buttons_get
, METH_O
, NULL
},
10311 { (char *)"PaneInfo_rect_set", _wrap_PaneInfo_rect_set
, METH_VARARGS
, NULL
},
10312 { (char *)"PaneInfo_rect_get", (PyCFunction
)_wrap_PaneInfo_rect_get
, METH_O
, NULL
},
10313 { (char *)"PaneInfo_swigregister", PaneInfo_swigregister
, METH_VARARGS
, NULL
},
10314 { (char *)"PaneInfo_swiginit", PaneInfo_swiginit
, METH_VARARGS
, NULL
},
10315 { (char *)"new_FrameManager", (PyCFunction
) _wrap_new_FrameManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10316 { (char *)"delete_FrameManager", (PyCFunction
)_wrap_delete_FrameManager
, METH_O
, NULL
},
10317 { (char *)"FrameManager_UnInit", (PyCFunction
)_wrap_FrameManager_UnInit
, METH_O
, NULL
},
10318 { (char *)"FrameManager_SetFlags", (PyCFunction
) _wrap_FrameManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10319 { (char *)"FrameManager_GetFlags", (PyCFunction
)_wrap_FrameManager_GetFlags
, METH_O
, NULL
},
10320 { (char *)"FrameManager_SetFrame", (PyCFunction
) _wrap_FrameManager_SetFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10321 { (char *)"FrameManager_GetFrame", (PyCFunction
)_wrap_FrameManager_GetFrame
, METH_O
, NULL
},
10322 { (char *)"FrameManager_SetArtProvider", (PyCFunction
) _wrap_FrameManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10323 { (char *)"FrameManager_GetArtProvider", (PyCFunction
)_wrap_FrameManager_GetArtProvider
, METH_O
, NULL
},
10324 { (char *)"FrameManager__GetPaneByWidget", (PyCFunction
) _wrap_FrameManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10325 { (char *)"FrameManager__GetPaneByName", (PyCFunction
) _wrap_FrameManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10326 { (char *)"FrameManager_GetAllPanes", (PyCFunction
)_wrap_FrameManager_GetAllPanes
, METH_O
, NULL
},
10327 { (char *)"FrameManager__AddPane1", (PyCFunction
) _wrap_FrameManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10328 { (char *)"FrameManager__AddPane2", (PyCFunction
) _wrap_FrameManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10329 { (char *)"FrameManager_InsertPane", (PyCFunction
) _wrap_FrameManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10330 { (char *)"FrameManager_DetachPane", (PyCFunction
) _wrap_FrameManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10331 { (char *)"FrameManager_SavePerspective", (PyCFunction
)_wrap_FrameManager_SavePerspective
, METH_O
, NULL
},
10332 { (char *)"FrameManager_LoadPerspective", (PyCFunction
) _wrap_FrameManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10333 { (char *)"FrameManager_Update", (PyCFunction
)_wrap_FrameManager_Update
, METH_O
, NULL
},
10334 { (char *)"FrameManager_OnRender", (PyCFunction
) _wrap_FrameManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10335 { (char *)"FrameManager_OnPaneButton", (PyCFunction
) _wrap_FrameManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10336 { (char *)"FrameManager_swigregister", FrameManager_swigregister
, METH_VARARGS
, NULL
},
10337 { (char *)"FrameManager_swiginit", FrameManager_swiginit
, METH_VARARGS
, NULL
},
10338 { (char *)"new_FrameManagerEvent", (PyCFunction
) _wrap_new_FrameManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10339 { (char *)"FrameManagerEvent_Clone", (PyCFunction
)_wrap_FrameManagerEvent_Clone
, METH_O
, NULL
},
10340 { (char *)"FrameManagerEvent_SetPane", (PyCFunction
) _wrap_FrameManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10341 { (char *)"FrameManagerEvent_SetButton", (PyCFunction
) _wrap_FrameManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10342 { (char *)"FrameManagerEvent_SetDC", (PyCFunction
) _wrap_FrameManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10343 { (char *)"FrameManagerEvent_GetPane", (PyCFunction
)_wrap_FrameManagerEvent_GetPane
, METH_O
, NULL
},
10344 { (char *)"FrameManagerEvent_GetButton", (PyCFunction
)_wrap_FrameManagerEvent_GetButton
, METH_O
, NULL
},
10345 { (char *)"FrameManagerEvent_GetDC", (PyCFunction
)_wrap_FrameManagerEvent_GetDC
, METH_O
, NULL
},
10346 { (char *)"FrameManagerEvent_Veto", (PyCFunction
) _wrap_FrameManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10347 { (char *)"FrameManagerEvent_GetVeto", (PyCFunction
)_wrap_FrameManagerEvent_GetVeto
, METH_O
, NULL
},
10348 { (char *)"FrameManagerEvent_SetCanVeto", (PyCFunction
) _wrap_FrameManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10349 { (char *)"FrameManagerEvent_CanVeto", (PyCFunction
)_wrap_FrameManagerEvent_CanVeto
, METH_O
, NULL
},
10350 { (char *)"FrameManagerEvent_pane_set", _wrap_FrameManagerEvent_pane_set
, METH_VARARGS
, NULL
},
10351 { (char *)"FrameManagerEvent_pane_get", (PyCFunction
)_wrap_FrameManagerEvent_pane_get
, METH_O
, NULL
},
10352 { (char *)"FrameManagerEvent_button_set", _wrap_FrameManagerEvent_button_set
, METH_VARARGS
, NULL
},
10353 { (char *)"FrameManagerEvent_button_get", (PyCFunction
)_wrap_FrameManagerEvent_button_get
, METH_O
, NULL
},
10354 { (char *)"FrameManagerEvent_veto_flag_set", _wrap_FrameManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
10355 { (char *)"FrameManagerEvent_veto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_veto_flag_get
, METH_O
, NULL
},
10356 { (char *)"FrameManagerEvent_canveto_flag_set", _wrap_FrameManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
10357 { (char *)"FrameManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_canveto_flag_get
, METH_O
, NULL
},
10358 { (char *)"FrameManagerEvent_dc_set", _wrap_FrameManagerEvent_dc_set
, METH_VARARGS
, NULL
},
10359 { (char *)"FrameManagerEvent_dc_get", (PyCFunction
)_wrap_FrameManagerEvent_dc_get
, METH_O
, NULL
},
10360 { (char *)"FrameManagerEvent_swigregister", FrameManagerEvent_swigregister
, METH_VARARGS
, NULL
},
10361 { (char *)"FrameManagerEvent_swiginit", FrameManagerEvent_swiginit
, METH_VARARGS
, NULL
},
10362 { (char *)"new_DockInfo", (PyCFunction
)_wrap_new_DockInfo
, METH_NOARGS
, NULL
},
10363 { (char *)"DockInfo_IsOk", (PyCFunction
)_wrap_DockInfo_IsOk
, METH_O
, NULL
},
10364 { (char *)"DockInfo_IsHorizontal", (PyCFunction
)_wrap_DockInfo_IsHorizontal
, METH_O
, NULL
},
10365 { (char *)"DockInfo_IsVertical", (PyCFunction
)_wrap_DockInfo_IsVertical
, METH_O
, NULL
},
10366 { (char *)"DockInfo_panes_set", _wrap_DockInfo_panes_set
, METH_VARARGS
, NULL
},
10367 { (char *)"DockInfo_panes_get", (PyCFunction
)_wrap_DockInfo_panes_get
, METH_O
, NULL
},
10368 { (char *)"DockInfo_rect_set", _wrap_DockInfo_rect_set
, METH_VARARGS
, NULL
},
10369 { (char *)"DockInfo_rect_get", (PyCFunction
)_wrap_DockInfo_rect_get
, METH_O
, NULL
},
10370 { (char *)"DockInfo_dock_direction_set", _wrap_DockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
10371 { (char *)"DockInfo_dock_direction_get", (PyCFunction
)_wrap_DockInfo_dock_direction_get
, METH_O
, NULL
},
10372 { (char *)"DockInfo_dock_layer_set", _wrap_DockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
10373 { (char *)"DockInfo_dock_layer_get", (PyCFunction
)_wrap_DockInfo_dock_layer_get
, METH_O
, NULL
},
10374 { (char *)"DockInfo_dock_row_set", _wrap_DockInfo_dock_row_set
, METH_VARARGS
, NULL
},
10375 { (char *)"DockInfo_dock_row_get", (PyCFunction
)_wrap_DockInfo_dock_row_get
, METH_O
, NULL
},
10376 { (char *)"DockInfo_size_set", _wrap_DockInfo_size_set
, METH_VARARGS
, NULL
},
10377 { (char *)"DockInfo_size_get", (PyCFunction
)_wrap_DockInfo_size_get
, METH_O
, NULL
},
10378 { (char *)"DockInfo_min_size_set", _wrap_DockInfo_min_size_set
, METH_VARARGS
, NULL
},
10379 { (char *)"DockInfo_min_size_get", (PyCFunction
)_wrap_DockInfo_min_size_get
, METH_O
, NULL
},
10380 { (char *)"DockInfo_resizable_set", _wrap_DockInfo_resizable_set
, METH_VARARGS
, NULL
},
10381 { (char *)"DockInfo_resizable_get", (PyCFunction
)_wrap_DockInfo_resizable_get
, METH_O
, NULL
},
10382 { (char *)"DockInfo_toolbar_set", _wrap_DockInfo_toolbar_set
, METH_VARARGS
, NULL
},
10383 { (char *)"DockInfo_toolbar_get", (PyCFunction
)_wrap_DockInfo_toolbar_get
, METH_O
, NULL
},
10384 { (char *)"DockInfo_fixed_set", _wrap_DockInfo_fixed_set
, METH_VARARGS
, NULL
},
10385 { (char *)"DockInfo_fixed_get", (PyCFunction
)_wrap_DockInfo_fixed_get
, METH_O
, NULL
},
10386 { (char *)"DockInfo_swigregister", DockInfo_swigregister
, METH_VARARGS
, NULL
},
10387 { (char *)"DockInfo_swiginit", DockInfo_swiginit
, METH_VARARGS
, NULL
},
10388 { (char *)"DockUIPart_type_set", _wrap_DockUIPart_type_set
, METH_VARARGS
, NULL
},
10389 { (char *)"DockUIPart_type_get", (PyCFunction
)_wrap_DockUIPart_type_get
, METH_O
, NULL
},
10390 { (char *)"DockUIPart_orientation_set", _wrap_DockUIPart_orientation_set
, METH_VARARGS
, NULL
},
10391 { (char *)"DockUIPart_orientation_get", (PyCFunction
)_wrap_DockUIPart_orientation_get
, METH_O
, NULL
},
10392 { (char *)"DockUIPart_dock_set", _wrap_DockUIPart_dock_set
, METH_VARARGS
, NULL
},
10393 { (char *)"DockUIPart_dock_get", (PyCFunction
)_wrap_DockUIPart_dock_get
, METH_O
, NULL
},
10394 { (char *)"DockUIPart_pane_set", _wrap_DockUIPart_pane_set
, METH_VARARGS
, NULL
},
10395 { (char *)"DockUIPart_pane_get", (PyCFunction
)_wrap_DockUIPart_pane_get
, METH_O
, NULL
},
10396 { (char *)"DockUIPart_button_set", _wrap_DockUIPart_button_set
, METH_VARARGS
, NULL
},
10397 { (char *)"DockUIPart_button_get", (PyCFunction
)_wrap_DockUIPart_button_get
, METH_O
, NULL
},
10398 { (char *)"DockUIPart_cont_sizer_set", _wrap_DockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
10399 { (char *)"DockUIPart_cont_sizer_get", (PyCFunction
)_wrap_DockUIPart_cont_sizer_get
, METH_O
, NULL
},
10400 { (char *)"DockUIPart_sizer_item_set", _wrap_DockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
10401 { (char *)"DockUIPart_sizer_item_get", (PyCFunction
)_wrap_DockUIPart_sizer_item_get
, METH_O
, NULL
},
10402 { (char *)"DockUIPart_rect_set", _wrap_DockUIPart_rect_set
, METH_VARARGS
, NULL
},
10403 { (char *)"DockUIPart_rect_get", (PyCFunction
)_wrap_DockUIPart_rect_get
, METH_O
, NULL
},
10404 { (char *)"DockUIPart_swigregister", DockUIPart_swigregister
, METH_VARARGS
, NULL
},
10405 { (char *)"PaneButton_button_id_set", _wrap_PaneButton_button_id_set
, METH_VARARGS
, NULL
},
10406 { (char *)"PaneButton_button_id_get", (PyCFunction
)_wrap_PaneButton_button_id_get
, METH_O
, NULL
},
10407 { (char *)"PaneButton_swigregister", PaneButton_swigregister
, METH_VARARGS
, NULL
},
10408 { (char *)"delete_DockArt", (PyCFunction
)_wrap_delete_DockArt
, METH_O
, NULL
},
10409 { (char *)"DockArt_GetMetric", (PyCFunction
) _wrap_DockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10410 { (char *)"DockArt_SetMetric", (PyCFunction
) _wrap_DockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10411 { (char *)"DockArt_SetFont", (PyCFunction
) _wrap_DockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10412 { (char *)"DockArt_GetFont", (PyCFunction
) _wrap_DockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10413 { (char *)"DockArt_GetColour", (PyCFunction
) _wrap_DockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10414 { (char *)"DockArt_SetColour", (PyCFunction
) _wrap_DockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10415 { (char *)"DockArt_GetColor", (PyCFunction
) _wrap_DockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10416 { (char *)"DockArt_SetColor", (PyCFunction
) _wrap_DockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10417 { (char *)"DockArt_DrawSash", (PyCFunction
) _wrap_DockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10418 { (char *)"DockArt_DrawBackground", (PyCFunction
) _wrap_DockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10419 { (char *)"DockArt_DrawCaption", (PyCFunction
) _wrap_DockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10420 { (char *)"DockArt_DrawGripper", (PyCFunction
) _wrap_DockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10421 { (char *)"DockArt_DrawBorder", (PyCFunction
) _wrap_DockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10422 { (char *)"DockArt_DrawPaneButton", (PyCFunction
) _wrap_DockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10423 { (char *)"DockArt_swigregister", DockArt_swigregister
, METH_VARARGS
, NULL
},
10424 { (char *)"new_DefaultDockArt", (PyCFunction
)_wrap_new_DefaultDockArt
, METH_NOARGS
, NULL
},
10425 { (char *)"DefaultDockArt_swigregister", DefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
10426 { (char *)"DefaultDockArt_swiginit", DefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
10427 { (char *)"new_FloatingPane", (PyCFunction
) _wrap_new_FloatingPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10428 { (char *)"delete_FloatingPane", (PyCFunction
)_wrap_delete_FloatingPane
, METH_O
, NULL
},
10429 { (char *)"FloatingPane_SetPaneWindow", (PyCFunction
) _wrap_FloatingPane_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10430 { (char *)"FloatingPane_swigregister", FloatingPane_swigregister
, METH_VARARGS
, NULL
},
10431 { (char *)"FloatingPane_swiginit", FloatingPane_swiginit
, METH_VARARGS
, NULL
},
10432 { (char *)"PyDockArt_swigregister", PyDockArt_swigregister
, METH_VARARGS
, NULL
},
10433 { NULL
, NULL
, 0, NULL
}
10437 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
10439 static void *_p_wxFloatingPaneTo_p_wxMiniFrame(void *x
) {
10440 return (void *)((wxMiniFrame
*) ((wxFloatingPane
*) x
));
10442 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
10443 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
10445 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
10446 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
10448 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
10449 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
10451 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
10452 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
10454 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
10455 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
10457 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
10458 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
10460 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
10461 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
10463 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
10464 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
10466 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
10467 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
10469 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
10470 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
10472 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
10473 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
10475 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
10476 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
10478 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
10479 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
10481 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
10482 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
10484 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
10485 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
10487 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
10488 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
10490 static void *_p_wxFloatingPaneTo_p_wxTopLevelWindow(void *x
) {
10491 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
10493 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
10494 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
10496 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10497 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
10499 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10500 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10502 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10503 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
10505 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
10506 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10508 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
10509 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10511 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
10512 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
10514 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
10515 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
10517 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
10518 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
10520 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
10521 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
10523 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
10524 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10526 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
10527 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
10529 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
10530 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
10532 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
10533 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
10535 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
10536 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
10538 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
10539 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
10541 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
10542 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
10544 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
10545 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
10547 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
10548 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
10550 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
10551 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10553 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
10554 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
10556 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
10557 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10559 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
10560 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10562 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
10563 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
10565 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
10566 return (void *)((wxWindow
*) ((wxPanel
*) x
));
10568 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
10569 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
10571 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
10572 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
10574 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
10575 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
10577 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
10578 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
10580 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
10581 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
10583 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
10584 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
10586 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
10587 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
10589 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
10590 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
10592 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
10593 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
10595 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
10596 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
10598 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
10599 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
10601 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
10602 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
10604 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
10605 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
10607 static void *_p_wxControlTo_p_wxWindow(void *x
) {
10608 return (void *)((wxWindow
*) ((wxControl
*) x
));
10610 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
10611 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
10613 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
10614 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10616 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
10617 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
10619 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
10620 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
10622 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
10623 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
10625 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
10626 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
10628 static void *_p_wxFloatingPaneTo_p_wxWindow(void *x
) {
10629 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
10631 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
10632 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
10634 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
10635 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
10637 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
10638 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
10640 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
10641 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
10643 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
10644 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
10646 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
10647 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
10649 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
10650 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
10652 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
10653 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
10655 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
10656 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
10658 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
10659 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
10661 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
10662 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
10664 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
10665 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
10667 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
10668 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
10670 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
10671 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
10673 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
10674 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
10676 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
10677 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
10679 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
10680 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
10682 static void *_p_wxFrameManagerEventTo_p_wxEvent(void *x
) {
10683 return (void *)((wxEvent
*) ((wxFrameManagerEvent
*) x
));
10685 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
10686 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
10688 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
10689 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
10691 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
10692 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
10694 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
10695 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
10697 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
10698 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
10700 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
10701 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
10703 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
10704 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
10706 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
10707 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
10709 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
10710 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
10712 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
10713 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
10715 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
10716 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
10718 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
10719 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
10721 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
10722 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
10724 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
10725 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
10727 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
10728 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
10730 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
10731 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
10733 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
10734 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
10736 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
10737 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
10739 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
10740 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
10742 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
10743 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
10745 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
10746 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
10748 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
10749 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
10751 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
10752 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
10754 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
10755 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
10757 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
10758 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
10760 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
10761 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
10763 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
10764 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
10766 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
10767 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
10769 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
10770 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
10772 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
10773 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
10775 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
10776 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
10778 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
10779 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
10781 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
10782 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
10784 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
10785 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
10787 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
10788 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
10790 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
10791 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
10793 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
10794 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
10796 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
10797 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
10799 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
10800 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
10802 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
10803 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10805 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
10806 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
10808 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
10809 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
10811 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
10812 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
10814 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
10815 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
10817 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
10818 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
10820 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
10821 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
10823 static void *_p_wxSizerTo_p_wxObject(void *x
) {
10824 return (void *)((wxObject
*) ((wxSizer
*) x
));
10826 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
10827 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
10829 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
10830 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
10832 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
10833 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
10835 static void *_p_wxEventTo_p_wxObject(void *x
) {
10836 return (void *)((wxObject
*) ((wxEvent
*) x
));
10838 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
10839 return (void *)((wxObject
*) ((wxFontData
*) x
));
10841 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
10842 return (void *)((wxObject
*) ((wxPrintData
*) x
));
10844 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
10845 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
10847 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
10848 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
10850 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
10851 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
10853 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
10854 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
10856 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
10857 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
10859 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
10860 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
10862 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
10863 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
10865 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
10866 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
10868 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
10869 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
10871 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
10872 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
10874 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
10875 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
10877 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
10878 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
10880 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
10881 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
10883 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
10884 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
10886 static void *_p_wxControlTo_p_wxObject(void *x
) {
10887 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
10889 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
10890 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
10892 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
10893 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
10895 static void *_p_wxFrameManagerEventTo_p_wxObject(void *x
) {
10896 return (void *)((wxObject
*) (wxEvent
*) ((wxFrameManagerEvent
*) x
));
10898 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
10899 return (void *)((wxObject
*) ((wxFSFile
*) x
));
10901 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
10902 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
10904 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
10905 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
10907 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
10908 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
10910 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
10911 return (void *)((wxObject
*) ((wxColourData
*) x
));
10913 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
10914 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
10916 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
10917 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
10919 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
10920 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
10922 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
10923 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
10925 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
10926 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
10928 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
10929 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10931 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
10932 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10934 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
10935 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
10937 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
10938 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10940 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
10941 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
10943 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
10944 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
10946 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
10947 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
10949 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
10950 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
10952 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
10953 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
10955 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
10956 return (void *)((wxObject
*) ((wxPrinter
*) x
));
10958 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
10959 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
10961 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
10962 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
10964 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
10965 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
10967 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
10968 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
10970 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
10971 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
10973 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
10974 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
10976 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
10977 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
10979 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
10980 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
10982 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
10983 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
10985 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
10986 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
10988 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
10989 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
10991 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
10992 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
10994 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
10995 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
10997 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
10998 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
11000 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
11001 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
11003 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
11004 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
11006 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
11007 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
11009 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
11010 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
11012 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
11013 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
11015 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
11016 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
11018 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
11019 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
11021 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
11022 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
11024 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
11025 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
11027 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
11028 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
11030 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
11031 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
11033 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
11034 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
11036 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
11037 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
11039 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
11040 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
11042 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
11043 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
11045 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
11046 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
11048 static void *_p_wxImageTo_p_wxObject(void *x
) {
11049 return (void *)((wxObject
*) ((wxImage
*) x
));
11051 static void *_p_wxFrameTo_p_wxObject(void *x
) {
11052 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
11054 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
11055 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
11057 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
11058 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
11060 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
11061 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
11063 static void *_p_wxFloatingPaneTo_p_wxObject(void *x
) {
11064 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
11066 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
11067 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
11069 static void *_p_wxFrameManagerTo_p_wxObject(void *x
) {
11070 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxFrameManager
*) x
));
11072 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
11073 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
11075 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
11076 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
11078 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
11079 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
11081 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
11082 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
11084 static void *_p_wxWindowTo_p_wxObject(void *x
) {
11085 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
11087 static void *_p_wxMenuTo_p_wxObject(void *x
) {
11088 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
11090 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
11091 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
11093 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
11094 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
11096 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
11097 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
11099 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
11100 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
11102 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
11103 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
11105 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
11106 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
11108 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
11109 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
11111 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
11112 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
11114 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
11115 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
11117 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
11118 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
11120 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
11121 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
11123 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
11124 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
11126 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
11127 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
11129 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
11130 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
11132 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
11133 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
11135 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
11136 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
11138 static void *_p_wxPanelTo_p_wxObject(void *x
) {
11139 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
11141 static void *_p_wxDialogTo_p_wxObject(void *x
) {
11142 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
11144 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
11145 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
11147 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
11148 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
11150 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
11151 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
11153 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
11154 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
11156 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
11157 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
11159 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
11160 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
11162 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
11163 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
11165 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
11166 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
11168 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
11169 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
11171 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
11172 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
11174 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
11175 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
11177 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
11178 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
11180 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
11181 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
11183 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
11184 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
11186 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
11187 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
11189 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
11190 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
11192 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
11193 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
11195 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
11196 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
11198 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
11199 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
11201 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
11202 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
11204 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
11205 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
11207 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
11208 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
11210 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
11211 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
11213 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
11214 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
11216 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
11217 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
11219 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
11220 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
11222 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
11223 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
11225 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
11226 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
11228 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
11229 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
11231 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
11232 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
11234 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
11235 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
11237 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
11238 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
11240 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
11241 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
11243 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
11244 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
11246 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
11247 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
11249 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
11250 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
11252 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
11253 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
11255 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
11256 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
11258 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
11259 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
11261 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
11262 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
11264 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
11265 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
11267 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
11268 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
11270 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
11271 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
11273 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
11274 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
11276 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
11277 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
11279 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
11280 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
11282 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
11283 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
11285 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
11286 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
11288 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
11289 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
11291 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
11292 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
11294 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
11295 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
11297 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
11298 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
11300 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
11301 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
11303 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
11304 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
11306 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
11307 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
11309 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
11310 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
11312 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
11313 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
11315 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
11316 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
11318 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
11319 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
11321 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
11322 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
11324 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
11325 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
11327 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
11328 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
11330 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
11331 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
11333 static void *_p_wxFloatingPaneTo_p_wxEvtHandler(void *x
) {
11334 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
11336 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
11337 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
11339 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
11340 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
11342 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
11343 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
11345 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
11346 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
11348 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
11349 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
11351 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
11352 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
11354 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
11355 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
11357 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
11358 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
11360 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
11361 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
11363 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
11364 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
11366 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
11367 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
11369 static void *_p_wxFrameManagerTo_p_wxEvtHandler(void *x
) {
11370 return (void *)((wxEvtHandler
*) ((wxFrameManager
*) x
));
11372 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
11373 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
11375 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
11376 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
11378 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
11379 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
11381 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
11382 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
11384 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
11385 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
11387 static void *_p_wxFloatingPaneTo_p_wxFrame(void *x
) {
11388 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxFloatingPane
*) x
));
11390 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
11391 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
11393 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
11394 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
11396 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
11397 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
11399 static void *_p_wxDefaultDockArtTo_p_wxDockArt(void *x
) {
11400 return (void *)((wxDockArt
*) ((wxDefaultDockArt
*) x
));
11402 static void *_p_wxPyDockArtTo_p_wxDockArt(void *x
) {
11403 return (void *)((wxDockArt
*) (wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
11405 static void *_p_wxPyDockArtTo_p_wxDefaultDockArt(void *x
) {
11406 return (void *)((wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
11408 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
11409 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};
11410 static swig_type_info _swigt__p_int
= {"_p_int", "int *|wxEventType *", 0, 0, (void*)0, 0};
11411 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
11412 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
11413 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
11414 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
11415 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
11416 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
11417 static swig_type_info _swigt__p_wxDefaultDockArt
= {"_p_wxDefaultDockArt", "wxDefaultDockArt *", 0, 0, (void*)0, 0};
11418 static swig_type_info _swigt__p_wxDockArt
= {"_p_wxDockArt", "wxDockArt *", 0, 0, (void*)0, 0};
11419 static swig_type_info _swigt__p_wxDockInfo
= {"_p_wxDockInfo", "wxDockInfo *", 0, 0, (void*)0, 0};
11420 static swig_type_info _swigt__p_wxDockUIPart
= {"_p_wxDockUIPart", "wxDockUIPart *", 0, 0, (void*)0, 0};
11421 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
11422 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
11423 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
11424 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
11425 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
11426 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
11427 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
11428 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
11429 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
11430 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
11431 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
11432 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
11433 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
11434 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
11435 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
11436 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
11437 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
11438 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
11439 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
11440 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
11441 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
11442 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
11443 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
11444 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
11445 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
11446 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
11447 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
11448 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
11449 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
11450 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
11451 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
11452 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
11453 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
11454 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
11455 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
11456 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
11457 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
11458 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
11459 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", 0, 0, 0, 0, 0};
11460 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
11461 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
11462 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
11463 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
11464 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
11465 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
11466 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
11467 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
11468 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
11469 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
11470 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
11471 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
11472 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
11473 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
11474 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
11475 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
11476 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
11477 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
11478 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
11479 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
11480 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
11481 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
11482 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
11483 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
11484 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
11485 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
11486 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
11487 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
11488 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
11489 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
11490 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
11491 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
11492 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
11493 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
11494 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
11495 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
11496 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
11497 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
11498 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
11499 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
11500 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
11501 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
11502 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
11503 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
11504 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
11505 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
11506 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
11507 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
11508 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
11509 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
11510 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
11511 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
11512 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
11513 static swig_type_info _swigt__p_wxFloatingPane
= {"_p_wxFloatingPane", "wxFloatingPane *", 0, 0, (void*)0, 0};
11514 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
11515 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
11516 static swig_type_info _swigt__p_wxFrameManager
= {"_p_wxFrameManager", "wxFrameManager *", 0, 0, (void*)0, 0};
11517 static swig_type_info _swigt__p_wxFrameManagerEvent
= {"_p_wxFrameManagerEvent", "wxFrameManagerEvent *", 0, 0, (void*)0, 0};
11518 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
11519 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
11520 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
11521 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
11522 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
11523 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
11524 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
11525 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
11526 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
11527 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
11528 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
11529 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
11530 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
11531 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
11532 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
11533 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
11534 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
11535 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
11536 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
11537 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
11538 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
11539 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
11540 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
11541 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
11542 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
11543 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
11544 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
11545 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
11546 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
11547 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
11548 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
11549 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
11550 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
11551 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
11552 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
11553 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
11554 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
11555 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
11556 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
11557 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
11558 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
11559 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
11560 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
11561 static swig_type_info _swigt__p_wxPaneButton
= {"_p_wxPaneButton", "wxPaneButton *", 0, 0, (void*)0, 0};
11562 static swig_type_info _swigt__p_wxPaneButtonArray
= {"_p_wxPaneButtonArray", "wxPaneButtonArray *", 0, 0, (void*)0, 0};
11563 static swig_type_info _swigt__p_wxPaneInfo
= {"_p_wxPaneInfo", "wxPaneInfo *", 0, 0, (void*)0, 0};
11564 static swig_type_info _swigt__p_wxPaneInfoPtrArray
= {"_p_wxPaneInfoPtrArray", "wxPaneInfoPtrArray *", 0, 0, (void*)0, 0};
11565 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
11566 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
11567 static swig_type_info _swigt__p_wxPyDockArt
= {"_p_wxPyDockArt", "wxPyDockArt *", 0, 0, (void*)0, 0};
11568 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
11569 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
11570 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
11571 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
11572 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
11573 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
11574 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
11576 static swig_type_info
*swig_type_initial
[] = {
11578 &_swigt__p_form_ops_t
,
11580 &_swigt__p_unsigned_char
,
11581 &_swigt__p_unsigned_int
,
11582 &_swigt__p_unsigned_long
,
11583 &_swigt__p_wxANIHandler
,
11584 &_swigt__p_wxAcceleratorTable
,
11585 &_swigt__p_wxActivateEvent
,
11586 &_swigt__p_wxBMPHandler
,
11587 &_swigt__p_wxBoxSizer
,
11588 &_swigt__p_wxCURHandler
,
11589 &_swigt__p_wxCalculateLayoutEvent
,
11590 &_swigt__p_wxChildFocusEvent
,
11591 &_swigt__p_wxClipboardTextEvent
,
11592 &_swigt__p_wxCloseEvent
,
11593 &_swigt__p_wxColor
,
11594 &_swigt__p_wxColour
,
11595 &_swigt__p_wxColourData
,
11596 &_swigt__p_wxColourDialog
,
11597 &_swigt__p_wxCommandEvent
,
11598 &_swigt__p_wxContextMenuEvent
,
11599 &_swigt__p_wxControl
,
11600 &_swigt__p_wxControlWithItems
,
11602 &_swigt__p_wxDateEvent
,
11603 &_swigt__p_wxDefaultDockArt
,
11604 &_swigt__p_wxDialog
,
11605 &_swigt__p_wxDirDialog
,
11606 &_swigt__p_wxDisplayChangedEvent
,
11607 &_swigt__p_wxDockArt
,
11608 &_swigt__p_wxDockInfo
,
11609 &_swigt__p_wxDockUIPart
,
11610 &_swigt__p_wxDropFilesEvent
,
11611 &_swigt__p_wxDuplexMode
,
11612 &_swigt__p_wxEraseEvent
,
11613 &_swigt__p_wxEvent
,
11614 &_swigt__p_wxEvtHandler
,
11615 &_swigt__p_wxFSFile
,
11616 &_swigt__p_wxFileDialog
,
11617 &_swigt__p_wxFileSystem
,
11618 &_swigt__p_wxFindDialogEvent
,
11619 &_swigt__p_wxFindReplaceData
,
11620 &_swigt__p_wxFindReplaceDialog
,
11621 &_swigt__p_wxFlexGridSizer
,
11622 &_swigt__p_wxFloatingPane
,
11623 &_swigt__p_wxFocusEvent
,
11625 &_swigt__p_wxFontData
,
11626 &_swigt__p_wxFontDialog
,
11627 &_swigt__p_wxFrame
,
11628 &_swigt__p_wxFrameManager
,
11629 &_swigt__p_wxFrameManagerEvent
,
11630 &_swigt__p_wxGBSizerItem
,
11631 &_swigt__p_wxGIFHandler
,
11632 &_swigt__p_wxGridBagSizer
,
11633 &_swigt__p_wxGridSizer
,
11634 &_swigt__p_wxICOHandler
,
11635 &_swigt__p_wxIconizeEvent
,
11636 &_swigt__p_wxIdleEvent
,
11637 &_swigt__p_wxImage
,
11638 &_swigt__p_wxImageHandler
,
11639 &_swigt__p_wxIndividualLayoutConstraint
,
11640 &_swigt__p_wxInitDialogEvent
,
11641 &_swigt__p_wxJPEGHandler
,
11642 &_swigt__p_wxKeyEvent
,
11643 &_swigt__p_wxLayoutAlgorithm
,
11644 &_swigt__p_wxLayoutConstraints
,
11645 &_swigt__p_wxMDIChildFrame
,
11646 &_swigt__p_wxMDIClientWindow
,
11647 &_swigt__p_wxMDIParentFrame
,
11648 &_swigt__p_wxMaximizeEvent
,
11650 &_swigt__p_wxMenuBar
,
11651 &_swigt__p_wxMenuEvent
,
11652 &_swigt__p_wxMenuItem
,
11653 &_swigt__p_wxMessageDialog
,
11654 &_swigt__p_wxMiniFrame
,
11655 &_swigt__p_wxMouseCaptureChangedEvent
,
11656 &_swigt__p_wxMouseEvent
,
11657 &_swigt__p_wxMoveEvent
,
11658 &_swigt__p_wxMultiChoiceDialog
,
11659 &_swigt__p_wxNavigationKeyEvent
,
11660 &_swigt__p_wxNcPaintEvent
,
11661 &_swigt__p_wxNotifyEvent
,
11662 &_swigt__p_wxNumberEntryDialog
,
11663 &_swigt__p_wxObject
,
11664 &_swigt__p_wxPCXHandler
,
11665 &_swigt__p_wxPNGHandler
,
11666 &_swigt__p_wxPNMHandler
,
11667 &_swigt__p_wxPageSetupDialog
,
11668 &_swigt__p_wxPageSetupDialogData
,
11669 &_swigt__p_wxPaintEvent
,
11670 &_swigt__p_wxPaletteChangedEvent
,
11671 &_swigt__p_wxPaneButton
,
11672 &_swigt__p_wxPaneButtonArray
,
11673 &_swigt__p_wxPaneInfo
,
11674 &_swigt__p_wxPaneInfoPtrArray
,
11675 &_swigt__p_wxPanel
,
11676 &_swigt__p_wxPaperSize
,
11677 &_swigt__p_wxPasswordEntryDialog
,
11678 &_swigt__p_wxPoint
,
11679 &_swigt__p_wxPopupWindow
,
11680 &_swigt__p_wxPreviewCanvas
,
11681 &_swigt__p_wxPreviewControlBar
,
11682 &_swigt__p_wxPreviewFrame
,
11683 &_swigt__p_wxPrintData
,
11684 &_swigt__p_wxPrintDialog
,
11685 &_swigt__p_wxPrintDialogData
,
11686 &_swigt__p_wxPrintPreview
,
11687 &_swigt__p_wxPrinter
,
11688 &_swigt__p_wxProgressDialog
,
11689 &_swigt__p_wxPyApp
,
11690 &_swigt__p_wxPyCommandEvent
,
11691 &_swigt__p_wxPyDockArt
,
11692 &_swigt__p_wxPyEvent
,
11693 &_swigt__p_wxPyHtmlListBox
,
11694 &_swigt__p_wxPyImageHandler
,
11695 &_swigt__p_wxPyPanel
,
11696 &_swigt__p_wxPyPopupTransientWindow
,
11697 &_swigt__p_wxPyPreviewControlBar
,
11698 &_swigt__p_wxPyPreviewFrame
,
11699 &_swigt__p_wxPyPrintPreview
,
11700 &_swigt__p_wxPyPrintout
,
11701 &_swigt__p_wxPyScrolledWindow
,
11702 &_swigt__p_wxPySizer
,
11703 &_swigt__p_wxPyTaskBarIcon
,
11704 &_swigt__p_wxPyVListBox
,
11705 &_swigt__p_wxPyVScrolledWindow
,
11706 &_swigt__p_wxPyValidator
,
11707 &_swigt__p_wxPyWindow
,
11708 &_swigt__p_wxQueryLayoutInfoEvent
,
11709 &_swigt__p_wxQueryNewPaletteEvent
,
11711 &_swigt__p_wxSashEvent
,
11712 &_swigt__p_wxSashLayoutWindow
,
11713 &_swigt__p_wxSashWindow
,
11714 &_swigt__p_wxScrollEvent
,
11715 &_swigt__p_wxScrollWinEvent
,
11716 &_swigt__p_wxScrolledWindow
,
11717 &_swigt__p_wxSetCursorEvent
,
11718 &_swigt__p_wxShowEvent
,
11719 &_swigt__p_wxSingleChoiceDialog
,
11721 &_swigt__p_wxSizeEvent
,
11722 &_swigt__p_wxSizer
,
11723 &_swigt__p_wxSizerItem
,
11724 &_swigt__p_wxSplashScreen
,
11725 &_swigt__p_wxSplashScreenWindow
,
11726 &_swigt__p_wxSplitterEvent
,
11727 &_swigt__p_wxSplitterWindow
,
11728 &_swigt__p_wxStaticBoxSizer
,
11729 &_swigt__p_wxStatusBar
,
11730 &_swigt__p_wxStdDialogButtonSizer
,
11731 &_swigt__p_wxString
,
11732 &_swigt__p_wxSysColourChangedEvent
,
11733 &_swigt__p_wxTIFFHandler
,
11734 &_swigt__p_wxTaskBarIconEvent
,
11735 &_swigt__p_wxTextEntryDialog
,
11736 &_swigt__p_wxTipWindow
,
11737 &_swigt__p_wxTopLevelWindow
,
11738 &_swigt__p_wxUpdateUIEvent
,
11739 &_swigt__p_wxValidator
,
11740 &_swigt__p_wxWindow
,
11741 &_swigt__p_wxWindowCreateEvent
,
11742 &_swigt__p_wxWindowDestroyEvent
,
11743 &_swigt__p_wxXPMHandler
,
11746 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
11747 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
11748 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
11749 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
11750 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
11751 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
11752 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
11753 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
11754 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
11755 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}};
11756 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}};
11757 static swig_cast_info _swigc__p_wxDockInfo
[] = { {&_swigt__p_wxDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
11758 static swig_cast_info _swigc__p_wxDockUIPart
[] = { {&_swigt__p_wxDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
11759 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
11760 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
11761 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
11762 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11763 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11764 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11765 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
11766 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
11767 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
11768 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
11769 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
11770 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11771 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11772 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
11773 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
11774 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11775 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
11776 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11777 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11778 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11779 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11780 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
11781 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11782 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
11783 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
11784 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
11785 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
11786 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11787 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11788 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11789 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11790 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
11791 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
11792 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
11793 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
11794 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
11795 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
11796 static swig_cast_info _swigc__p_wxCommandEvent
[] = {{&_swigt__p_wxCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
11797 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
11798 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11799 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11800 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11801 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
11802 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
11803 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_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_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_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_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}};
11804 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
11805 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
11806 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
11807 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
11808 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
11809 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11810 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
11811 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11812 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11813 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
11814 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
11815 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11816 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11817 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11818 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
11819 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
11820 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
11821 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11822 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
11823 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11824 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
11825 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
11826 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
11827 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
11828 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
11829 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
11830 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11831 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
11832 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
11833 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
11834 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
11835 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
11836 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
11837 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
11838 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
11839 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
11840 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
11841 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
11842 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
11843 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
11844 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
11845 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
11846 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
11847 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
11848 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
11849 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
11850 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_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_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}};
11851 static swig_cast_info _swigc__p_wxFloatingPane
[] = { {&_swigt__p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
11852 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
11853 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}};
11854 static swig_cast_info _swigc__p_wxFrameManager
[] = { {&_swigt__p_wxFrameManager
, 0, 0, 0},{0, 0, 0, 0}};
11855 static swig_cast_info _swigc__p_wxFrameManagerEvent
[] = { {&_swigt__p_wxFrameManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
11856 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}};
11857 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
11858 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
11859 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
11860 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
11861 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
11862 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
11863 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
11864 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
11865 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
11866 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
11867 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
11868 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
11869 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
11870 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
11871 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
11872 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
11873 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
11874 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
11875 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
11876 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
11877 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
11878 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
11879 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
11880 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
11881 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
11882 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
11883 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
11884 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
11885 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
11886 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
11887 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
11888 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
11889 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
11890 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
11891 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
11892 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
11893 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
11894 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
11895 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
11896 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
11897 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
11898 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_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_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_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_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_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrinter
, _p_wxPrinterTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_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_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_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_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_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}};
11899 static swig_cast_info _swigc__p_wxPaneButton
[] = { {&_swigt__p_wxPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
11900 static swig_cast_info _swigc__p_wxPaneButtonArray
[] = { {&_swigt__p_wxPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
11901 static swig_cast_info _swigc__p_wxPaneInfo
[] = { {&_swigt__p_wxPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
11902 static swig_cast_info _swigc__p_wxPaneInfoPtrArray
[] = { {&_swigt__p_wxPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
11903 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
11904 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
11905 static swig_cast_info _swigc__p_wxPyDockArt
[] = { {&_swigt__p_wxPyDockArt
, 0, 0, 0},{0, 0, 0, 0}};
11906 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
11907 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
11908 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}};
11909 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}};
11910 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
11911 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}};
11912 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_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_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}};
11914 static swig_cast_info
*swig_cast_initial
[] = {
11916 _swigc__p_form_ops_t
,
11918 _swigc__p_unsigned_char
,
11919 _swigc__p_unsigned_int
,
11920 _swigc__p_unsigned_long
,
11921 _swigc__p_wxANIHandler
,
11922 _swigc__p_wxAcceleratorTable
,
11923 _swigc__p_wxActivateEvent
,
11924 _swigc__p_wxBMPHandler
,
11925 _swigc__p_wxBoxSizer
,
11926 _swigc__p_wxCURHandler
,
11927 _swigc__p_wxCalculateLayoutEvent
,
11928 _swigc__p_wxChildFocusEvent
,
11929 _swigc__p_wxClipboardTextEvent
,
11930 _swigc__p_wxCloseEvent
,
11932 _swigc__p_wxColour
,
11933 _swigc__p_wxColourData
,
11934 _swigc__p_wxColourDialog
,
11935 _swigc__p_wxCommandEvent
,
11936 _swigc__p_wxContextMenuEvent
,
11937 _swigc__p_wxControl
,
11938 _swigc__p_wxControlWithItems
,
11940 _swigc__p_wxDateEvent
,
11941 _swigc__p_wxDefaultDockArt
,
11942 _swigc__p_wxDialog
,
11943 _swigc__p_wxDirDialog
,
11944 _swigc__p_wxDisplayChangedEvent
,
11945 _swigc__p_wxDockArt
,
11946 _swigc__p_wxDockInfo
,
11947 _swigc__p_wxDockUIPart
,
11948 _swigc__p_wxDropFilesEvent
,
11949 _swigc__p_wxDuplexMode
,
11950 _swigc__p_wxEraseEvent
,
11952 _swigc__p_wxEvtHandler
,
11953 _swigc__p_wxFSFile
,
11954 _swigc__p_wxFileDialog
,
11955 _swigc__p_wxFileSystem
,
11956 _swigc__p_wxFindDialogEvent
,
11957 _swigc__p_wxFindReplaceData
,
11958 _swigc__p_wxFindReplaceDialog
,
11959 _swigc__p_wxFlexGridSizer
,
11960 _swigc__p_wxFloatingPane
,
11961 _swigc__p_wxFocusEvent
,
11963 _swigc__p_wxFontData
,
11964 _swigc__p_wxFontDialog
,
11966 _swigc__p_wxFrameManager
,
11967 _swigc__p_wxFrameManagerEvent
,
11968 _swigc__p_wxGBSizerItem
,
11969 _swigc__p_wxGIFHandler
,
11970 _swigc__p_wxGridBagSizer
,
11971 _swigc__p_wxGridSizer
,
11972 _swigc__p_wxICOHandler
,
11973 _swigc__p_wxIconizeEvent
,
11974 _swigc__p_wxIdleEvent
,
11976 _swigc__p_wxImageHandler
,
11977 _swigc__p_wxIndividualLayoutConstraint
,
11978 _swigc__p_wxInitDialogEvent
,
11979 _swigc__p_wxJPEGHandler
,
11980 _swigc__p_wxKeyEvent
,
11981 _swigc__p_wxLayoutAlgorithm
,
11982 _swigc__p_wxLayoutConstraints
,
11983 _swigc__p_wxMDIChildFrame
,
11984 _swigc__p_wxMDIClientWindow
,
11985 _swigc__p_wxMDIParentFrame
,
11986 _swigc__p_wxMaximizeEvent
,
11988 _swigc__p_wxMenuBar
,
11989 _swigc__p_wxMenuEvent
,
11990 _swigc__p_wxMenuItem
,
11991 _swigc__p_wxMessageDialog
,
11992 _swigc__p_wxMiniFrame
,
11993 _swigc__p_wxMouseCaptureChangedEvent
,
11994 _swigc__p_wxMouseEvent
,
11995 _swigc__p_wxMoveEvent
,
11996 _swigc__p_wxMultiChoiceDialog
,
11997 _swigc__p_wxNavigationKeyEvent
,
11998 _swigc__p_wxNcPaintEvent
,
11999 _swigc__p_wxNotifyEvent
,
12000 _swigc__p_wxNumberEntryDialog
,
12001 _swigc__p_wxObject
,
12002 _swigc__p_wxPCXHandler
,
12003 _swigc__p_wxPNGHandler
,
12004 _swigc__p_wxPNMHandler
,
12005 _swigc__p_wxPageSetupDialog
,
12006 _swigc__p_wxPageSetupDialogData
,
12007 _swigc__p_wxPaintEvent
,
12008 _swigc__p_wxPaletteChangedEvent
,
12009 _swigc__p_wxPaneButton
,
12010 _swigc__p_wxPaneButtonArray
,
12011 _swigc__p_wxPaneInfo
,
12012 _swigc__p_wxPaneInfoPtrArray
,
12014 _swigc__p_wxPaperSize
,
12015 _swigc__p_wxPasswordEntryDialog
,
12017 _swigc__p_wxPopupWindow
,
12018 _swigc__p_wxPreviewCanvas
,
12019 _swigc__p_wxPreviewControlBar
,
12020 _swigc__p_wxPreviewFrame
,
12021 _swigc__p_wxPrintData
,
12022 _swigc__p_wxPrintDialog
,
12023 _swigc__p_wxPrintDialogData
,
12024 _swigc__p_wxPrintPreview
,
12025 _swigc__p_wxPrinter
,
12026 _swigc__p_wxProgressDialog
,
12028 _swigc__p_wxPyCommandEvent
,
12029 _swigc__p_wxPyDockArt
,
12030 _swigc__p_wxPyEvent
,
12031 _swigc__p_wxPyHtmlListBox
,
12032 _swigc__p_wxPyImageHandler
,
12033 _swigc__p_wxPyPanel
,
12034 _swigc__p_wxPyPopupTransientWindow
,
12035 _swigc__p_wxPyPreviewControlBar
,
12036 _swigc__p_wxPyPreviewFrame
,
12037 _swigc__p_wxPyPrintPreview
,
12038 _swigc__p_wxPyPrintout
,
12039 _swigc__p_wxPyScrolledWindow
,
12040 _swigc__p_wxPySizer
,
12041 _swigc__p_wxPyTaskBarIcon
,
12042 _swigc__p_wxPyVListBox
,
12043 _swigc__p_wxPyVScrolledWindow
,
12044 _swigc__p_wxPyValidator
,
12045 _swigc__p_wxPyWindow
,
12046 _swigc__p_wxQueryLayoutInfoEvent
,
12047 _swigc__p_wxQueryNewPaletteEvent
,
12049 _swigc__p_wxSashEvent
,
12050 _swigc__p_wxSashLayoutWindow
,
12051 _swigc__p_wxSashWindow
,
12052 _swigc__p_wxScrollEvent
,
12053 _swigc__p_wxScrollWinEvent
,
12054 _swigc__p_wxScrolledWindow
,
12055 _swigc__p_wxSetCursorEvent
,
12056 _swigc__p_wxShowEvent
,
12057 _swigc__p_wxSingleChoiceDialog
,
12059 _swigc__p_wxSizeEvent
,
12061 _swigc__p_wxSizerItem
,
12062 _swigc__p_wxSplashScreen
,
12063 _swigc__p_wxSplashScreenWindow
,
12064 _swigc__p_wxSplitterEvent
,
12065 _swigc__p_wxSplitterWindow
,
12066 _swigc__p_wxStaticBoxSizer
,
12067 _swigc__p_wxStatusBar
,
12068 _swigc__p_wxStdDialogButtonSizer
,
12069 _swigc__p_wxString
,
12070 _swigc__p_wxSysColourChangedEvent
,
12071 _swigc__p_wxTIFFHandler
,
12072 _swigc__p_wxTaskBarIconEvent
,
12073 _swigc__p_wxTextEntryDialog
,
12074 _swigc__p_wxTipWindow
,
12075 _swigc__p_wxTopLevelWindow
,
12076 _swigc__p_wxUpdateUIEvent
,
12077 _swigc__p_wxValidator
,
12078 _swigc__p_wxWindow
,
12079 _swigc__p_wxWindowCreateEvent
,
12080 _swigc__p_wxWindowDestroyEvent
,
12081 _swigc__p_wxXPMHandler
,
12085 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
12087 static swig_const_info swig_const_table
[] = {
12088 {0, 0, 0, 0.0, 0, 0}};
12093 /* -----------------------------------------------------------------------------
12094 * Type initialization:
12095 * This problem is tough by the requirement that no dynamic
12096 * memory is used. Also, since swig_type_info structures store pointers to
12097 * swig_cast_info structures and swig_cast_info structures store pointers back
12098 * to swig_type_info structures, we need some lookup code at initialization.
12099 * The idea is that swig generates all the structures that are needed.
12100 * The runtime then collects these partially filled structures.
12101 * The SWIG_InitializeModule function takes these initial arrays out of
12102 * swig_module, and does all the lookup, filling in the swig_module.types
12103 * array with the correct data and linking the correct swig_cast_info
12104 * structures together.
12106 * The generated swig_type_info structures are assigned staticly to an initial
12107 * array. We just loop though that array, and handle each type individually.
12108 * First we lookup if this type has been already loaded, and if so, use the
12109 * loaded structure instead of the generated one. Then we have to fill in the
12110 * cast linked list. The cast data is initially stored in something like a
12111 * two-dimensional array. Each row corresponds to a type (there are the same
12112 * number of rows as there are in the swig_type_initial array). Each entry in
12113 * a column is one of the swig_cast_info structures for that type.
12114 * The cast_initial array is actually an array of arrays, because each row has
12115 * a variable number of columns. So to actually build the cast linked list,
12116 * we find the array of casts associated with the type, and loop through it
12117 * adding the casts to the list. The one last trick we need to do is making
12118 * sure the type pointer in the swig_cast_info struct is correct.
12120 * First off, we lookup the cast->type name to see if it is already loaded.
12121 * There are three cases to handle:
12122 * 1) If the cast->type has already been loaded AND the type we are adding
12123 * casting info to has not been loaded (it is in this module), THEN we
12124 * replace the cast->type pointer with the type pointer that has already
12126 * 2) If BOTH types (the one we are adding casting info to, and the
12127 * cast->type) are loaded, THEN the cast info has already been loaded by
12128 * the previous module so we just ignore it.
12129 * 3) Finally, if cast->type has not already been loaded, then we add that
12130 * swig_cast_info to the linked list (because the cast->type) pointer will
12132 * ----------------------------------------------------------------------------- */
12142 #define SWIGRUNTIME_DEBUG
12146 SWIG_InitializeModule(void *clientdata
) {
12148 swig_module_info
*module_head
;
12149 static int init_run
= 0;
12151 clientdata
= clientdata
;
12153 if (init_run
) return;
12156 /* Initialize the swig_module */
12157 swig_module
.type_initial
= swig_type_initial
;
12158 swig_module
.cast_initial
= swig_cast_initial
;
12160 /* Try and load any already created modules */
12161 module_head
= SWIG_GetModule(clientdata
);
12163 swig_module
.next
= module_head
->next
;
12164 module_head
->next
= &swig_module
;
12166 /* This is the first module loaded */
12167 swig_module
.next
= &swig_module
;
12168 SWIG_SetModule(clientdata
, &swig_module
);
12171 /* Now work on filling in swig_module.types */
12172 #ifdef SWIGRUNTIME_DEBUG
12173 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
12175 for (i
= 0; i
< swig_module
.size
; ++i
) {
12176 swig_type_info
*type
= 0;
12177 swig_type_info
*ret
;
12178 swig_cast_info
*cast
;
12180 #ifdef SWIGRUNTIME_DEBUG
12181 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
12184 /* if there is another module already loaded */
12185 if (swig_module
.next
!= &swig_module
) {
12186 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
12189 /* Overwrite clientdata field */
12190 #ifdef SWIGRUNTIME_DEBUG
12191 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
12193 if (swig_module
.type_initial
[i
]->clientdata
) {
12194 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
12195 #ifdef SWIGRUNTIME_DEBUG
12196 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
12200 type
= swig_module
.type_initial
[i
];
12203 /* Insert casting types */
12204 cast
= swig_module
.cast_initial
[i
];
12205 while (cast
->type
) {
12206 /* Don't need to add information already in the list */
12208 #ifdef SWIGRUNTIME_DEBUG
12209 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
12211 if (swig_module
.next
!= &swig_module
) {
12212 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
12213 #ifdef SWIGRUNTIME_DEBUG
12214 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
12218 if (type
== swig_module
.type_initial
[i
]) {
12219 #ifdef SWIGRUNTIME_DEBUG
12220 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
12225 /* Check for casting already in the list */
12226 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
12227 #ifdef SWIGRUNTIME_DEBUG
12228 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
12230 if (!ocast
) ret
= 0;
12235 #ifdef SWIGRUNTIME_DEBUG
12236 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
12239 type
->cast
->prev
= cast
;
12240 cast
->next
= type
->cast
;
12246 /* Set entry in modules->types array equal to the type */
12247 swig_module
.types
[i
] = type
;
12249 swig_module
.types
[i
] = 0;
12251 #ifdef SWIGRUNTIME_DEBUG
12252 printf("**** SWIG_InitializeModule: Cast List ******\n");
12253 for (i
= 0; i
< swig_module
.size
; ++i
) {
12255 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
12256 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
12257 while (cast
->type
) {
12258 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
12262 printf("---- Total casts: %d\n",j
);
12264 printf("**** SWIG_InitializeModule: Cast List ******\n");
12268 /* This function will propagate the clientdata field of type to
12269 * any new swig_type_info structures that have been added into the list
12270 * of equivalent types. It is like calling
12271 * SWIG_TypeClientData(type, clientdata) a second time.
12274 SWIG_PropagateClientData(void) {
12276 swig_cast_info
*equiv
;
12277 static int init_run
= 0;
12279 if (init_run
) return;
12282 for (i
= 0; i
< swig_module
.size
; i
++) {
12283 if (swig_module
.types
[i
]->clientdata
) {
12284 equiv
= swig_module
.types
[i
]->cast
;
12286 if (!equiv
->converter
) {
12287 if (equiv
->type
&& !equiv
->type
->clientdata
)
12288 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
12290 equiv
= equiv
->next
;
12310 /* Python-specific SWIG API */
12311 #define SWIG_newvarlink() SWIG_Python_newvarlink()
12312 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
12313 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
12315 /* -----------------------------------------------------------------------------
12316 * global variable support code.
12317 * ----------------------------------------------------------------------------- */
12319 typedef struct swig_globalvar
{
12320 char *name
; /* Name of global variable */
12321 PyObject
*(*get_attr
)(void); /* Return the current value */
12322 int (*set_attr
)(PyObject
*); /* Set the value */
12323 struct swig_globalvar
*next
;
12326 typedef struct swig_varlinkobject
{
12328 swig_globalvar
*vars
;
12329 } swig_varlinkobject
;
12331 SWIGINTERN PyObject
*
12332 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
12333 return PyString_FromString("<Swig global variables>");
12336 SWIGINTERN PyObject
*
12337 swig_varlink_str(swig_varlinkobject
*v
) {
12338 PyObject
*str
= PyString_FromString("(");
12339 swig_globalvar
*var
;
12340 for (var
= v
->vars
; var
; var
=var
->next
) {
12341 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
12342 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
12344 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
12349 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
12350 PyObject
*str
= swig_varlink_str(v
);
12351 fprintf(fp
,"Swig global variables ");
12352 fprintf(fp
,"%s\n", PyString_AsString(str
));
12358 swig_varlink_dealloc(swig_varlinkobject
*v
) {
12359 swig_globalvar
*var
= v
->vars
;
12361 swig_globalvar
*n
= var
->next
;
12368 SWIGINTERN PyObject
*
12369 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
12370 PyObject
*res
= NULL
;
12371 swig_globalvar
*var
= v
->vars
;
12373 if (strcmp(var
->name
,n
) == 0) {
12374 res
= (*var
->get_attr
)();
12379 if (res
== NULL
&& !PyErr_Occurred()) {
12380 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
12386 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
12388 swig_globalvar
*var
= v
->vars
;
12390 if (strcmp(var
->name
,n
) == 0) {
12391 res
= (*var
->set_attr
)(p
);
12396 if (res
== 1 && !PyErr_Occurred()) {
12397 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
12402 SWIGINTERN PyTypeObject
*
12403 swig_varlink_type(void) {
12404 static char varlink__doc__
[] = "Swig var link object";
12405 static PyTypeObject varlink_type
;
12406 static int type_init
= 0;
12408 const PyTypeObject tmp
12410 PyObject_HEAD_INIT(NULL
)
12411 0, /* Number of items in variable part (ob_size) */
12412 (char *)"swigvarlink", /* Type name (tp_name) */
12413 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
12414 0, /* Itemsize (tp_itemsize) */
12415 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
12416 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
12417 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
12418 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
12419 0, /* tp_compare */
12420 (reprfunc
) swig_varlink_repr
, /* tp_repr */
12421 0, /* tp_as_number */
12422 0, /* tp_as_sequence */
12423 0, /* tp_as_mapping */
12426 (reprfunc
)swig_varlink_str
, /* tp_str */
12427 0, /* tp_getattro */
12428 0, /* tp_setattro */
12429 0, /* tp_as_buffer */
12431 varlink__doc__
, /* tp_doc */
12432 0, /* tp_traverse */
12434 0, /* tp_richcompare */
12435 0, /* tp_weaklistoffset */
12436 #if PY_VERSION_HEX >= 0x02020000
12437 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
12439 #if PY_VERSION_HEX >= 0x02030000
12442 #ifdef COUNT_ALLOCS
12443 0,0,0,0 /* tp_alloc -> tp_next */
12446 varlink_type
= tmp
;
12447 varlink_type
.ob_type
= &PyType_Type
;
12450 return &varlink_type
;
12453 /* Create a variable linking object for use later */
12454 SWIGINTERN PyObject
*
12455 SWIG_Python_newvarlink(void) {
12456 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
12460 return ((PyObject
*) result
);
12464 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
12465 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
12466 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
12468 size_t size
= strlen(name
)+1;
12469 gv
->name
= (char *)malloc(size
);
12471 strncpy(gv
->name
,name
,size
);
12472 gv
->get_attr
= get_attr
;
12473 gv
->set_attr
= set_attr
;
12474 gv
->next
= v
->vars
;
12480 SWIGINTERN PyObject
*
12482 static PyObject
*_SWIG_globals
= 0;
12483 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
12484 return _SWIG_globals
;
12487 /* -----------------------------------------------------------------------------
12488 * constants/methods manipulation
12489 * ----------------------------------------------------------------------------- */
12491 /* Install Constants */
12493 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
12496 for (i
= 0; constants
[i
].type
; ++i
) {
12497 switch(constants
[i
].type
) {
12498 case SWIG_PY_POINTER
:
12499 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
12501 case SWIG_PY_BINARY
:
12502 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
12509 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
12515 /* -----------------------------------------------------------------------------*/
12516 /* Fix SwigMethods to carry the callback ptrs when needed */
12517 /* -----------------------------------------------------------------------------*/
12520 SWIG_Python_FixMethods(PyMethodDef
*methods
,
12521 swig_const_info
*const_table
,
12522 swig_type_info
**types
,
12523 swig_type_info
**types_initial
) {
12525 for (i
= 0; methods
[i
].ml_name
; ++i
) {
12526 const char *c
= methods
[i
].ml_doc
;
12527 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
12529 swig_const_info
*ci
= 0;
12530 const char *name
= c
+ 10;
12531 for (j
= 0; const_table
[j
].type
; ++j
) {
12532 if (strncmp(const_table
[j
].name
, name
,
12533 strlen(const_table
[j
].name
)) == 0) {
12534 ci
= &(const_table
[j
]);
12539 size_t shift
= (ci
->ptype
) - types
;
12540 swig_type_info
*ty
= types_initial
[shift
];
12541 size_t ldoc
= (c
- methods
[i
].ml_doc
);
12542 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
12543 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
12546 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
12548 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
12550 strncpy(buff
, "swig_ptr: ", 10);
12552 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
12553 methods
[i
].ml_doc
= ndoc
;
12565 /* -----------------------------------------------------------------------------*
12566 * Partial Init method
12567 * -----------------------------------------------------------------------------*/
12572 SWIGEXPORT
void SWIG_init(void) {
12575 /* Fix SwigMethods to carry the callback ptrs when needed */
12576 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
12578 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
12579 d
= PyModule_GetDict(m
);
12581 SWIG_InitializeModule(0);
12582 SWIG_InstallConstants(d
,swig_const_table
);
12585 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
12586 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
12587 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
12588 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
12589 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
12590 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
12591 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
12592 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
12593 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
12594 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
12595 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
12596 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
12597 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT_FADE
)));
12598 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
12599 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_SIZE
)));
12600 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_SIZE
)));
12601 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_SIZE
)));
12602 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BORDER_SIZE
)));
12603 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BUTTON_SIZE
)));
12604 SWIG_Python_SetConstant(d
, "AUI_ART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BACKGROUND_COLOUR
)));
12605 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_COLOUR
)));
12606 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_COLOUR
)));
12607 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
12608 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_COLOUR
)));
12609 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
12610 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
)));
12611 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
)));
12612 SWIG_Python_SetConstant(d
, "AUI_ART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BORDER_COLOUR
)));
12613 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_COLOUR
)));
12614 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_FONT
)));
12615 SWIG_Python_SetConstant(d
, "AUI_ART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRADIENT_TYPE
)));
12616 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
12617 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
12618 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
12619 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
12620 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
12621 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
12622 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
12623 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
12624 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
12625 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
12626 SWIG_addvarlink(SWIG_globals(),(char*)"NullDockInfo",NullDockInfo_get
, NullDockInfo_set
);
12627 SWIG_addvarlink(SWIG_globals(),(char*)"NullPaneInfo",NullPaneInfo_get
, NullPaneInfo_set
);
12628 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloating
)));
12629 SWIG_Python_SetConstant(d
, "PaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxPaneInfo::optionHidden
)));
12630 SWIG_Python_SetConstant(d
, "PaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionLeftDockable
)));
12631 SWIG_Python_SetConstant(d
, "PaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionRightDockable
)));
12632 SWIG_Python_SetConstant(d
, "PaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionTopDockable
)));
12633 SWIG_Python_SetConstant(d
, "PaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionBottomDockable
)));
12634 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloatable
)));
12635 SWIG_Python_SetConstant(d
, "PaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionMovable
)));
12636 SWIG_Python_SetConstant(d
, "PaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionResizable
)));
12637 SWIG_Python_SetConstant(d
, "PaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxPaneInfo::optionPaneBorder
)));
12638 SWIG_Python_SetConstant(d
, "PaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxPaneInfo::optionCaption
)));
12639 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripper
)));
12640 SWIG_Python_SetConstant(d
, "PaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxPaneInfo::optionDestroyOnClose
)));
12641 SWIG_Python_SetConstant(d
, "PaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxPaneInfo::optionToolbar
)));
12642 SWIG_Python_SetConstant(d
, "PaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxPaneInfo::optionActive
)));
12643 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripperTop
)));
12644 SWIG_Python_SetConstant(d
, "PaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonClose
)));
12645 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMaximize
)));
12646 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMinimize
)));
12647 SWIG_Python_SetConstant(d
, "PaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonPin
)));
12648 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom1
)));
12649 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom2
)));
12650 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom3
)));
12651 SWIG_Python_SetConstant(d
, "PaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxPaneInfo::actionPane
)));
12652 SWIG_Python_SetConstant(d
, "DockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxDockUIPart::typeCaption
)));
12653 SWIG_Python_SetConstant(d
, "DockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxDockUIPart::typeGripper
)));
12654 SWIG_Python_SetConstant(d
, "DockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDock
)));
12655 SWIG_Python_SetConstant(d
, "DockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDockSizer
)));
12656 SWIG_Python_SetConstant(d
, "DockUIPart_typePane",SWIG_From_int(static_cast< int >(wxDockUIPart::typePane
)));
12657 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneSizer
)));
12658 SWIG_Python_SetConstant(d
, "DockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxDockUIPart::typeBackground
)));
12659 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneBorder
)));
12660 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneButton
)));
12661 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
12662 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));
12663 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));