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 wxFrame
*arg2
= (wxFrame
*) 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_wxFrame
, 0 | 0 );
6743 if (!SWIG_IsOK(res2
)) {
6744 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
6746 arg2
= reinterpret_cast< wxFrame
* >(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 wxFrame
*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
= (wxFrame
*)((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
*FrameManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7333 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7334 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManager
, SWIG_NewClientData(obj
));
7335 return SWIG_Py_Void();
7338 SWIGINTERN PyObject
*FrameManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7339 return SWIG_Python_InitShadowInstance(args
);
7342 SWIGINTERN PyObject
*_wrap_new_FrameManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7343 PyObject
*resultobj
= 0;
7344 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
7345 wxFrameManagerEvent
*result
= 0 ;
7348 PyObject
* obj0
= 0 ;
7349 char * kwnames
[] = {
7350 (char *) "type", NULL
7353 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FrameManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
7355 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7356 if (!SWIG_IsOK(ecode1
)) {
7357 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FrameManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
7359 arg1
= static_cast< wxEventType
>(val1
);
7362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7363 result
= (wxFrameManagerEvent
*)new wxFrameManagerEvent(arg1
);
7364 wxPyEndAllowThreads(__tstate
);
7365 if (PyErr_Occurred()) SWIG_fail
;
7367 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManagerEvent
, SWIG_POINTER_NEW
| 0 );
7374 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7375 PyObject
*resultobj
= 0;
7376 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7377 wxEvent
*result
= 0 ;
7380 PyObject
*swig_obj
[1] ;
7382 if (!args
) SWIG_fail
;
7384 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7385 if (!SWIG_IsOK(res1
)) {
7386 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Clone" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7388 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7390 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7391 result
= (wxEvent
*)((wxFrameManagerEvent
const *)arg1
)->Clone();
7392 wxPyEndAllowThreads(__tstate
);
7393 if (PyErr_Occurred()) SWIG_fail
;
7395 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
7402 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7403 PyObject
*resultobj
= 0;
7404 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7405 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
7410 PyObject
* obj0
= 0 ;
7411 PyObject
* obj1
= 0 ;
7412 char * kwnames
[] = {
7413 (char *) "self",(char *) "p", NULL
7416 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7417 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7418 if (!SWIG_IsOK(res1
)) {
7419 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7421 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7422 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7423 if (!SWIG_IsOK(res2
)) {
7424 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
7426 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7429 (arg1
)->SetPane(arg2
);
7430 wxPyEndAllowThreads(__tstate
);
7431 if (PyErr_Occurred()) SWIG_fail
;
7433 resultobj
= SWIG_Py_Void();
7440 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7441 PyObject
*resultobj
= 0;
7442 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7448 PyObject
* obj0
= 0 ;
7449 PyObject
* obj1
= 0 ;
7450 char * kwnames
[] = {
7451 (char *) "self",(char *) "b", NULL
7454 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7455 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7456 if (!SWIG_IsOK(res1
)) {
7457 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7459 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7460 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7461 if (!SWIG_IsOK(ecode2
)) {
7462 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
7464 arg2
= static_cast< int >(val2
);
7466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7467 (arg1
)->SetButton(arg2
);
7468 wxPyEndAllowThreads(__tstate
);
7469 if (PyErr_Occurred()) SWIG_fail
;
7471 resultobj
= SWIG_Py_Void();
7478 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7479 PyObject
*resultobj
= 0;
7480 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7481 wxPaneInfo
*result
= 0 ;
7484 PyObject
*swig_obj
[1] ;
7486 if (!args
) SWIG_fail
;
7488 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7489 if (!SWIG_IsOK(res1
)) {
7490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7492 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7494 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7495 result
= (wxPaneInfo
*)(arg1
)->GetPane();
7496 wxPyEndAllowThreads(__tstate
);
7497 if (PyErr_Occurred()) SWIG_fail
;
7499 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7506 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7507 PyObject
*resultobj
= 0;
7508 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7512 PyObject
*swig_obj
[1] ;
7514 if (!args
) SWIG_fail
;
7516 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7517 if (!SWIG_IsOK(res1
)) {
7518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7520 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7523 result
= (int)(arg1
)->GetButton();
7524 wxPyEndAllowThreads(__tstate
);
7525 if (PyErr_Occurred()) SWIG_fail
;
7527 resultobj
= SWIG_From_int(static_cast< int >(result
));
7534 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7535 PyObject
*resultobj
= 0;
7536 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7537 bool arg2
= (bool) true ;
7542 PyObject
* obj0
= 0 ;
7543 PyObject
* obj1
= 0 ;
7544 char * kwnames
[] = {
7545 (char *) "self",(char *) "veto", NULL
7548 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:FrameManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7549 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7550 if (!SWIG_IsOK(res1
)) {
7551 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7553 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7555 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7556 if (!SWIG_IsOK(ecode2
)) {
7557 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
7559 arg2
= static_cast< bool >(val2
);
7562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7564 wxPyEndAllowThreads(__tstate
);
7565 if (PyErr_Occurred()) SWIG_fail
;
7567 resultobj
= SWIG_Py_Void();
7574 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7575 PyObject
*resultobj
= 0;
7576 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7580 PyObject
*swig_obj
[1] ;
7582 if (!args
) SWIG_fail
;
7584 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7585 if (!SWIG_IsOK(res1
)) {
7586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7588 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7590 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7591 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->GetVeto();
7592 wxPyEndAllowThreads(__tstate
);
7593 if (PyErr_Occurred()) SWIG_fail
;
7596 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7604 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7605 PyObject
*resultobj
= 0;
7606 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7612 PyObject
* obj0
= 0 ;
7613 PyObject
* obj1
= 0 ;
7614 char * kwnames
[] = {
7615 (char *) "self",(char *) "can_veto", NULL
7618 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7619 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7620 if (!SWIG_IsOK(res1
)) {
7621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7623 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7624 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7625 if (!SWIG_IsOK(ecode2
)) {
7626 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
7628 arg2
= static_cast< bool >(val2
);
7630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7631 (arg1
)->SetCanVeto(arg2
);
7632 wxPyEndAllowThreads(__tstate
);
7633 if (PyErr_Occurred()) SWIG_fail
;
7635 resultobj
= SWIG_Py_Void();
7642 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7643 PyObject
*resultobj
= 0;
7644 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7648 PyObject
*swig_obj
[1] ;
7650 if (!args
) SWIG_fail
;
7652 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7653 if (!SWIG_IsOK(res1
)) {
7654 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
7656 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7659 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->CanVeto();
7660 wxPyEndAllowThreads(__tstate
);
7661 if (PyErr_Occurred()) SWIG_fail
;
7664 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7672 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7673 PyObject
*resultobj
= 0;
7674 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7675 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
7680 PyObject
*swig_obj
[2] ;
7682 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
7683 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7684 if (!SWIG_IsOK(res1
)) {
7685 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7687 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7688 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
7689 if (!SWIG_IsOK(res2
)) {
7690 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
7692 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7693 if (arg1
) (arg1
)->pane
= arg2
;
7695 resultobj
= SWIG_Py_Void();
7702 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7703 PyObject
*resultobj
= 0;
7704 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7705 wxPaneInfo
*result
= 0 ;
7708 PyObject
*swig_obj
[1] ;
7710 if (!args
) SWIG_fail
;
7712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7713 if (!SWIG_IsOK(res1
)) {
7714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7716 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7717 result
= (wxPaneInfo
*) ((arg1
)->pane
);
7718 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7725 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7726 PyObject
*resultobj
= 0;
7727 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7733 PyObject
*swig_obj
[2] ;
7735 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
7736 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7737 if (!SWIG_IsOK(res1
)) {
7738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7740 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7741 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
7742 if (!SWIG_IsOK(ecode2
)) {
7743 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
7745 arg2
= static_cast< int >(val2
);
7746 if (arg1
) (arg1
)->button
= arg2
;
7748 resultobj
= SWIG_Py_Void();
7755 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7756 PyObject
*resultobj
= 0;
7757 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7761 PyObject
*swig_obj
[1] ;
7763 if (!args
) SWIG_fail
;
7765 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7766 if (!SWIG_IsOK(res1
)) {
7767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7769 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7770 result
= (int) ((arg1
)->button
);
7771 resultobj
= SWIG_From_int(static_cast< int >(result
));
7778 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7779 PyObject
*resultobj
= 0;
7780 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7786 PyObject
*swig_obj
[2] ;
7788 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
7789 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7790 if (!SWIG_IsOK(res1
)) {
7791 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7793 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7794 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
7795 if (!SWIG_IsOK(ecode2
)) {
7796 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
7798 arg2
= static_cast< bool >(val2
);
7799 if (arg1
) (arg1
)->veto_flag
= arg2
;
7801 resultobj
= SWIG_Py_Void();
7808 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7809 PyObject
*resultobj
= 0;
7810 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7814 PyObject
*swig_obj
[1] ;
7816 if (!args
) SWIG_fail
;
7818 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7819 if (!SWIG_IsOK(res1
)) {
7820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7822 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7823 result
= (bool) ((arg1
)->veto_flag
);
7825 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7833 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7834 PyObject
*resultobj
= 0;
7835 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7841 PyObject
*swig_obj
[2] ;
7843 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
7844 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7845 if (!SWIG_IsOK(res1
)) {
7846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7848 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7849 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
7850 if (!SWIG_IsOK(ecode2
)) {
7851 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
7853 arg2
= static_cast< bool >(val2
);
7854 if (arg1
) (arg1
)->canveto_flag
= arg2
;
7856 resultobj
= SWIG_Py_Void();
7863 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7864 PyObject
*resultobj
= 0;
7865 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
7869 PyObject
*swig_obj
[1] ;
7871 if (!args
) SWIG_fail
;
7873 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
7874 if (!SWIG_IsOK(res1
)) {
7875 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
7877 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
7878 result
= (bool) ((arg1
)->canveto_flag
);
7880 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7888 SWIGINTERN PyObject
*FrameManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7890 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7891 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManagerEvent
, SWIG_NewClientData(obj
));
7892 return SWIG_Py_Void();
7895 SWIGINTERN PyObject
*FrameManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7896 return SWIG_Python_InitShadowInstance(args
);
7899 SWIGINTERN PyObject
*_wrap_new_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7900 PyObject
*resultobj
= 0;
7901 wxDockInfo
*result
= 0 ;
7903 if (!SWIG_Python_UnpackTuple(args
,"new_DockInfo",0,0,0)) SWIG_fail
;
7905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7906 result
= (wxDockInfo
*)new wxDockInfo();
7907 wxPyEndAllowThreads(__tstate
);
7908 if (PyErr_Occurred()) SWIG_fail
;
7910 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_NEW
| 0 );
7917 SWIGINTERN PyObject
*_wrap_DockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7918 PyObject
*resultobj
= 0;
7919 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
7923 PyObject
*swig_obj
[1] ;
7925 if (!args
) SWIG_fail
;
7927 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
7928 if (!SWIG_IsOK(res1
)) {
7929 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsOk" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
7931 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
7933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7934 result
= (bool)((wxDockInfo
const *)arg1
)->IsOk();
7935 wxPyEndAllowThreads(__tstate
);
7936 if (PyErr_Occurred()) SWIG_fail
;
7939 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7947 SWIGINTERN PyObject
*_wrap_DockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7948 PyObject
*resultobj
= 0;
7949 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
7953 PyObject
*swig_obj
[1] ;
7955 if (!args
) SWIG_fail
;
7957 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
7958 if (!SWIG_IsOK(res1
)) {
7959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
7961 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
7963 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7964 result
= (bool)((wxDockInfo
const *)arg1
)->IsHorizontal();
7965 wxPyEndAllowThreads(__tstate
);
7966 if (PyErr_Occurred()) SWIG_fail
;
7969 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7977 SWIGINTERN PyObject
*_wrap_DockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7978 PyObject
*resultobj
= 0;
7979 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
7983 PyObject
*swig_obj
[1] ;
7985 if (!args
) SWIG_fail
;
7987 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
7988 if (!SWIG_IsOK(res1
)) {
7989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsVertical" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
7991 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
7993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7994 result
= (bool)((wxDockInfo
const *)arg1
)->IsVertical();
7995 wxPyEndAllowThreads(__tstate
);
7996 if (PyErr_Occurred()) SWIG_fail
;
7999 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8007 SWIGINTERN PyObject
*_wrap_DockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8008 PyObject
*resultobj
= 0;
8009 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8010 wxPaneInfoPtrArray arg2
;
8015 PyObject
*swig_obj
[2] ;
8017 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
8018 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8019 if (!SWIG_IsOK(res1
)) {
8020 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8022 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8024 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneInfoPtrArray
, 0 | 0);
8025 if (!SWIG_IsOK(res2
)) {
8026 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8029 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8031 wxPaneInfoPtrArray
* temp
= reinterpret_cast< wxPaneInfoPtrArray
* >(argp2
);
8033 if (SWIG_IsNewObj(res2
)) delete temp
;
8036 if (arg1
) (arg1
)->panes
= arg2
;
8038 resultobj
= SWIG_Py_Void();
8045 SWIGINTERN PyObject
*_wrap_DockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8046 PyObject
*resultobj
= 0;
8047 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8048 wxPaneInfoPtrArray result
;
8051 PyObject
*swig_obj
[1] ;
8053 if (!args
) SWIG_fail
;
8055 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8056 if (!SWIG_IsOK(res1
)) {
8057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8059 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8060 result
= ((arg1
)->panes
);
8061 resultobj
= SWIG_NewPointerObj((new wxPaneInfoPtrArray(static_cast< const wxPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
8068 SWIGINTERN PyObject
*_wrap_DockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8069 PyObject
*resultobj
= 0;
8070 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8071 wxRect
*arg2
= (wxRect
*) 0 ;
8076 PyObject
*swig_obj
[2] ;
8078 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
8079 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8080 if (!SWIG_IsOK(res1
)) {
8081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8083 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8084 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
8085 if (!SWIG_IsOK(res2
)) {
8086 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
8088 arg2
= reinterpret_cast< wxRect
* >(argp2
);
8089 if (arg1
) (arg1
)->rect
= *arg2
;
8091 resultobj
= SWIG_Py_Void();
8098 SWIGINTERN PyObject
*_wrap_DockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8099 PyObject
*resultobj
= 0;
8100 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8101 wxRect
*result
= 0 ;
8104 PyObject
*swig_obj
[1] ;
8106 if (!args
) SWIG_fail
;
8108 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8109 if (!SWIG_IsOK(res1
)) {
8110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8112 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8113 result
= (wxRect
*)& ((arg1
)->rect
);
8114 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
8121 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8122 PyObject
*resultobj
= 0;
8123 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8129 PyObject
*swig_obj
[2] ;
8131 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_direction_set",2,2,swig_obj
)) 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_dock_direction_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8136 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8137 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8138 if (!SWIG_IsOK(ecode2
)) {
8139 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
8141 arg2
= static_cast< int >(val2
);
8142 if (arg1
) (arg1
)->dock_direction
= arg2
;
8144 resultobj
= SWIG_Py_Void();
8151 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8152 PyObject
*resultobj
= 0;
8153 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8157 PyObject
*swig_obj
[1] ;
8159 if (!args
) SWIG_fail
;
8161 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8162 if (!SWIG_IsOK(res1
)) {
8163 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8165 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8166 result
= (int) ((arg1
)->dock_direction
);
8167 resultobj
= SWIG_From_int(static_cast< int >(result
));
8174 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8175 PyObject
*resultobj
= 0;
8176 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8182 PyObject
*swig_obj
[2] ;
8184 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
8185 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8186 if (!SWIG_IsOK(res1
)) {
8187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8189 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8190 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8191 if (!SWIG_IsOK(ecode2
)) {
8192 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
8194 arg2
= static_cast< int >(val2
);
8195 if (arg1
) (arg1
)->dock_layer
= arg2
;
8197 resultobj
= SWIG_Py_Void();
8204 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8205 PyObject
*resultobj
= 0;
8206 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8210 PyObject
*swig_obj
[1] ;
8212 if (!args
) SWIG_fail
;
8214 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8215 if (!SWIG_IsOK(res1
)) {
8216 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8218 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8219 result
= (int) ((arg1
)->dock_layer
);
8220 resultobj
= SWIG_From_int(static_cast< int >(result
));
8227 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8228 PyObject
*resultobj
= 0;
8229 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8235 PyObject
*swig_obj
[2] ;
8237 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
8238 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8239 if (!SWIG_IsOK(res1
)) {
8240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8242 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8243 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8244 if (!SWIG_IsOK(ecode2
)) {
8245 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
8247 arg2
= static_cast< int >(val2
);
8248 if (arg1
) (arg1
)->dock_row
= arg2
;
8250 resultobj
= SWIG_Py_Void();
8257 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8258 PyObject
*resultobj
= 0;
8259 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8263 PyObject
*swig_obj
[1] ;
8265 if (!args
) SWIG_fail
;
8267 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8268 if (!SWIG_IsOK(res1
)) {
8269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8271 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8272 result
= (int) ((arg1
)->dock_row
);
8273 resultobj
= SWIG_From_int(static_cast< int >(result
));
8280 SWIGINTERN PyObject
*_wrap_DockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8281 PyObject
*resultobj
= 0;
8282 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8288 PyObject
*swig_obj
[2] ;
8290 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
8291 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8292 if (!SWIG_IsOK(res1
)) {
8293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8295 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8296 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8297 if (!SWIG_IsOK(ecode2
)) {
8298 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
8300 arg2
= static_cast< int >(val2
);
8301 if (arg1
) (arg1
)->size
= arg2
;
8303 resultobj
= SWIG_Py_Void();
8310 SWIGINTERN PyObject
*_wrap_DockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8311 PyObject
*resultobj
= 0;
8312 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8316 PyObject
*swig_obj
[1] ;
8318 if (!args
) SWIG_fail
;
8320 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8321 if (!SWIG_IsOK(res1
)) {
8322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8324 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8325 result
= (int) ((arg1
)->size
);
8326 resultobj
= SWIG_From_int(static_cast< int >(result
));
8333 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8334 PyObject
*resultobj
= 0;
8335 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8341 PyObject
*swig_obj
[2] ;
8343 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
8344 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8345 if (!SWIG_IsOK(res1
)) {
8346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8348 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8349 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8350 if (!SWIG_IsOK(ecode2
)) {
8351 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
8353 arg2
= static_cast< int >(val2
);
8354 if (arg1
) (arg1
)->min_size
= arg2
;
8356 resultobj
= SWIG_Py_Void();
8363 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8364 PyObject
*resultobj
= 0;
8365 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8369 PyObject
*swig_obj
[1] ;
8371 if (!args
) SWIG_fail
;
8373 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8374 if (!SWIG_IsOK(res1
)) {
8375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8377 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8378 result
= (int) ((arg1
)->min_size
);
8379 resultobj
= SWIG_From_int(static_cast< int >(result
));
8386 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8387 PyObject
*resultobj
= 0;
8388 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8394 PyObject
*swig_obj
[2] ;
8396 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
8397 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8398 if (!SWIG_IsOK(res1
)) {
8399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8401 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8402 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8403 if (!SWIG_IsOK(ecode2
)) {
8404 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
8406 arg2
= static_cast< bool >(val2
);
8407 if (arg1
) (arg1
)->resizable
= arg2
;
8409 resultobj
= SWIG_Py_Void();
8416 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8417 PyObject
*resultobj
= 0;
8418 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8422 PyObject
*swig_obj
[1] ;
8424 if (!args
) SWIG_fail
;
8426 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8427 if (!SWIG_IsOK(res1
)) {
8428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8430 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8431 result
= (bool) ((arg1
)->resizable
);
8433 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8441 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8442 PyObject
*resultobj
= 0;
8443 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8449 PyObject
*swig_obj
[2] ;
8451 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
8452 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8453 if (!SWIG_IsOK(res1
)) {
8454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8456 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8457 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8458 if (!SWIG_IsOK(ecode2
)) {
8459 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
8461 arg2
= static_cast< bool >(val2
);
8462 if (arg1
) (arg1
)->toolbar
= arg2
;
8464 resultobj
= SWIG_Py_Void();
8471 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8472 PyObject
*resultobj
= 0;
8473 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8477 PyObject
*swig_obj
[1] ;
8479 if (!args
) SWIG_fail
;
8481 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8482 if (!SWIG_IsOK(res1
)) {
8483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8485 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8486 result
= (bool) ((arg1
)->toolbar
);
8488 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8496 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8497 PyObject
*resultobj
= 0;
8498 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8504 PyObject
*swig_obj
[2] ;
8506 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
8507 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8508 if (!SWIG_IsOK(res1
)) {
8509 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8511 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8512 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8513 if (!SWIG_IsOK(ecode2
)) {
8514 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
8516 arg2
= static_cast< bool >(val2
);
8517 if (arg1
) (arg1
)->fixed
= arg2
;
8519 resultobj
= SWIG_Py_Void();
8526 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8527 PyObject
*resultobj
= 0;
8528 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8532 PyObject
*swig_obj
[1] ;
8534 if (!args
) SWIG_fail
;
8536 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8537 if (!SWIG_IsOK(res1
)) {
8538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8540 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8541 result
= (bool) ((arg1
)->fixed
);
8543 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8551 SWIGINTERN PyObject
*DockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8553 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8554 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockInfo
, SWIG_NewClientData(obj
));
8555 return SWIG_Py_Void();
8558 SWIGINTERN PyObject
*DockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8559 return SWIG_Python_InitShadowInstance(args
);
8562 SWIGINTERN PyObject
*_wrap_DockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8563 PyObject
*resultobj
= 0;
8564 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8570 PyObject
*swig_obj
[2] ;
8572 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
8573 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8574 if (!SWIG_IsOK(res1
)) {
8575 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8577 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8578 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8579 if (!SWIG_IsOK(ecode2
)) {
8580 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
8582 arg2
= static_cast< int >(val2
);
8583 if (arg1
) (arg1
)->type
= arg2
;
8585 resultobj
= SWIG_Py_Void();
8592 SWIGINTERN PyObject
*_wrap_DockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8593 PyObject
*resultobj
= 0;
8594 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8598 PyObject
*swig_obj
[1] ;
8600 if (!args
) SWIG_fail
;
8602 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8603 if (!SWIG_IsOK(res1
)) {
8604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8606 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8607 result
= (int) ((arg1
)->type
);
8608 resultobj
= SWIG_From_int(static_cast< int >(result
));
8615 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8616 PyObject
*resultobj
= 0;
8617 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8623 PyObject
*swig_obj
[2] ;
8625 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
8626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8627 if (!SWIG_IsOK(res1
)) {
8628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8630 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8631 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8632 if (!SWIG_IsOK(ecode2
)) {
8633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
8635 arg2
= static_cast< int >(val2
);
8636 if (arg1
) (arg1
)->orientation
= arg2
;
8638 resultobj
= SWIG_Py_Void();
8645 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8646 PyObject
*resultobj
= 0;
8647 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8651 PyObject
*swig_obj
[1] ;
8653 if (!args
) SWIG_fail
;
8655 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8656 if (!SWIG_IsOK(res1
)) {
8657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8659 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8660 result
= (int) ((arg1
)->orientation
);
8661 resultobj
= SWIG_From_int(static_cast< int >(result
));
8668 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8669 PyObject
*resultobj
= 0;
8670 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8671 wxDockInfo
*arg2
= (wxDockInfo
*) 0 ;
8676 PyObject
*swig_obj
[2] ;
8678 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
8679 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8680 if (!SWIG_IsOK(res1
)) {
8681 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8683 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8684 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_DISOWN
| 0 );
8685 if (!SWIG_IsOK(res2
)) {
8686 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_dock_set" "', expected argument " "2"" of type '" "wxDockInfo *""'");
8688 arg2
= reinterpret_cast< wxDockInfo
* >(argp2
);
8689 if (arg1
) (arg1
)->dock
= arg2
;
8691 resultobj
= SWIG_Py_Void();
8698 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8699 PyObject
*resultobj
= 0;
8700 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8701 wxDockInfo
*result
= 0 ;
8704 PyObject
*swig_obj
[1] ;
8706 if (!args
) SWIG_fail
;
8708 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8709 if (!SWIG_IsOK(res1
)) {
8710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8712 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8713 result
= (wxDockInfo
*) ((arg1
)->dock
);
8714 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8721 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8722 PyObject
*resultobj
= 0;
8723 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8724 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
8729 PyObject
*swig_obj
[2] ;
8731 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
8732 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8733 if (!SWIG_IsOK(res1
)) {
8734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8736 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8737 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
8738 if (!SWIG_IsOK(res2
)) {
8739 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
8741 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
8742 if (arg1
) (arg1
)->pane
= arg2
;
8744 resultobj
= SWIG_Py_Void();
8751 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8752 PyObject
*resultobj
= 0;
8753 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8754 wxPaneInfo
*result
= 0 ;
8757 PyObject
*swig_obj
[1] ;
8759 if (!args
) SWIG_fail
;
8761 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8762 if (!SWIG_IsOK(res1
)) {
8763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8765 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8766 result
= (wxPaneInfo
*) ((arg1
)->pane
);
8767 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8774 SWIGINTERN PyObject
*_wrap_DockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8775 PyObject
*resultobj
= 0;
8776 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8777 wxPaneButton
*arg2
= (wxPaneButton
*) 0 ;
8782 PyObject
*swig_obj
[2] ;
8784 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
8785 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8786 if (!SWIG_IsOK(res1
)) {
8787 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8789 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8790 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
8791 if (!SWIG_IsOK(res2
)) {
8792 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_button_set" "', expected argument " "2"" of type '" "wxPaneButton *""'");
8794 arg2
= reinterpret_cast< wxPaneButton
* >(argp2
);
8795 if (arg1
) (arg1
)->button
= arg2
;
8797 resultobj
= SWIG_Py_Void();
8804 SWIGINTERN PyObject
*_wrap_DockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8805 PyObject
*resultobj
= 0;
8806 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8807 wxPaneButton
*result
= 0 ;
8810 PyObject
*swig_obj
[1] ;
8812 if (!args
) SWIG_fail
;
8814 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8815 if (!SWIG_IsOK(res1
)) {
8816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8818 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8819 result
= (wxPaneButton
*) ((arg1
)->button
);
8820 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneButton
, 0 | 0 );
8827 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8828 PyObject
*resultobj
= 0;
8829 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8830 wxSizer
*arg2
= (wxSizer
*) 0 ;
8835 PyObject
*swig_obj
[2] ;
8837 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
8838 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8839 if (!SWIG_IsOK(res1
)) {
8840 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8842 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8843 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
8844 if (!SWIG_IsOK(res2
)) {
8845 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
8847 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
8848 if (arg1
) (arg1
)->cont_sizer
= arg2
;
8850 resultobj
= SWIG_Py_Void();
8857 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8858 PyObject
*resultobj
= 0;
8859 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8860 wxSizer
*result
= 0 ;
8863 PyObject
*swig_obj
[1] ;
8865 if (!args
) SWIG_fail
;
8867 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8868 if (!SWIG_IsOK(res1
)) {
8869 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8871 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8872 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
8874 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8882 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8883 PyObject
*resultobj
= 0;
8884 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8885 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
8890 PyObject
*swig_obj
[2] ;
8892 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
8893 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8894 if (!SWIG_IsOK(res1
)) {
8895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8897 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8898 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
8899 if (!SWIG_IsOK(res2
)) {
8900 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
8902 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
8903 if (arg1
) (arg1
)->sizer_item
= arg2
;
8905 resultobj
= SWIG_Py_Void();
8912 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8913 PyObject
*resultobj
= 0;
8914 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8915 wxSizerItem
*result
= 0 ;
8918 PyObject
*swig_obj
[1] ;
8920 if (!args
) SWIG_fail
;
8922 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8923 if (!SWIG_IsOK(res1
)) {
8924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8926 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8927 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
8928 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
8935 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8936 PyObject
*resultobj
= 0;
8937 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8938 wxRect
*arg2
= (wxRect
*) 0 ;
8943 PyObject
*swig_obj
[2] ;
8945 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
8946 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8947 if (!SWIG_IsOK(res1
)) {
8948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8950 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8951 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
8952 if (!SWIG_IsOK(res2
)) {
8953 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
8955 arg2
= reinterpret_cast< wxRect
* >(argp2
);
8956 if (arg1
) (arg1
)->rect
= *arg2
;
8958 resultobj
= SWIG_Py_Void();
8965 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8966 PyObject
*resultobj
= 0;
8967 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
8968 wxRect
*result
= 0 ;
8971 PyObject
*swig_obj
[1] ;
8973 if (!args
) SWIG_fail
;
8975 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
8976 if (!SWIG_IsOK(res1
)) {
8977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
8979 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
8980 result
= (wxRect
*)& ((arg1
)->rect
);
8981 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
8988 SWIGINTERN PyObject
*DockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8990 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8991 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockUIPart
, SWIG_NewClientData(obj
));
8992 return SWIG_Py_Void();
8995 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8996 PyObject
*resultobj
= 0;
8997 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9003 PyObject
*swig_obj
[2] ;
9005 if (!SWIG_Python_UnpackTuple(args
,"PaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
9006 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9007 if (!SWIG_IsOK(res1
)) {
9008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_set" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9010 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9011 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9012 if (!SWIG_IsOK(ecode2
)) {
9013 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
9015 arg2
= static_cast< int >(val2
);
9016 if (arg1
) (arg1
)->button_id
= arg2
;
9018 resultobj
= SWIG_Py_Void();
9025 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9026 PyObject
*resultobj
= 0;
9027 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9031 PyObject
*swig_obj
[1] ;
9033 if (!args
) SWIG_fail
;
9035 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9036 if (!SWIG_IsOK(res1
)) {
9037 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_get" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9039 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9040 result
= (int) ((arg1
)->button_id
);
9041 resultobj
= SWIG_From_int(static_cast< int >(result
));
9048 SWIGINTERN PyObject
*PaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9050 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9051 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneButton
, SWIG_NewClientData(obj
));
9052 return SWIG_Py_Void();
9055 SWIGINTERN PyObject
*_wrap_delete_DockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9056 PyObject
*resultobj
= 0;
9057 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9060 PyObject
*swig_obj
[1] ;
9062 if (!args
) SWIG_fail
;
9064 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
9065 if (!SWIG_IsOK(res1
)) {
9066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockArt" "', expected argument " "1"" of type '" "wxDockArt *""'");
9068 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9073 wxPyEndAllowThreads(__tstate
);
9074 if (PyErr_Occurred()) SWIG_fail
;
9076 resultobj
= SWIG_Py_Void();
9083 SWIGINTERN PyObject
*_wrap_DockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9084 PyObject
*resultobj
= 0;
9085 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9092 PyObject
* obj0
= 0 ;
9093 PyObject
* obj1
= 0 ;
9094 char * kwnames
[] = {
9095 (char *) "self",(char *) "id", NULL
9098 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9099 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9100 if (!SWIG_IsOK(res1
)) {
9101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9103 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9104 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9105 if (!SWIG_IsOK(ecode2
)) {
9106 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
9108 arg2
= static_cast< int >(val2
);
9110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9111 result
= (int)(arg1
)->GetMetric(arg2
);
9112 wxPyEndAllowThreads(__tstate
);
9113 if (PyErr_Occurred()) SWIG_fail
;
9115 resultobj
= SWIG_From_int(static_cast< int >(result
));
9122 SWIGINTERN PyObject
*_wrap_DockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9123 PyObject
*resultobj
= 0;
9124 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9133 PyObject
* obj0
= 0 ;
9134 PyObject
* obj1
= 0 ;
9135 PyObject
* obj2
= 0 ;
9136 char * kwnames
[] = {
9137 (char *) "self",(char *) "id",(char *) "new_val", NULL
9140 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9141 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9142 if (!SWIG_IsOK(res1
)) {
9143 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
9145 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9146 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9147 if (!SWIG_IsOK(ecode2
)) {
9148 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
9150 arg2
= static_cast< int >(val2
);
9151 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9152 if (!SWIG_IsOK(ecode3
)) {
9153 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
9155 arg3
= static_cast< int >(val3
);
9157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9158 (arg1
)->SetMetric(arg2
,arg3
);
9159 wxPyEndAllowThreads(__tstate
);
9160 if (PyErr_Occurred()) SWIG_fail
;
9162 resultobj
= SWIG_Py_Void();
9169 SWIGINTERN PyObject
*_wrap_DockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9170 PyObject
*resultobj
= 0;
9171 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9180 PyObject
* obj0
= 0 ;
9181 PyObject
* obj1
= 0 ;
9182 PyObject
* obj2
= 0 ;
9183 char * kwnames
[] = {
9184 (char *) "self",(char *) "id",(char *) "font", NULL
9187 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9188 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9189 if (!SWIG_IsOK(res1
)) {
9190 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
9192 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9193 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9194 if (!SWIG_IsOK(ecode2
)) {
9195 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
9197 arg2
= static_cast< int >(val2
);
9198 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
9199 if (!SWIG_IsOK(res3
)) {
9200 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9203 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
9205 arg3
= reinterpret_cast< wxFont
* >(argp3
);
9207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9208 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
9209 wxPyEndAllowThreads(__tstate
);
9210 if (PyErr_Occurred()) SWIG_fail
;
9212 resultobj
= SWIG_Py_Void();
9219 SWIGINTERN PyObject
*_wrap_DockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9220 PyObject
*resultobj
= 0;
9221 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9228 PyObject
* obj0
= 0 ;
9229 PyObject
* obj1
= 0 ;
9230 char * kwnames
[] = {
9231 (char *) "self",(char *) "id", NULL
9234 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9235 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9236 if (!SWIG_IsOK(res1
)) {
9237 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
9239 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9240 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9241 if (!SWIG_IsOK(ecode2
)) {
9242 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
9244 arg2
= static_cast< int >(val2
);
9246 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9247 result
= (arg1
)->GetFont(arg2
);
9248 wxPyEndAllowThreads(__tstate
);
9249 if (PyErr_Occurred()) SWIG_fail
;
9251 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
9258 SWIGINTERN PyObject
*_wrap_DockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9259 PyObject
*resultobj
= 0;
9260 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9267 PyObject
* obj0
= 0 ;
9268 PyObject
* obj1
= 0 ;
9269 char * kwnames
[] = {
9270 (char *) "self",(char *) "id", NULL
9273 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9274 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9275 if (!SWIG_IsOK(res1
)) {
9276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
9278 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9279 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9280 if (!SWIG_IsOK(ecode2
)) {
9281 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
9283 arg2
= static_cast< int >(val2
);
9285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9286 result
= (arg1
)->GetColour(arg2
);
9287 wxPyEndAllowThreads(__tstate
);
9288 if (PyErr_Occurred()) SWIG_fail
;
9290 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
9297 SWIGINTERN PyObject
*_wrap_DockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9298 PyObject
*resultobj
= 0;
9299 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9308 PyObject
* obj0
= 0 ;
9309 PyObject
* obj1
= 0 ;
9310 PyObject
* obj2
= 0 ;
9311 char * kwnames
[] = {
9312 (char *) "self",(char *) "id",(char *) "colour", NULL
9315 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9316 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9317 if (!SWIG_IsOK(res1
)) {
9318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
9320 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9321 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9322 if (!SWIG_IsOK(ecode2
)) {
9323 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
9325 arg2
= static_cast< int >(val2
);
9326 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
9327 if (!SWIG_IsOK(res3
)) {
9328 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
9331 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
9333 arg3
= reinterpret_cast< wxColor
* >(argp3
);
9335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9336 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
9337 wxPyEndAllowThreads(__tstate
);
9338 if (PyErr_Occurred()) SWIG_fail
;
9340 resultobj
= SWIG_Py_Void();
9347 SWIGINTERN PyObject
*_wrap_DockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9348 PyObject
*resultobj
= 0;
9349 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9356 PyObject
* obj0
= 0 ;
9357 PyObject
* obj1
= 0 ;
9358 char * kwnames
[] = {
9359 (char *) "self",(char *) "id", NULL
9362 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9363 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9364 if (!SWIG_IsOK(res1
)) {
9365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
9367 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9368 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9369 if (!SWIG_IsOK(ecode2
)) {
9370 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
9372 arg2
= static_cast< int >(val2
);
9374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9375 result
= (arg1
)->GetColor(arg2
);
9376 wxPyEndAllowThreads(__tstate
);
9377 if (PyErr_Occurred()) SWIG_fail
;
9379 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
9386 SWIGINTERN PyObject
*_wrap_DockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9387 PyObject
*resultobj
= 0;
9388 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9390 wxColour
*arg3
= 0 ;
9396 PyObject
* obj0
= 0 ;
9397 PyObject
* obj1
= 0 ;
9398 PyObject
* obj2
= 0 ;
9399 char * kwnames
[] = {
9400 (char *) "self",(char *) "id",(char *) "color", NULL
9403 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9404 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9405 if (!SWIG_IsOK(res1
)) {
9406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
9408 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9409 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9410 if (!SWIG_IsOK(ecode2
)) {
9411 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
9413 arg2
= static_cast< int >(val2
);
9416 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
9419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9420 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
9421 wxPyEndAllowThreads(__tstate
);
9422 if (PyErr_Occurred()) SWIG_fail
;
9424 resultobj
= SWIG_Py_Void();
9431 SWIGINTERN PyObject
*_wrap_DockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9432 PyObject
*resultobj
= 0;
9433 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9444 PyObject
* obj0
= 0 ;
9445 PyObject
* obj1
= 0 ;
9446 PyObject
* obj2
= 0 ;
9447 PyObject
* obj3
= 0 ;
9448 char * kwnames
[] = {
9449 (char *) "self",(char *) "dc",(char *) "orientation",(char *) "rect", NULL
9452 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9453 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9454 if (!SWIG_IsOK(res1
)) {
9455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawSash" "', expected argument " "1"" of type '" "wxDockArt *""'");
9457 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9458 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9459 if (!SWIG_IsOK(res2
)) {
9460 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
9463 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
9465 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9466 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9467 if (!SWIG_IsOK(ecode3
)) {
9468 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawSash" "', expected argument " "3"" of type '" "int""'");
9470 arg3
= static_cast< int >(val3
);
9473 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9477 (arg1
)->DrawSash(*arg2
,arg3
,(wxRect
const &)*arg4
);
9478 wxPyEndAllowThreads(__tstate
);
9479 if (PyErr_Occurred()) SWIG_fail
;
9481 resultobj
= SWIG_Py_Void();
9488 SWIGINTERN PyObject
*_wrap_DockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9489 PyObject
*resultobj
= 0;
9490 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9501 PyObject
* obj0
= 0 ;
9502 PyObject
* obj1
= 0 ;
9503 PyObject
* obj2
= 0 ;
9504 PyObject
* obj3
= 0 ;
9505 char * kwnames
[] = {
9506 (char *) "self",(char *) "dc",(char *) "orientation",(char *) "rect", NULL
9509 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9510 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9511 if (!SWIG_IsOK(res1
)) {
9512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBackground" "', expected argument " "1"" of type '" "wxDockArt *""'");
9514 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9515 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9516 if (!SWIG_IsOK(res2
)) {
9517 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
9520 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
9522 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9523 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9524 if (!SWIG_IsOK(ecode3
)) {
9525 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawBackground" "', expected argument " "3"" of type '" "int""'");
9527 arg3
= static_cast< int >(val3
);
9530 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9533 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9534 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
9535 wxPyEndAllowThreads(__tstate
);
9536 if (PyErr_Occurred()) SWIG_fail
;
9538 resultobj
= SWIG_Py_Void();
9545 SWIGINTERN PyObject
*_wrap_DockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9546 PyObject
*resultobj
= 0;
9547 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9549 wxString
*arg3
= 0 ;
9551 wxPaneInfo
*arg5
= 0 ;
9556 bool temp3
= false ;
9560 PyObject
* obj0
= 0 ;
9561 PyObject
* obj1
= 0 ;
9562 PyObject
* obj2
= 0 ;
9563 PyObject
* obj3
= 0 ;
9564 PyObject
* obj4
= 0 ;
9565 char * kwnames
[] = {
9566 (char *) "self",(char *) "dc",(char *) "text",(char *) "rect",(char *) "pane", NULL
9569 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
9570 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9571 if (!SWIG_IsOK(res1
)) {
9572 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawCaption" "', expected argument " "1"" of type '" "wxDockArt *""'");
9574 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9575 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9576 if (!SWIG_IsOK(res2
)) {
9577 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
9580 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
9582 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9584 arg3
= wxString_in_helper(obj2
);
9585 if (arg3
== NULL
) SWIG_fail
;
9590 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
9592 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
9593 if (!SWIG_IsOK(res5
)) {
9594 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawCaption" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
9597 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
9599 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
9601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9602 (arg1
)->DrawCaption(*arg2
,(wxString
const &)*arg3
,(wxRect
const &)*arg4
,*arg5
);
9603 wxPyEndAllowThreads(__tstate
);
9604 if (PyErr_Occurred()) SWIG_fail
;
9606 resultobj
= SWIG_Py_Void();
9621 SWIGINTERN PyObject
*_wrap_DockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9622 PyObject
*resultobj
= 0;
9623 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9626 wxPaneInfo
*arg4
= 0 ;
9634 PyObject
* obj0
= 0 ;
9635 PyObject
* obj1
= 0 ;
9636 PyObject
* obj2
= 0 ;
9637 PyObject
* obj3
= 0 ;
9638 char * kwnames
[] = {
9639 (char *) "self",(char *) "dc",(char *) "rect",(char *) "pane", NULL
9642 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9643 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9644 if (!SWIG_IsOK(res1
)) {
9645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawGripper" "', expected argument " "1"" of type '" "wxDockArt *""'");
9647 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9648 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9649 if (!SWIG_IsOK(res2
)) {
9650 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
9653 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
9655 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9658 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
9660 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxPaneInfo
, 0 );
9661 if (!SWIG_IsOK(res4
)) {
9662 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DockArt_DrawGripper" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9665 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9667 arg4
= reinterpret_cast< wxPaneInfo
* >(argp4
);
9669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9670 (arg1
)->DrawGripper(*arg2
,(wxRect
const &)*arg3
,*arg4
);
9671 wxPyEndAllowThreads(__tstate
);
9672 if (PyErr_Occurred()) SWIG_fail
;
9674 resultobj
= SWIG_Py_Void();
9681 SWIGINTERN PyObject
*_wrap_DockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9682 PyObject
*resultobj
= 0;
9683 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9686 wxPaneInfo
*arg4
= 0 ;
9694 PyObject
* obj0
= 0 ;
9695 PyObject
* obj1
= 0 ;
9696 PyObject
* obj2
= 0 ;
9697 PyObject
* obj3
= 0 ;
9698 char * kwnames
[] = {
9699 (char *) "self",(char *) "dc",(char *) "rect",(char *) "pane", NULL
9702 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9703 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9704 if (!SWIG_IsOK(res1
)) {
9705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBorder" "', expected argument " "1"" of type '" "wxDockArt *""'");
9707 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9708 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9709 if (!SWIG_IsOK(res2
)) {
9710 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
9713 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
9715 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9718 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
9720 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxPaneInfo
, 0 );
9721 if (!SWIG_IsOK(res4
)) {
9722 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DockArt_DrawBorder" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9725 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "4"" of type '" "wxPaneInfo &""'");
9727 arg4
= reinterpret_cast< wxPaneInfo
* >(argp4
);
9729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9730 (arg1
)->DrawBorder(*arg2
,(wxRect
const &)*arg3
,*arg4
);
9731 wxPyEndAllowThreads(__tstate
);
9732 if (PyErr_Occurred()) SWIG_fail
;
9734 resultobj
= SWIG_Py_Void();
9741 SWIGINTERN PyObject
*_wrap_DockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9742 PyObject
*resultobj
= 0;
9743 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
9748 wxPaneInfo
*arg6
= 0 ;
9760 PyObject
* obj0
= 0 ;
9761 PyObject
* obj1
= 0 ;
9762 PyObject
* obj2
= 0 ;
9763 PyObject
* obj3
= 0 ;
9764 PyObject
* obj4
= 0 ;
9765 PyObject
* obj5
= 0 ;
9766 char * kwnames
[] = {
9767 (char *) "self",(char *) "dc",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
9770 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:DockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
9771 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
9772 if (!SWIG_IsOK(res1
)) {
9773 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxDockArt *""'");
9775 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
9776 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
9777 if (!SWIG_IsOK(res2
)) {
9778 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
9781 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
9783 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9784 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9785 if (!SWIG_IsOK(ecode3
)) {
9786 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "3"" of type '" "int""'");
9788 arg3
= static_cast< int >(val3
);
9789 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9790 if (!SWIG_IsOK(ecode4
)) {
9791 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
9793 arg4
= static_cast< int >(val4
);
9796 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
9798 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxPaneInfo
, 0 );
9799 if (!SWIG_IsOK(res6
)) {
9800 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
9803 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
9805 arg6
= reinterpret_cast< wxPaneInfo
* >(argp6
);
9807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9808 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
,*arg6
);
9809 wxPyEndAllowThreads(__tstate
);
9810 if (PyErr_Occurred()) SWIG_fail
;
9812 resultobj
= SWIG_Py_Void();
9819 SWIGINTERN PyObject
*DockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9821 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9822 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockArt
, SWIG_NewClientData(obj
));
9823 return SWIG_Py_Void();
9826 SWIGINTERN PyObject
*_wrap_new_DefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9827 PyObject
*resultobj
= 0;
9828 wxDefaultDockArt
*result
= 0 ;
9830 if (!SWIG_Python_UnpackTuple(args
,"new_DefaultDockArt",0,0,0)) SWIG_fail
;
9832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9833 result
= (wxDefaultDockArt
*)new wxDefaultDockArt();
9834 wxPyEndAllowThreads(__tstate
);
9835 if (PyErr_Occurred()) SWIG_fail
;
9837 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
9844 SWIGINTERN PyObject
*DefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9846 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9847 SWIG_TypeNewClientData(SWIGTYPE_p_wxDefaultDockArt
, SWIG_NewClientData(obj
));
9848 return SWIG_Py_Void();
9851 SWIGINTERN PyObject
*DefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9852 return SWIG_Python_InitShadowInstance(args
);
9855 SWIGINTERN PyObject
*_wrap_new_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9856 PyObject
*resultobj
= 0;
9857 wxWindow
*arg1
= (wxWindow
*) 0 ;
9858 wxFrameManager
*arg2
= (wxFrameManager
*) 0 ;
9859 wxPaneInfo
*arg3
= 0 ;
9860 int arg4
= (int) wxID_ANY
;
9861 wxFloatingPane
*result
= 0 ;
9870 PyObject
* obj0
= 0 ;
9871 PyObject
* obj1
= 0 ;
9872 PyObject
* obj2
= 0 ;
9873 PyObject
* obj3
= 0 ;
9874 char * kwnames
[] = {
9875 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id", NULL
9878 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FloatingPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9879 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9880 if (!SWIG_IsOK(res1
)) {
9881 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FloatingPane" "', expected argument " "1"" of type '" "wxWindow *""'");
9883 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
9884 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
9885 if (!SWIG_IsOK(res2
)) {
9886 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FloatingPane" "', expected argument " "2"" of type '" "wxFrameManager *""'");
9888 arg2
= reinterpret_cast< wxFrameManager
* >(argp2
);
9889 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
9890 if (!SWIG_IsOK(res3
)) {
9891 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
9894 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
9896 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
9898 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9899 if (!SWIG_IsOK(ecode4
)) {
9900 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FloatingPane" "', expected argument " "4"" of type '" "int""'");
9902 arg4
= static_cast< int >(val4
);
9905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9906 result
= (wxFloatingPane
*)new wxFloatingPane(arg1
,arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
9907 wxPyEndAllowThreads(__tstate
);
9908 if (PyErr_Occurred()) SWIG_fail
;
9910 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_NEW
| 0 );
9917 SWIGINTERN PyObject
*_wrap_delete_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9918 PyObject
*resultobj
= 0;
9919 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
9922 PyObject
*swig_obj
[1] ;
9924 if (!args
) SWIG_fail
;
9926 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_DISOWN
| 0 );
9927 if (!SWIG_IsOK(res1
)) {
9928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FloatingPane" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
9930 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
9932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9935 wxPyEndAllowThreads(__tstate
);
9936 if (PyErr_Occurred()) SWIG_fail
;
9938 resultobj
= SWIG_Py_Void();
9945 SWIGINTERN PyObject
*_wrap_FloatingPane_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9946 PyObject
*resultobj
= 0;
9947 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
9948 wxPaneInfo
*arg2
= 0 ;
9953 PyObject
* obj0
= 0 ;
9954 PyObject
* obj1
= 0 ;
9955 char * kwnames
[] = {
9956 (char *) "self",(char *) "pane", NULL
9959 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FloatingPane_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9960 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFloatingPane
, 0 | 0 );
9961 if (!SWIG_IsOK(res1
)) {
9962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
9964 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
9965 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
9966 if (!SWIG_IsOK(res2
)) {
9967 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
9970 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
9972 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
9974 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9975 (arg1
)->SetPaneWindow((wxPaneInfo
const &)*arg2
);
9976 wxPyEndAllowThreads(__tstate
);
9977 if (PyErr_Occurred()) SWIG_fail
;
9979 resultobj
= SWIG_Py_Void();
9986 SWIGINTERN PyObject
*FloatingPane_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9988 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9989 SWIG_TypeNewClientData(SWIGTYPE_p_wxFloatingPane
, SWIG_NewClientData(obj
));
9990 return SWIG_Py_Void();
9993 SWIGINTERN PyObject
*FloatingPane_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9994 return SWIG_Python_InitShadowInstance(args
);
9997 SWIGINTERN PyObject
*PyDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9999 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10000 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDockArt
, SWIG_NewClientData(obj
));
10001 return SWIG_Py_Void();
10004 static PyMethodDef SwigMethods
[] = {
10005 { (char *)"new_PaneInfo", (PyCFunction
)_wrap_new_PaneInfo
, METH_NOARGS
, NULL
},
10006 { (char *)"delete_PaneInfo", (PyCFunction
)_wrap_delete_PaneInfo
, METH_O
, NULL
},
10007 { (char *)"PaneInfo_IsOk", (PyCFunction
)_wrap_PaneInfo_IsOk
, METH_O
, NULL
},
10008 { (char *)"PaneInfo_IsFixed", (PyCFunction
)_wrap_PaneInfo_IsFixed
, METH_O
, NULL
},
10009 { (char *)"PaneInfo_IsResizable", (PyCFunction
)_wrap_PaneInfo_IsResizable
, METH_O
, NULL
},
10010 { (char *)"PaneInfo_IsShown", (PyCFunction
)_wrap_PaneInfo_IsShown
, METH_O
, NULL
},
10011 { (char *)"PaneInfo_IsFloating", (PyCFunction
)_wrap_PaneInfo_IsFloating
, METH_O
, NULL
},
10012 { (char *)"PaneInfo_IsDocked", (PyCFunction
)_wrap_PaneInfo_IsDocked
, METH_O
, NULL
},
10013 { (char *)"PaneInfo_IsToolbar", (PyCFunction
)_wrap_PaneInfo_IsToolbar
, METH_O
, NULL
},
10014 { (char *)"PaneInfo_IsTopDockable", (PyCFunction
)_wrap_PaneInfo_IsTopDockable
, METH_O
, NULL
},
10015 { (char *)"PaneInfo_IsBottomDockable", (PyCFunction
)_wrap_PaneInfo_IsBottomDockable
, METH_O
, NULL
},
10016 { (char *)"PaneInfo_IsLeftDockable", (PyCFunction
)_wrap_PaneInfo_IsLeftDockable
, METH_O
, NULL
},
10017 { (char *)"PaneInfo_IsRightDockable", (PyCFunction
)_wrap_PaneInfo_IsRightDockable
, METH_O
, NULL
},
10018 { (char *)"PaneInfo_IsFloatable", (PyCFunction
)_wrap_PaneInfo_IsFloatable
, METH_O
, NULL
},
10019 { (char *)"PaneInfo_IsMovable", (PyCFunction
)_wrap_PaneInfo_IsMovable
, METH_O
, NULL
},
10020 { (char *)"PaneInfo_HasCaption", (PyCFunction
)_wrap_PaneInfo_HasCaption
, METH_O
, NULL
},
10021 { (char *)"PaneInfo_HasGripper", (PyCFunction
)_wrap_PaneInfo_HasGripper
, METH_O
, NULL
},
10022 { (char *)"PaneInfo_HasBorder", (PyCFunction
)_wrap_PaneInfo_HasBorder
, METH_O
, NULL
},
10023 { (char *)"PaneInfo_HasCloseButton", (PyCFunction
)_wrap_PaneInfo_HasCloseButton
, METH_O
, NULL
},
10024 { (char *)"PaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_PaneInfo_HasMaximizeButton
, METH_O
, NULL
},
10025 { (char *)"PaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_PaneInfo_HasMinimizeButton
, METH_O
, NULL
},
10026 { (char *)"PaneInfo_HasPinButton", (PyCFunction
)_wrap_PaneInfo_HasPinButton
, METH_O
, NULL
},
10027 { (char *)"PaneInfo_HasGripperTop", (PyCFunction
)_wrap_PaneInfo_HasGripperTop
, METH_O
, NULL
},
10028 { (char *)"PaneInfo_Window", (PyCFunction
) _wrap_PaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10029 { (char *)"PaneInfo_Name", (PyCFunction
) _wrap_PaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10030 { (char *)"PaneInfo_Caption", (PyCFunction
) _wrap_PaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10031 { (char *)"PaneInfo_Left", (PyCFunction
)_wrap_PaneInfo_Left
, METH_O
, NULL
},
10032 { (char *)"PaneInfo_Right", (PyCFunction
)_wrap_PaneInfo_Right
, METH_O
, NULL
},
10033 { (char *)"PaneInfo_Top", (PyCFunction
)_wrap_PaneInfo_Top
, METH_O
, NULL
},
10034 { (char *)"PaneInfo_Bottom", (PyCFunction
)_wrap_PaneInfo_Bottom
, METH_O
, NULL
},
10035 { (char *)"PaneInfo_Center", (PyCFunction
)_wrap_PaneInfo_Center
, METH_O
, NULL
},
10036 { (char *)"PaneInfo_Centre", (PyCFunction
)_wrap_PaneInfo_Centre
, METH_O
, NULL
},
10037 { (char *)"PaneInfo_Direction", (PyCFunction
) _wrap_PaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10038 { (char *)"PaneInfo_Layer", (PyCFunction
) _wrap_PaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10039 { (char *)"PaneInfo_Row", (PyCFunction
) _wrap_PaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10040 { (char *)"PaneInfo_Position", (PyCFunction
) _wrap_PaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10041 { (char *)"PaneInfo_BestSize", (PyCFunction
) _wrap_PaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10042 { (char *)"PaneInfo_MinSize", (PyCFunction
) _wrap_PaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10043 { (char *)"PaneInfo_MaxSize", (PyCFunction
) _wrap_PaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10044 { (char *)"PaneInfo_FloatingPosition", (PyCFunction
) _wrap_PaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10045 { (char *)"PaneInfo_FloatingSize", (PyCFunction
) _wrap_PaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10046 { (char *)"PaneInfo_Fixed", (PyCFunction
)_wrap_PaneInfo_Fixed
, METH_O
, NULL
},
10047 { (char *)"PaneInfo_Resizable", (PyCFunction
) _wrap_PaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10048 { (char *)"PaneInfo_Dock", (PyCFunction
)_wrap_PaneInfo_Dock
, METH_O
, NULL
},
10049 { (char *)"PaneInfo_Float", (PyCFunction
)_wrap_PaneInfo_Float
, METH_O
, NULL
},
10050 { (char *)"PaneInfo_Hide", (PyCFunction
)_wrap_PaneInfo_Hide
, METH_O
, NULL
},
10051 { (char *)"PaneInfo_Show", (PyCFunction
) _wrap_PaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10052 { (char *)"PaneInfo_CaptionVisible", (PyCFunction
) _wrap_PaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10053 { (char *)"PaneInfo_PaneBorder", (PyCFunction
) _wrap_PaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10054 { (char *)"PaneInfo_Gripper", (PyCFunction
) _wrap_PaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10055 { (char *)"PaneInfo_GripperTop", (PyCFunction
) _wrap_PaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10056 { (char *)"PaneInfo_CloseButton", (PyCFunction
) _wrap_PaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10057 { (char *)"PaneInfo_MaximizeButton", (PyCFunction
) _wrap_PaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10058 { (char *)"PaneInfo_MinimizeButton", (PyCFunction
) _wrap_PaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10059 { (char *)"PaneInfo_PinButton", (PyCFunction
) _wrap_PaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10060 { (char *)"PaneInfo_DestroyOnClose", (PyCFunction
) _wrap_PaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10061 { (char *)"PaneInfo_TopDockable", (PyCFunction
) _wrap_PaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10062 { (char *)"PaneInfo_BottomDockable", (PyCFunction
) _wrap_PaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10063 { (char *)"PaneInfo_LeftDockable", (PyCFunction
) _wrap_PaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10064 { (char *)"PaneInfo_RightDockable", (PyCFunction
) _wrap_PaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10065 { (char *)"PaneInfo_Floatable", (PyCFunction
) _wrap_PaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10066 { (char *)"PaneInfo_Movable", (PyCFunction
) _wrap_PaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10067 { (char *)"PaneInfo_Dockable", (PyCFunction
) _wrap_PaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10068 { (char *)"PaneInfo_DefaultPane", (PyCFunction
)_wrap_PaneInfo_DefaultPane
, METH_O
, NULL
},
10069 { (char *)"PaneInfo_CentrePane", (PyCFunction
)_wrap_PaneInfo_CentrePane
, METH_O
, NULL
},
10070 { (char *)"PaneInfo_CenterPane", (PyCFunction
)_wrap_PaneInfo_CenterPane
, METH_O
, NULL
},
10071 { (char *)"PaneInfo_ToolbarPane", (PyCFunction
)_wrap_PaneInfo_ToolbarPane
, METH_O
, NULL
},
10072 { (char *)"PaneInfo_SetFlag", (PyCFunction
) _wrap_PaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10073 { (char *)"PaneInfo_HasFlag", (PyCFunction
) _wrap_PaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10074 { (char *)"PaneInfo_name_set", _wrap_PaneInfo_name_set
, METH_VARARGS
, NULL
},
10075 { (char *)"PaneInfo_name_get", (PyCFunction
)_wrap_PaneInfo_name_get
, METH_O
, NULL
},
10076 { (char *)"PaneInfo_caption_set", _wrap_PaneInfo_caption_set
, METH_VARARGS
, NULL
},
10077 { (char *)"PaneInfo_caption_get", (PyCFunction
)_wrap_PaneInfo_caption_get
, METH_O
, NULL
},
10078 { (char *)"PaneInfo_window_set", _wrap_PaneInfo_window_set
, METH_VARARGS
, NULL
},
10079 { (char *)"PaneInfo_window_get", (PyCFunction
)_wrap_PaneInfo_window_get
, METH_O
, NULL
},
10080 { (char *)"PaneInfo_frame_set", _wrap_PaneInfo_frame_set
, METH_VARARGS
, NULL
},
10081 { (char *)"PaneInfo_frame_get", (PyCFunction
)_wrap_PaneInfo_frame_get
, METH_O
, NULL
},
10082 { (char *)"PaneInfo_state_set", _wrap_PaneInfo_state_set
, METH_VARARGS
, NULL
},
10083 { (char *)"PaneInfo_state_get", (PyCFunction
)_wrap_PaneInfo_state_get
, METH_O
, NULL
},
10084 { (char *)"PaneInfo_dock_direction_set", _wrap_PaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
10085 { (char *)"PaneInfo_dock_direction_get", (PyCFunction
)_wrap_PaneInfo_dock_direction_get
, METH_O
, NULL
},
10086 { (char *)"PaneInfo_dock_layer_set", _wrap_PaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
10087 { (char *)"PaneInfo_dock_layer_get", (PyCFunction
)_wrap_PaneInfo_dock_layer_get
, METH_O
, NULL
},
10088 { (char *)"PaneInfo_dock_row_set", _wrap_PaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
10089 { (char *)"PaneInfo_dock_row_get", (PyCFunction
)_wrap_PaneInfo_dock_row_get
, METH_O
, NULL
},
10090 { (char *)"PaneInfo_dock_pos_set", _wrap_PaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
10091 { (char *)"PaneInfo_dock_pos_get", (PyCFunction
)_wrap_PaneInfo_dock_pos_get
, METH_O
, NULL
},
10092 { (char *)"PaneInfo_best_size_set", _wrap_PaneInfo_best_size_set
, METH_VARARGS
, NULL
},
10093 { (char *)"PaneInfo_best_size_get", (PyCFunction
)_wrap_PaneInfo_best_size_get
, METH_O
, NULL
},
10094 { (char *)"PaneInfo_min_size_set", _wrap_PaneInfo_min_size_set
, METH_VARARGS
, NULL
},
10095 { (char *)"PaneInfo_min_size_get", (PyCFunction
)_wrap_PaneInfo_min_size_get
, METH_O
, NULL
},
10096 { (char *)"PaneInfo_max_size_set", _wrap_PaneInfo_max_size_set
, METH_VARARGS
, NULL
},
10097 { (char *)"PaneInfo_max_size_get", (PyCFunction
)_wrap_PaneInfo_max_size_get
, METH_O
, NULL
},
10098 { (char *)"PaneInfo_floating_pos_set", _wrap_PaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
10099 { (char *)"PaneInfo_floating_pos_get", (PyCFunction
)_wrap_PaneInfo_floating_pos_get
, METH_O
, NULL
},
10100 { (char *)"PaneInfo_floating_size_set", _wrap_PaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
10101 { (char *)"PaneInfo_floating_size_get", (PyCFunction
)_wrap_PaneInfo_floating_size_get
, METH_O
, NULL
},
10102 { (char *)"PaneInfo_dock_proportion_set", _wrap_PaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
10103 { (char *)"PaneInfo_dock_proportion_get", (PyCFunction
)_wrap_PaneInfo_dock_proportion_get
, METH_O
, NULL
},
10104 { (char *)"PaneInfo_buttons_set", _wrap_PaneInfo_buttons_set
, METH_VARARGS
, NULL
},
10105 { (char *)"PaneInfo_buttons_get", (PyCFunction
)_wrap_PaneInfo_buttons_get
, METH_O
, NULL
},
10106 { (char *)"PaneInfo_rect_set", _wrap_PaneInfo_rect_set
, METH_VARARGS
, NULL
},
10107 { (char *)"PaneInfo_rect_get", (PyCFunction
)_wrap_PaneInfo_rect_get
, METH_O
, NULL
},
10108 { (char *)"PaneInfo_swigregister", PaneInfo_swigregister
, METH_VARARGS
, NULL
},
10109 { (char *)"PaneInfo_swiginit", PaneInfo_swiginit
, METH_VARARGS
, NULL
},
10110 { (char *)"new_FrameManager", (PyCFunction
) _wrap_new_FrameManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10111 { (char *)"delete_FrameManager", (PyCFunction
)_wrap_delete_FrameManager
, METH_O
, NULL
},
10112 { (char *)"FrameManager_UnInit", (PyCFunction
)_wrap_FrameManager_UnInit
, METH_O
, NULL
},
10113 { (char *)"FrameManager_SetFlags", (PyCFunction
) _wrap_FrameManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10114 { (char *)"FrameManager_GetFlags", (PyCFunction
)_wrap_FrameManager_GetFlags
, METH_O
, NULL
},
10115 { (char *)"FrameManager_SetFrame", (PyCFunction
) _wrap_FrameManager_SetFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10116 { (char *)"FrameManager_GetFrame", (PyCFunction
)_wrap_FrameManager_GetFrame
, METH_O
, NULL
},
10117 { (char *)"FrameManager_SetArtProvider", (PyCFunction
) _wrap_FrameManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10118 { (char *)"FrameManager_GetArtProvider", (PyCFunction
)_wrap_FrameManager_GetArtProvider
, METH_O
, NULL
},
10119 { (char *)"FrameManager__GetPaneByWidget", (PyCFunction
) _wrap_FrameManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10120 { (char *)"FrameManager__GetPaneByName", (PyCFunction
) _wrap_FrameManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10121 { (char *)"FrameManager_GetAllPanes", (PyCFunction
)_wrap_FrameManager_GetAllPanes
, METH_O
, NULL
},
10122 { (char *)"FrameManager__AddPane1", (PyCFunction
) _wrap_FrameManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10123 { (char *)"FrameManager__AddPane2", (PyCFunction
) _wrap_FrameManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10124 { (char *)"FrameManager_InsertPane", (PyCFunction
) _wrap_FrameManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10125 { (char *)"FrameManager_DetachPane", (PyCFunction
) _wrap_FrameManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10126 { (char *)"FrameManager_SavePerspective", (PyCFunction
)_wrap_FrameManager_SavePerspective
, METH_O
, NULL
},
10127 { (char *)"FrameManager_LoadPerspective", (PyCFunction
) _wrap_FrameManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10128 { (char *)"FrameManager_Update", (PyCFunction
)_wrap_FrameManager_Update
, METH_O
, NULL
},
10129 { (char *)"FrameManager_swigregister", FrameManager_swigregister
, METH_VARARGS
, NULL
},
10130 { (char *)"FrameManager_swiginit", FrameManager_swiginit
, METH_VARARGS
, NULL
},
10131 { (char *)"new_FrameManagerEvent", (PyCFunction
) _wrap_new_FrameManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10132 { (char *)"FrameManagerEvent_Clone", (PyCFunction
)_wrap_FrameManagerEvent_Clone
, METH_O
, NULL
},
10133 { (char *)"FrameManagerEvent_SetPane", (PyCFunction
) _wrap_FrameManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10134 { (char *)"FrameManagerEvent_SetButton", (PyCFunction
) _wrap_FrameManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10135 { (char *)"FrameManagerEvent_GetPane", (PyCFunction
)_wrap_FrameManagerEvent_GetPane
, METH_O
, NULL
},
10136 { (char *)"FrameManagerEvent_GetButton", (PyCFunction
)_wrap_FrameManagerEvent_GetButton
, METH_O
, NULL
},
10137 { (char *)"FrameManagerEvent_Veto", (PyCFunction
) _wrap_FrameManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10138 { (char *)"FrameManagerEvent_GetVeto", (PyCFunction
)_wrap_FrameManagerEvent_GetVeto
, METH_O
, NULL
},
10139 { (char *)"FrameManagerEvent_SetCanVeto", (PyCFunction
) _wrap_FrameManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10140 { (char *)"FrameManagerEvent_CanVeto", (PyCFunction
)_wrap_FrameManagerEvent_CanVeto
, METH_O
, NULL
},
10141 { (char *)"FrameManagerEvent_pane_set", _wrap_FrameManagerEvent_pane_set
, METH_VARARGS
, NULL
},
10142 { (char *)"FrameManagerEvent_pane_get", (PyCFunction
)_wrap_FrameManagerEvent_pane_get
, METH_O
, NULL
},
10143 { (char *)"FrameManagerEvent_button_set", _wrap_FrameManagerEvent_button_set
, METH_VARARGS
, NULL
},
10144 { (char *)"FrameManagerEvent_button_get", (PyCFunction
)_wrap_FrameManagerEvent_button_get
, METH_O
, NULL
},
10145 { (char *)"FrameManagerEvent_veto_flag_set", _wrap_FrameManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
10146 { (char *)"FrameManagerEvent_veto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_veto_flag_get
, METH_O
, NULL
},
10147 { (char *)"FrameManagerEvent_canveto_flag_set", _wrap_FrameManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
10148 { (char *)"FrameManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_canveto_flag_get
, METH_O
, NULL
},
10149 { (char *)"FrameManagerEvent_swigregister", FrameManagerEvent_swigregister
, METH_VARARGS
, NULL
},
10150 { (char *)"FrameManagerEvent_swiginit", FrameManagerEvent_swiginit
, METH_VARARGS
, NULL
},
10151 { (char *)"new_DockInfo", (PyCFunction
)_wrap_new_DockInfo
, METH_NOARGS
, NULL
},
10152 { (char *)"DockInfo_IsOk", (PyCFunction
)_wrap_DockInfo_IsOk
, METH_O
, NULL
},
10153 { (char *)"DockInfo_IsHorizontal", (PyCFunction
)_wrap_DockInfo_IsHorizontal
, METH_O
, NULL
},
10154 { (char *)"DockInfo_IsVertical", (PyCFunction
)_wrap_DockInfo_IsVertical
, METH_O
, NULL
},
10155 { (char *)"DockInfo_panes_set", _wrap_DockInfo_panes_set
, METH_VARARGS
, NULL
},
10156 { (char *)"DockInfo_panes_get", (PyCFunction
)_wrap_DockInfo_panes_get
, METH_O
, NULL
},
10157 { (char *)"DockInfo_rect_set", _wrap_DockInfo_rect_set
, METH_VARARGS
, NULL
},
10158 { (char *)"DockInfo_rect_get", (PyCFunction
)_wrap_DockInfo_rect_get
, METH_O
, NULL
},
10159 { (char *)"DockInfo_dock_direction_set", _wrap_DockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
10160 { (char *)"DockInfo_dock_direction_get", (PyCFunction
)_wrap_DockInfo_dock_direction_get
, METH_O
, NULL
},
10161 { (char *)"DockInfo_dock_layer_set", _wrap_DockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
10162 { (char *)"DockInfo_dock_layer_get", (PyCFunction
)_wrap_DockInfo_dock_layer_get
, METH_O
, NULL
},
10163 { (char *)"DockInfo_dock_row_set", _wrap_DockInfo_dock_row_set
, METH_VARARGS
, NULL
},
10164 { (char *)"DockInfo_dock_row_get", (PyCFunction
)_wrap_DockInfo_dock_row_get
, METH_O
, NULL
},
10165 { (char *)"DockInfo_size_set", _wrap_DockInfo_size_set
, METH_VARARGS
, NULL
},
10166 { (char *)"DockInfo_size_get", (PyCFunction
)_wrap_DockInfo_size_get
, METH_O
, NULL
},
10167 { (char *)"DockInfo_min_size_set", _wrap_DockInfo_min_size_set
, METH_VARARGS
, NULL
},
10168 { (char *)"DockInfo_min_size_get", (PyCFunction
)_wrap_DockInfo_min_size_get
, METH_O
, NULL
},
10169 { (char *)"DockInfo_resizable_set", _wrap_DockInfo_resizable_set
, METH_VARARGS
, NULL
},
10170 { (char *)"DockInfo_resizable_get", (PyCFunction
)_wrap_DockInfo_resizable_get
, METH_O
, NULL
},
10171 { (char *)"DockInfo_toolbar_set", _wrap_DockInfo_toolbar_set
, METH_VARARGS
, NULL
},
10172 { (char *)"DockInfo_toolbar_get", (PyCFunction
)_wrap_DockInfo_toolbar_get
, METH_O
, NULL
},
10173 { (char *)"DockInfo_fixed_set", _wrap_DockInfo_fixed_set
, METH_VARARGS
, NULL
},
10174 { (char *)"DockInfo_fixed_get", (PyCFunction
)_wrap_DockInfo_fixed_get
, METH_O
, NULL
},
10175 { (char *)"DockInfo_swigregister", DockInfo_swigregister
, METH_VARARGS
, NULL
},
10176 { (char *)"DockInfo_swiginit", DockInfo_swiginit
, METH_VARARGS
, NULL
},
10177 { (char *)"DockUIPart_type_set", _wrap_DockUIPart_type_set
, METH_VARARGS
, NULL
},
10178 { (char *)"DockUIPart_type_get", (PyCFunction
)_wrap_DockUIPart_type_get
, METH_O
, NULL
},
10179 { (char *)"DockUIPart_orientation_set", _wrap_DockUIPart_orientation_set
, METH_VARARGS
, NULL
},
10180 { (char *)"DockUIPart_orientation_get", (PyCFunction
)_wrap_DockUIPart_orientation_get
, METH_O
, NULL
},
10181 { (char *)"DockUIPart_dock_set", _wrap_DockUIPart_dock_set
, METH_VARARGS
, NULL
},
10182 { (char *)"DockUIPart_dock_get", (PyCFunction
)_wrap_DockUIPart_dock_get
, METH_O
, NULL
},
10183 { (char *)"DockUIPart_pane_set", _wrap_DockUIPart_pane_set
, METH_VARARGS
, NULL
},
10184 { (char *)"DockUIPart_pane_get", (PyCFunction
)_wrap_DockUIPart_pane_get
, METH_O
, NULL
},
10185 { (char *)"DockUIPart_button_set", _wrap_DockUIPart_button_set
, METH_VARARGS
, NULL
},
10186 { (char *)"DockUIPart_button_get", (PyCFunction
)_wrap_DockUIPart_button_get
, METH_O
, NULL
},
10187 { (char *)"DockUIPart_cont_sizer_set", _wrap_DockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
10188 { (char *)"DockUIPart_cont_sizer_get", (PyCFunction
)_wrap_DockUIPart_cont_sizer_get
, METH_O
, NULL
},
10189 { (char *)"DockUIPart_sizer_item_set", _wrap_DockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
10190 { (char *)"DockUIPart_sizer_item_get", (PyCFunction
)_wrap_DockUIPart_sizer_item_get
, METH_O
, NULL
},
10191 { (char *)"DockUIPart_rect_set", _wrap_DockUIPart_rect_set
, METH_VARARGS
, NULL
},
10192 { (char *)"DockUIPart_rect_get", (PyCFunction
)_wrap_DockUIPart_rect_get
, METH_O
, NULL
},
10193 { (char *)"DockUIPart_swigregister", DockUIPart_swigregister
, METH_VARARGS
, NULL
},
10194 { (char *)"PaneButton_button_id_set", _wrap_PaneButton_button_id_set
, METH_VARARGS
, NULL
},
10195 { (char *)"PaneButton_button_id_get", (PyCFunction
)_wrap_PaneButton_button_id_get
, METH_O
, NULL
},
10196 { (char *)"PaneButton_swigregister", PaneButton_swigregister
, METH_VARARGS
, NULL
},
10197 { (char *)"delete_DockArt", (PyCFunction
)_wrap_delete_DockArt
, METH_O
, NULL
},
10198 { (char *)"DockArt_GetMetric", (PyCFunction
) _wrap_DockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10199 { (char *)"DockArt_SetMetric", (PyCFunction
) _wrap_DockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10200 { (char *)"DockArt_SetFont", (PyCFunction
) _wrap_DockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10201 { (char *)"DockArt_GetFont", (PyCFunction
) _wrap_DockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10202 { (char *)"DockArt_GetColour", (PyCFunction
) _wrap_DockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10203 { (char *)"DockArt_SetColour", (PyCFunction
) _wrap_DockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10204 { (char *)"DockArt_GetColor", (PyCFunction
) _wrap_DockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10205 { (char *)"DockArt_SetColor", (PyCFunction
) _wrap_DockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10206 { (char *)"DockArt_DrawSash", (PyCFunction
) _wrap_DockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10207 { (char *)"DockArt_DrawBackground", (PyCFunction
) _wrap_DockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10208 { (char *)"DockArt_DrawCaption", (PyCFunction
) _wrap_DockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10209 { (char *)"DockArt_DrawGripper", (PyCFunction
) _wrap_DockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10210 { (char *)"DockArt_DrawBorder", (PyCFunction
) _wrap_DockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10211 { (char *)"DockArt_DrawPaneButton", (PyCFunction
) _wrap_DockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10212 { (char *)"DockArt_swigregister", DockArt_swigregister
, METH_VARARGS
, NULL
},
10213 { (char *)"new_DefaultDockArt", (PyCFunction
)_wrap_new_DefaultDockArt
, METH_NOARGS
, NULL
},
10214 { (char *)"DefaultDockArt_swigregister", DefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
10215 { (char *)"DefaultDockArt_swiginit", DefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
10216 { (char *)"new_FloatingPane", (PyCFunction
) _wrap_new_FloatingPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10217 { (char *)"delete_FloatingPane", (PyCFunction
)_wrap_delete_FloatingPane
, METH_O
, NULL
},
10218 { (char *)"FloatingPane_SetPaneWindow", (PyCFunction
) _wrap_FloatingPane_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
10219 { (char *)"FloatingPane_swigregister", FloatingPane_swigregister
, METH_VARARGS
, NULL
},
10220 { (char *)"FloatingPane_swiginit", FloatingPane_swiginit
, METH_VARARGS
, NULL
},
10221 { (char *)"PyDockArt_swigregister", PyDockArt_swigregister
, METH_VARARGS
, NULL
},
10222 { NULL
, NULL
, 0, NULL
}
10226 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
10228 static void *_p_wxFloatingPaneTo_p_wxMiniFrame(void *x
) {
10229 return (void *)((wxMiniFrame
*) ((wxFloatingPane
*) x
));
10231 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
10232 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
10234 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
10235 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
10237 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
10238 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
10240 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
10241 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
10243 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
10244 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
10246 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
10247 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
10249 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
10250 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
10252 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
10253 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
10255 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
10256 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
10258 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
10259 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
10261 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
10262 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
10264 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
10265 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
10267 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
10268 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
10270 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
10271 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
10273 static void *_p_wxTipWindowTo_p_wxTopLevelWindow(void *x
) {
10274 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxTipWindow
*) x
));
10276 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
10277 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
10279 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
10280 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
10282 static void *_p_wxFloatingPaneTo_p_wxTopLevelWindow(void *x
) {
10283 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
10285 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10286 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
10288 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10289 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10291 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
10292 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
10294 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
10295 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10297 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
10298 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10300 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
10301 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
10303 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
10304 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
10306 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
10307 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
10309 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
10310 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
10312 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
10313 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
10315 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
10316 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10318 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
10319 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
10321 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
10322 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
10324 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
10325 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
10327 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
10328 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
10330 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
10331 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
10333 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
10334 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
10336 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
10337 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
10339 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
10340 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
10342 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
10343 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10345 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
10346 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
10348 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
10349 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10351 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
10352 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10354 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
10355 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
10357 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
10358 return (void *)((wxWindow
*) ((wxPanel
*) x
));
10360 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
10361 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
10363 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
10364 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
10366 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
10367 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
10369 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
10370 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
10372 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
10373 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
10375 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
10376 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
10378 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
10379 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
10381 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
10382 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
10384 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
10385 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
10387 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
10388 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
10390 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
10391 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
10393 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
10394 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
10396 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
10397 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
10399 static void *_p_wxControlTo_p_wxWindow(void *x
) {
10400 return (void *)((wxWindow
*) ((wxControl
*) x
));
10402 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
10403 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
10405 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
10406 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10408 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
10409 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
10411 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
10412 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
10414 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
10415 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
10417 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
10418 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
10420 static void *_p_wxFloatingPaneTo_p_wxWindow(void *x
) {
10421 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
10423 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
10424 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
10426 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
10427 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
10429 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
10430 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
10432 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
10433 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
10435 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
10436 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
10438 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
10439 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
10441 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
10442 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
10444 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
10445 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
10447 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
10448 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
10450 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
10451 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
10453 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
10454 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
10456 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
10457 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
10459 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
10460 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
10462 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
10463 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
10465 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
10466 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
10468 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
10469 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
10471 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
10472 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
10474 static void *_p_wxFrameManagerEventTo_p_wxEvent(void *x
) {
10475 return (void *)((wxEvent
*) ((wxFrameManagerEvent
*) x
));
10477 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
10478 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
10480 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
10481 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
10483 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
10484 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
10486 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
10487 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
10489 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
10490 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
10492 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
10493 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
10495 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
10496 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
10498 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
10499 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
10501 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
10502 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
10504 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
10505 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
10507 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
10508 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
10510 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
10511 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
10513 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
10514 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
10516 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
10517 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
10519 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
10520 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
10522 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
10523 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
10525 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
10526 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
10528 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
10529 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
10531 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
10532 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
10534 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
10535 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
10537 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
10538 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
10540 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
10541 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
10543 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
10544 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
10546 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
10547 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
10549 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
10550 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
10552 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
10553 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
10555 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
10556 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
10558 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
10559 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
10561 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
10562 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
10564 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
10565 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
10567 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
10568 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
10570 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
10571 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
10573 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
10574 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
10576 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
10577 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
10579 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
10580 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
10582 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
10583 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
10585 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
10586 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
10588 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
10589 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
10591 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
10592 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
10594 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
10595 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
10597 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
10598 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
10600 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
10601 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
10603 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
10604 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
10606 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
10607 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
10609 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
10610 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
10612 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
10613 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
10615 static void *_p_wxSizerTo_p_wxObject(void *x
) {
10616 return (void *)((wxObject
*) ((wxSizer
*) x
));
10618 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
10619 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
10621 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
10622 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
10624 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
10625 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
10627 static void *_p_wxEventTo_p_wxObject(void *x
) {
10628 return (void *)((wxObject
*) ((wxEvent
*) x
));
10630 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
10631 return (void *)((wxObject
*) ((wxFontData
*) x
));
10633 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
10634 return (void *)((wxObject
*) ((wxPrintData
*) x
));
10636 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
10637 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
10639 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
10640 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
10642 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
10643 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
10645 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
10646 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
10648 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
10649 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
10651 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
10652 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
10654 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
10655 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
10657 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
10658 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
10660 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
10661 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
10663 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
10664 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
10666 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
10667 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
10669 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
10670 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
10672 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
10673 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
10675 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
10676 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
10678 static void *_p_wxControlTo_p_wxObject(void *x
) {
10679 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
10681 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
10682 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
10684 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
10685 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
10687 static void *_p_wxFrameManagerEventTo_p_wxObject(void *x
) {
10688 return (void *)((wxObject
*) (wxEvent
*) ((wxFrameManagerEvent
*) x
));
10690 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
10691 return (void *)((wxObject
*) ((wxFSFile
*) x
));
10693 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
10694 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
10696 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
10697 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
10699 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
10700 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
10702 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
10703 return (void *)((wxObject
*) ((wxColourData
*) x
));
10705 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
10706 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
10708 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
10709 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
10711 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
10712 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
10714 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
10715 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
10717 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
10718 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
10720 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
10721 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
10723 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
10724 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
10726 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
10727 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
10729 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
10730 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
10732 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
10733 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
10735 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
10736 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
10738 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
10739 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
10741 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
10742 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
10744 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
10745 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
10747 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
10748 return (void *)((wxObject
*) ((wxPrinter
*) x
));
10750 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
10751 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
10753 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
10754 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
10756 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
10757 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
10759 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
10760 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
10762 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
10763 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
10765 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
10766 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
10768 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
10769 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
10771 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
10772 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
10774 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
10775 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
10777 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
10778 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
10780 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
10781 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
10783 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
10784 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
10786 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
10787 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
10789 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
10790 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
10792 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
10793 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
10795 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
10796 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
10798 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
10799 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
10801 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
10802 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
10804 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
10805 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
10807 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
10808 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
10810 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
10811 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
10813 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
10814 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
10816 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
10817 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
10819 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
10820 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
10822 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
10823 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
10825 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
10826 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
10828 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
10829 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
10831 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
10832 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
10834 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
10835 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
10837 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
10838 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
10840 static void *_p_wxImageTo_p_wxObject(void *x
) {
10841 return (void *)((wxObject
*) ((wxImage
*) x
));
10843 static void *_p_wxFrameTo_p_wxObject(void *x
) {
10844 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
10846 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
10847 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
10849 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
10850 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
10852 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
10853 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
10855 static void *_p_wxFloatingPaneTo_p_wxObject(void *x
) {
10856 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
10858 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
10859 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
10861 static void *_p_wxFrameManagerTo_p_wxObject(void *x
) {
10862 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxFrameManager
*) x
));
10864 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
10865 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
10867 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
10868 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
10870 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
10871 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
10873 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
10874 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
10876 static void *_p_wxWindowTo_p_wxObject(void *x
) {
10877 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
10879 static void *_p_wxMenuTo_p_wxObject(void *x
) {
10880 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
10882 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
10883 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
10885 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
10886 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
10888 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
10889 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
10891 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
10892 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
10894 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
10895 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
10897 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
10898 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
10900 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
10901 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
10903 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
10904 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
10906 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
10907 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
10909 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
10910 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
10912 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
10913 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
10915 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
10916 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
10918 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
10919 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
10921 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
10922 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
10924 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
10925 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
10927 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
10928 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
10930 static void *_p_wxPanelTo_p_wxObject(void *x
) {
10931 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
10933 static void *_p_wxDialogTo_p_wxObject(void *x
) {
10934 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
10936 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
10937 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
10939 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
10940 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
10942 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
10943 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
10945 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
10946 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
10948 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
10949 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
10951 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
10952 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
10954 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
10955 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
10957 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
10958 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
10960 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
10961 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
10963 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
10964 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
10966 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
10967 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
10969 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
10970 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
10972 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
10973 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
10975 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
10976 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
10978 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
10979 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
10981 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
10982 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
10984 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
10985 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
10987 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
10988 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
10990 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
10991 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
10993 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
10994 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
10996 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
10997 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
10999 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
11000 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
11002 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
11003 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
11005 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
11006 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
11008 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
11009 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
11011 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
11012 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
11014 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
11015 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
11017 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
11018 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
11020 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
11021 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
11023 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
11024 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
11026 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
11027 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
11029 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
11030 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
11032 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
11033 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
11035 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
11036 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
11038 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
11039 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
11041 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
11042 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
11044 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
11045 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
11047 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
11048 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
11050 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
11051 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
11053 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
11054 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
11056 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
11057 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
11059 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
11060 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
11062 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
11063 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
11065 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
11066 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
11068 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
11069 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
11071 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
11072 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
11074 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
11075 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
11077 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
11078 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
11080 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
11081 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
11083 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
11084 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
11086 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
11087 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
11089 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
11090 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
11092 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
11093 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
11095 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
11096 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
11098 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
11099 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
11101 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
11102 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
11104 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
11105 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
11107 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
11108 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
11110 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
11111 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
11113 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
11114 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
11116 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
11117 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
11119 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
11120 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
11122 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
11123 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
11125 static void *_p_wxFloatingPaneTo_p_wxEvtHandler(void *x
) {
11126 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
11128 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
11129 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
11131 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
11132 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
11134 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
11135 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
11137 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
11138 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
11140 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
11141 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
11143 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
11144 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
11146 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
11147 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
11149 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
11150 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
11152 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
11153 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
11155 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
11156 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
11158 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
11159 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
11161 static void *_p_wxFrameManagerTo_p_wxEvtHandler(void *x
) {
11162 return (void *)((wxEvtHandler
*) ((wxFrameManager
*) x
));
11164 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
11165 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
11167 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
11168 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
11170 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
11171 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
11173 static void *_p_wxTipWindowTo_p_wxFrame(void *x
) {
11174 return (void *)((wxFrame
*) ((wxTipWindow
*) x
));
11176 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
11177 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
11179 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
11180 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
11182 static void *_p_wxFloatingPaneTo_p_wxFrame(void *x
) {
11183 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxFloatingPane
*) x
));
11185 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
11186 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
11188 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
11189 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
11191 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
11192 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
11194 static void *_p_wxDefaultDockArtTo_p_wxDockArt(void *x
) {
11195 return (void *)((wxDockArt
*) ((wxDefaultDockArt
*) x
));
11197 static void *_p_wxPyDockArtTo_p_wxDockArt(void *x
) {
11198 return (void *)((wxDockArt
*) (wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
11200 static void *_p_wxPyDockArtTo_p_wxDefaultDockArt(void *x
) {
11201 return (void *)((wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
11203 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
11204 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};
11205 static swig_type_info _swigt__p_int
= {"_p_int", "int *|wxEventType *", 0, 0, (void*)0, 0};
11206 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
11207 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
11208 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
11209 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
11210 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
11211 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
11212 static swig_type_info _swigt__p_wxDefaultDockArt
= {"_p_wxDefaultDockArt", "wxDefaultDockArt *", 0, 0, (void*)0, 0};
11213 static swig_type_info _swigt__p_wxDockArt
= {"_p_wxDockArt", "wxDockArt *", 0, 0, (void*)0, 0};
11214 static swig_type_info _swigt__p_wxDockInfo
= {"_p_wxDockInfo", "wxDockInfo *", 0, 0, (void*)0, 0};
11215 static swig_type_info _swigt__p_wxDockUIPart
= {"_p_wxDockUIPart", "wxDockUIPart *", 0, 0, (void*)0, 0};
11216 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
11217 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
11218 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
11219 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
11220 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
11221 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
11222 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
11223 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
11224 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
11225 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
11226 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
11227 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
11228 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
11229 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
11230 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
11231 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
11232 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
11233 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
11234 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
11235 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
11236 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
11237 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
11238 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
11239 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
11240 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
11241 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
11242 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
11243 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
11244 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
11245 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
11246 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
11247 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
11248 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
11249 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
11250 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
11251 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
11252 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
11253 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
11254 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", 0, 0, 0, 0, 0};
11255 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
11256 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
11257 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
11258 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
11259 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
11260 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
11261 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
11262 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
11263 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
11264 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
11265 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
11266 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
11267 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
11268 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
11269 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
11270 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
11271 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
11272 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
11273 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
11274 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
11275 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
11276 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
11277 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
11278 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
11279 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
11280 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
11281 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
11282 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
11283 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
11284 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
11285 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
11286 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
11287 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
11288 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
11289 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
11290 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
11291 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
11292 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
11293 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
11294 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
11295 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
11296 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
11297 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
11298 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
11299 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
11300 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
11301 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
11302 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
11303 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
11304 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
11305 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
11306 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
11307 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
11308 static swig_type_info _swigt__p_wxFloatingPane
= {"_p_wxFloatingPane", "wxFloatingPane *", 0, 0, (void*)0, 0};
11309 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
11310 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
11311 static swig_type_info _swigt__p_wxFrameManager
= {"_p_wxFrameManager", "wxFrameManager *", 0, 0, (void*)0, 0};
11312 static swig_type_info _swigt__p_wxFrameManagerEvent
= {"_p_wxFrameManagerEvent", "wxFrameManagerEvent *", 0, 0, (void*)0, 0};
11313 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
11314 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
11315 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
11316 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
11317 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
11318 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
11319 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
11320 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
11321 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
11322 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
11323 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
11324 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
11325 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
11326 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
11327 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
11328 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
11329 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
11330 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
11331 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
11332 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
11333 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
11334 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
11335 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
11336 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
11337 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
11338 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
11339 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
11340 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
11341 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
11342 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
11343 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
11344 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
11345 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
11346 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
11347 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
11348 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
11349 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
11350 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
11351 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
11352 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
11353 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
11354 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
11355 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
11356 static swig_type_info _swigt__p_wxPaneButton
= {"_p_wxPaneButton", "wxPaneButton *", 0, 0, (void*)0, 0};
11357 static swig_type_info _swigt__p_wxPaneButtonArray
= {"_p_wxPaneButtonArray", "wxPaneButtonArray *", 0, 0, (void*)0, 0};
11358 static swig_type_info _swigt__p_wxPaneInfo
= {"_p_wxPaneInfo", "wxPaneInfo *", 0, 0, (void*)0, 0};
11359 static swig_type_info _swigt__p_wxPaneInfoPtrArray
= {"_p_wxPaneInfoPtrArray", "wxPaneInfoPtrArray *", 0, 0, (void*)0, 0};
11360 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
11361 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
11362 static swig_type_info _swigt__p_wxPyDockArt
= {"_p_wxPyDockArt", "wxPyDockArt *", 0, 0, (void*)0, 0};
11363 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
11364 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
11365 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
11366 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
11367 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
11368 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
11369 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
11371 static swig_type_info
*swig_type_initial
[] = {
11373 &_swigt__p_form_ops_t
,
11375 &_swigt__p_unsigned_char
,
11376 &_swigt__p_unsigned_int
,
11377 &_swigt__p_unsigned_long
,
11378 &_swigt__p_wxANIHandler
,
11379 &_swigt__p_wxAcceleratorTable
,
11380 &_swigt__p_wxActivateEvent
,
11381 &_swigt__p_wxBMPHandler
,
11382 &_swigt__p_wxBoxSizer
,
11383 &_swigt__p_wxCURHandler
,
11384 &_swigt__p_wxCalculateLayoutEvent
,
11385 &_swigt__p_wxChildFocusEvent
,
11386 &_swigt__p_wxClipboardTextEvent
,
11387 &_swigt__p_wxCloseEvent
,
11388 &_swigt__p_wxColor
,
11389 &_swigt__p_wxColour
,
11390 &_swigt__p_wxColourData
,
11391 &_swigt__p_wxColourDialog
,
11392 &_swigt__p_wxCommandEvent
,
11393 &_swigt__p_wxContextMenuEvent
,
11394 &_swigt__p_wxControl
,
11395 &_swigt__p_wxControlWithItems
,
11397 &_swigt__p_wxDateEvent
,
11398 &_swigt__p_wxDefaultDockArt
,
11399 &_swigt__p_wxDialog
,
11400 &_swigt__p_wxDirDialog
,
11401 &_swigt__p_wxDisplayChangedEvent
,
11402 &_swigt__p_wxDockArt
,
11403 &_swigt__p_wxDockInfo
,
11404 &_swigt__p_wxDockUIPart
,
11405 &_swigt__p_wxDropFilesEvent
,
11406 &_swigt__p_wxDuplexMode
,
11407 &_swigt__p_wxEraseEvent
,
11408 &_swigt__p_wxEvent
,
11409 &_swigt__p_wxEvtHandler
,
11410 &_swigt__p_wxFSFile
,
11411 &_swigt__p_wxFileDialog
,
11412 &_swigt__p_wxFileSystem
,
11413 &_swigt__p_wxFindDialogEvent
,
11414 &_swigt__p_wxFindReplaceData
,
11415 &_swigt__p_wxFindReplaceDialog
,
11416 &_swigt__p_wxFlexGridSizer
,
11417 &_swigt__p_wxFloatingPane
,
11418 &_swigt__p_wxFocusEvent
,
11420 &_swigt__p_wxFontData
,
11421 &_swigt__p_wxFontDialog
,
11422 &_swigt__p_wxFrame
,
11423 &_swigt__p_wxFrameManager
,
11424 &_swigt__p_wxFrameManagerEvent
,
11425 &_swigt__p_wxGBSizerItem
,
11426 &_swigt__p_wxGIFHandler
,
11427 &_swigt__p_wxGridBagSizer
,
11428 &_swigt__p_wxGridSizer
,
11429 &_swigt__p_wxICOHandler
,
11430 &_swigt__p_wxIconizeEvent
,
11431 &_swigt__p_wxIdleEvent
,
11432 &_swigt__p_wxImage
,
11433 &_swigt__p_wxImageHandler
,
11434 &_swigt__p_wxIndividualLayoutConstraint
,
11435 &_swigt__p_wxInitDialogEvent
,
11436 &_swigt__p_wxJPEGHandler
,
11437 &_swigt__p_wxKeyEvent
,
11438 &_swigt__p_wxLayoutAlgorithm
,
11439 &_swigt__p_wxLayoutConstraints
,
11440 &_swigt__p_wxMDIChildFrame
,
11441 &_swigt__p_wxMDIClientWindow
,
11442 &_swigt__p_wxMDIParentFrame
,
11443 &_swigt__p_wxMaximizeEvent
,
11445 &_swigt__p_wxMenuBar
,
11446 &_swigt__p_wxMenuEvent
,
11447 &_swigt__p_wxMenuItem
,
11448 &_swigt__p_wxMessageDialog
,
11449 &_swigt__p_wxMiniFrame
,
11450 &_swigt__p_wxMouseCaptureChangedEvent
,
11451 &_swigt__p_wxMouseEvent
,
11452 &_swigt__p_wxMoveEvent
,
11453 &_swigt__p_wxMultiChoiceDialog
,
11454 &_swigt__p_wxNavigationKeyEvent
,
11455 &_swigt__p_wxNcPaintEvent
,
11456 &_swigt__p_wxNotifyEvent
,
11457 &_swigt__p_wxNumberEntryDialog
,
11458 &_swigt__p_wxObject
,
11459 &_swigt__p_wxPCXHandler
,
11460 &_swigt__p_wxPNGHandler
,
11461 &_swigt__p_wxPNMHandler
,
11462 &_swigt__p_wxPageSetupDialog
,
11463 &_swigt__p_wxPageSetupDialogData
,
11464 &_swigt__p_wxPaintEvent
,
11465 &_swigt__p_wxPaletteChangedEvent
,
11466 &_swigt__p_wxPaneButton
,
11467 &_swigt__p_wxPaneButtonArray
,
11468 &_swigt__p_wxPaneInfo
,
11469 &_swigt__p_wxPaneInfoPtrArray
,
11470 &_swigt__p_wxPanel
,
11471 &_swigt__p_wxPaperSize
,
11472 &_swigt__p_wxPasswordEntryDialog
,
11473 &_swigt__p_wxPoint
,
11474 &_swigt__p_wxPopupWindow
,
11475 &_swigt__p_wxPreviewCanvas
,
11476 &_swigt__p_wxPreviewControlBar
,
11477 &_swigt__p_wxPreviewFrame
,
11478 &_swigt__p_wxPrintData
,
11479 &_swigt__p_wxPrintDialog
,
11480 &_swigt__p_wxPrintDialogData
,
11481 &_swigt__p_wxPrintPreview
,
11482 &_swigt__p_wxPrinter
,
11483 &_swigt__p_wxProgressDialog
,
11484 &_swigt__p_wxPyApp
,
11485 &_swigt__p_wxPyCommandEvent
,
11486 &_swigt__p_wxPyDockArt
,
11487 &_swigt__p_wxPyEvent
,
11488 &_swigt__p_wxPyHtmlListBox
,
11489 &_swigt__p_wxPyImageHandler
,
11490 &_swigt__p_wxPyPanel
,
11491 &_swigt__p_wxPyPopupTransientWindow
,
11492 &_swigt__p_wxPyPreviewControlBar
,
11493 &_swigt__p_wxPyPreviewFrame
,
11494 &_swigt__p_wxPyPrintPreview
,
11495 &_swigt__p_wxPyPrintout
,
11496 &_swigt__p_wxPyScrolledWindow
,
11497 &_swigt__p_wxPySizer
,
11498 &_swigt__p_wxPyTaskBarIcon
,
11499 &_swigt__p_wxPyVListBox
,
11500 &_swigt__p_wxPyVScrolledWindow
,
11501 &_swigt__p_wxPyValidator
,
11502 &_swigt__p_wxPyWindow
,
11503 &_swigt__p_wxQueryLayoutInfoEvent
,
11504 &_swigt__p_wxQueryNewPaletteEvent
,
11506 &_swigt__p_wxSashEvent
,
11507 &_swigt__p_wxSashLayoutWindow
,
11508 &_swigt__p_wxSashWindow
,
11509 &_swigt__p_wxScrollEvent
,
11510 &_swigt__p_wxScrollWinEvent
,
11511 &_swigt__p_wxScrolledWindow
,
11512 &_swigt__p_wxSetCursorEvent
,
11513 &_swigt__p_wxShowEvent
,
11514 &_swigt__p_wxSingleChoiceDialog
,
11516 &_swigt__p_wxSizeEvent
,
11517 &_swigt__p_wxSizer
,
11518 &_swigt__p_wxSizerItem
,
11519 &_swigt__p_wxSplashScreen
,
11520 &_swigt__p_wxSplashScreenWindow
,
11521 &_swigt__p_wxSplitterEvent
,
11522 &_swigt__p_wxSplitterWindow
,
11523 &_swigt__p_wxStaticBoxSizer
,
11524 &_swigt__p_wxStatusBar
,
11525 &_swigt__p_wxStdDialogButtonSizer
,
11526 &_swigt__p_wxString
,
11527 &_swigt__p_wxSysColourChangedEvent
,
11528 &_swigt__p_wxTIFFHandler
,
11529 &_swigt__p_wxTaskBarIconEvent
,
11530 &_swigt__p_wxTextEntryDialog
,
11531 &_swigt__p_wxTipWindow
,
11532 &_swigt__p_wxTopLevelWindow
,
11533 &_swigt__p_wxUpdateUIEvent
,
11534 &_swigt__p_wxValidator
,
11535 &_swigt__p_wxWindow
,
11536 &_swigt__p_wxWindowCreateEvent
,
11537 &_swigt__p_wxWindowDestroyEvent
,
11538 &_swigt__p_wxXPMHandler
,
11541 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
11542 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
11543 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
11544 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
11545 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
11546 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
11547 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
11548 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
11549 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
11550 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}};
11551 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}};
11552 static swig_cast_info _swigc__p_wxDockInfo
[] = { {&_swigt__p_wxDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
11553 static swig_cast_info _swigc__p_wxDockUIPart
[] = { {&_swigt__p_wxDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
11554 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
11555 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
11556 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
11557 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11558 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11559 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
11560 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
11561 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
11562 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
11563 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
11564 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
11565 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11566 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11567 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
11568 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
11569 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11570 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
11571 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11572 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11573 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11574 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
11575 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
11576 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
11577 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
11578 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
11579 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
11580 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
11581 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11582 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11583 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11584 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
11585 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
11586 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
11587 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
11588 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
11589 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
11590 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
11591 static swig_cast_info _swigc__p_wxCommandEvent
[] = {{&_swigt__p_wxCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
11592 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
11593 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11594 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11595 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
11596 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
11597 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
11598 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}};
11599 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
11600 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
11601 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
11602 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
11603 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
11604 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11605 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
11606 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11607 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11608 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
11609 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
11610 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11611 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
11612 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
11613 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
11614 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
11615 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11616 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
11617 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
11618 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11619 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
11620 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
11621 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
11622 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
11623 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
11624 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
11625 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
11626 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
11627 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
11628 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
11629 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
11630 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
11631 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
11632 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
11633 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
11634 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
11635 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
11636 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
11637 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
11638 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
11639 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
11640 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
11641 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
11642 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
11643 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
11644 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
11645 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_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}};
11646 static swig_cast_info _swigc__p_wxFloatingPane
[] = { {&_swigt__p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
11647 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
11648 static swig_cast_info _swigc__p_wxFrame
[] = { {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_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}};
11649 static swig_cast_info _swigc__p_wxFrameManager
[] = { {&_swigt__p_wxFrameManager
, 0, 0, 0},{0, 0, 0, 0}};
11650 static swig_cast_info _swigc__p_wxFrameManagerEvent
[] = { {&_swigt__p_wxFrameManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
11651 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}};
11652 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
11653 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
11654 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
11655 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
11656 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
11657 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
11658 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
11659 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
11660 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
11661 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
11662 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
11663 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
11664 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
11665 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
11666 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
11667 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
11668 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
11669 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
11670 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
11671 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
11672 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
11673 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
11674 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
11675 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
11676 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
11677 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
11678 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
11679 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
11680 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
11681 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
11682 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
11683 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
11684 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
11685 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
11686 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
11687 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
11688 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
11689 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
11690 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
11691 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
11692 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
11693 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_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_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}};
11694 static swig_cast_info _swigc__p_wxPaneButton
[] = { {&_swigt__p_wxPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
11695 static swig_cast_info _swigc__p_wxPaneButtonArray
[] = { {&_swigt__p_wxPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
11696 static swig_cast_info _swigc__p_wxPaneInfo
[] = { {&_swigt__p_wxPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
11697 static swig_cast_info _swigc__p_wxPaneInfoPtrArray
[] = { {&_swigt__p_wxPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
11698 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
11699 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
11700 static swig_cast_info _swigc__p_wxPyDockArt
[] = { {&_swigt__p_wxPyDockArt
, 0, 0, 0},{0, 0, 0, 0}};
11701 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
11702 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
11703 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}};
11704 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}};
11705 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
11706 static swig_cast_info _swigc__p_wxTopLevelWindow
[] = { {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_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_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},{0, 0, 0, 0}};
11707 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_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}};
11709 static swig_cast_info
*swig_cast_initial
[] = {
11711 _swigc__p_form_ops_t
,
11713 _swigc__p_unsigned_char
,
11714 _swigc__p_unsigned_int
,
11715 _swigc__p_unsigned_long
,
11716 _swigc__p_wxANIHandler
,
11717 _swigc__p_wxAcceleratorTable
,
11718 _swigc__p_wxActivateEvent
,
11719 _swigc__p_wxBMPHandler
,
11720 _swigc__p_wxBoxSizer
,
11721 _swigc__p_wxCURHandler
,
11722 _swigc__p_wxCalculateLayoutEvent
,
11723 _swigc__p_wxChildFocusEvent
,
11724 _swigc__p_wxClipboardTextEvent
,
11725 _swigc__p_wxCloseEvent
,
11727 _swigc__p_wxColour
,
11728 _swigc__p_wxColourData
,
11729 _swigc__p_wxColourDialog
,
11730 _swigc__p_wxCommandEvent
,
11731 _swigc__p_wxContextMenuEvent
,
11732 _swigc__p_wxControl
,
11733 _swigc__p_wxControlWithItems
,
11735 _swigc__p_wxDateEvent
,
11736 _swigc__p_wxDefaultDockArt
,
11737 _swigc__p_wxDialog
,
11738 _swigc__p_wxDirDialog
,
11739 _swigc__p_wxDisplayChangedEvent
,
11740 _swigc__p_wxDockArt
,
11741 _swigc__p_wxDockInfo
,
11742 _swigc__p_wxDockUIPart
,
11743 _swigc__p_wxDropFilesEvent
,
11744 _swigc__p_wxDuplexMode
,
11745 _swigc__p_wxEraseEvent
,
11747 _swigc__p_wxEvtHandler
,
11748 _swigc__p_wxFSFile
,
11749 _swigc__p_wxFileDialog
,
11750 _swigc__p_wxFileSystem
,
11751 _swigc__p_wxFindDialogEvent
,
11752 _swigc__p_wxFindReplaceData
,
11753 _swigc__p_wxFindReplaceDialog
,
11754 _swigc__p_wxFlexGridSizer
,
11755 _swigc__p_wxFloatingPane
,
11756 _swigc__p_wxFocusEvent
,
11758 _swigc__p_wxFontData
,
11759 _swigc__p_wxFontDialog
,
11761 _swigc__p_wxFrameManager
,
11762 _swigc__p_wxFrameManagerEvent
,
11763 _swigc__p_wxGBSizerItem
,
11764 _swigc__p_wxGIFHandler
,
11765 _swigc__p_wxGridBagSizer
,
11766 _swigc__p_wxGridSizer
,
11767 _swigc__p_wxICOHandler
,
11768 _swigc__p_wxIconizeEvent
,
11769 _swigc__p_wxIdleEvent
,
11771 _swigc__p_wxImageHandler
,
11772 _swigc__p_wxIndividualLayoutConstraint
,
11773 _swigc__p_wxInitDialogEvent
,
11774 _swigc__p_wxJPEGHandler
,
11775 _swigc__p_wxKeyEvent
,
11776 _swigc__p_wxLayoutAlgorithm
,
11777 _swigc__p_wxLayoutConstraints
,
11778 _swigc__p_wxMDIChildFrame
,
11779 _swigc__p_wxMDIClientWindow
,
11780 _swigc__p_wxMDIParentFrame
,
11781 _swigc__p_wxMaximizeEvent
,
11783 _swigc__p_wxMenuBar
,
11784 _swigc__p_wxMenuEvent
,
11785 _swigc__p_wxMenuItem
,
11786 _swigc__p_wxMessageDialog
,
11787 _swigc__p_wxMiniFrame
,
11788 _swigc__p_wxMouseCaptureChangedEvent
,
11789 _swigc__p_wxMouseEvent
,
11790 _swigc__p_wxMoveEvent
,
11791 _swigc__p_wxMultiChoiceDialog
,
11792 _swigc__p_wxNavigationKeyEvent
,
11793 _swigc__p_wxNcPaintEvent
,
11794 _swigc__p_wxNotifyEvent
,
11795 _swigc__p_wxNumberEntryDialog
,
11796 _swigc__p_wxObject
,
11797 _swigc__p_wxPCXHandler
,
11798 _swigc__p_wxPNGHandler
,
11799 _swigc__p_wxPNMHandler
,
11800 _swigc__p_wxPageSetupDialog
,
11801 _swigc__p_wxPageSetupDialogData
,
11802 _swigc__p_wxPaintEvent
,
11803 _swigc__p_wxPaletteChangedEvent
,
11804 _swigc__p_wxPaneButton
,
11805 _swigc__p_wxPaneButtonArray
,
11806 _swigc__p_wxPaneInfo
,
11807 _swigc__p_wxPaneInfoPtrArray
,
11809 _swigc__p_wxPaperSize
,
11810 _swigc__p_wxPasswordEntryDialog
,
11812 _swigc__p_wxPopupWindow
,
11813 _swigc__p_wxPreviewCanvas
,
11814 _swigc__p_wxPreviewControlBar
,
11815 _swigc__p_wxPreviewFrame
,
11816 _swigc__p_wxPrintData
,
11817 _swigc__p_wxPrintDialog
,
11818 _swigc__p_wxPrintDialogData
,
11819 _swigc__p_wxPrintPreview
,
11820 _swigc__p_wxPrinter
,
11821 _swigc__p_wxProgressDialog
,
11823 _swigc__p_wxPyCommandEvent
,
11824 _swigc__p_wxPyDockArt
,
11825 _swigc__p_wxPyEvent
,
11826 _swigc__p_wxPyHtmlListBox
,
11827 _swigc__p_wxPyImageHandler
,
11828 _swigc__p_wxPyPanel
,
11829 _swigc__p_wxPyPopupTransientWindow
,
11830 _swigc__p_wxPyPreviewControlBar
,
11831 _swigc__p_wxPyPreviewFrame
,
11832 _swigc__p_wxPyPrintPreview
,
11833 _swigc__p_wxPyPrintout
,
11834 _swigc__p_wxPyScrolledWindow
,
11835 _swigc__p_wxPySizer
,
11836 _swigc__p_wxPyTaskBarIcon
,
11837 _swigc__p_wxPyVListBox
,
11838 _swigc__p_wxPyVScrolledWindow
,
11839 _swigc__p_wxPyValidator
,
11840 _swigc__p_wxPyWindow
,
11841 _swigc__p_wxQueryLayoutInfoEvent
,
11842 _swigc__p_wxQueryNewPaletteEvent
,
11844 _swigc__p_wxSashEvent
,
11845 _swigc__p_wxSashLayoutWindow
,
11846 _swigc__p_wxSashWindow
,
11847 _swigc__p_wxScrollEvent
,
11848 _swigc__p_wxScrollWinEvent
,
11849 _swigc__p_wxScrolledWindow
,
11850 _swigc__p_wxSetCursorEvent
,
11851 _swigc__p_wxShowEvent
,
11852 _swigc__p_wxSingleChoiceDialog
,
11854 _swigc__p_wxSizeEvent
,
11856 _swigc__p_wxSizerItem
,
11857 _swigc__p_wxSplashScreen
,
11858 _swigc__p_wxSplashScreenWindow
,
11859 _swigc__p_wxSplitterEvent
,
11860 _swigc__p_wxSplitterWindow
,
11861 _swigc__p_wxStaticBoxSizer
,
11862 _swigc__p_wxStatusBar
,
11863 _swigc__p_wxStdDialogButtonSizer
,
11864 _swigc__p_wxString
,
11865 _swigc__p_wxSysColourChangedEvent
,
11866 _swigc__p_wxTIFFHandler
,
11867 _swigc__p_wxTaskBarIconEvent
,
11868 _swigc__p_wxTextEntryDialog
,
11869 _swigc__p_wxTipWindow
,
11870 _swigc__p_wxTopLevelWindow
,
11871 _swigc__p_wxUpdateUIEvent
,
11872 _swigc__p_wxValidator
,
11873 _swigc__p_wxWindow
,
11874 _swigc__p_wxWindowCreateEvent
,
11875 _swigc__p_wxWindowDestroyEvent
,
11876 _swigc__p_wxXPMHandler
,
11880 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
11882 static swig_const_info swig_const_table
[] = {
11883 {0, 0, 0, 0.0, 0, 0}};
11888 /* -----------------------------------------------------------------------------
11889 * Type initialization:
11890 * This problem is tough by the requirement that no dynamic
11891 * memory is used. Also, since swig_type_info structures store pointers to
11892 * swig_cast_info structures and swig_cast_info structures store pointers back
11893 * to swig_type_info structures, we need some lookup code at initialization.
11894 * The idea is that swig generates all the structures that are needed.
11895 * The runtime then collects these partially filled structures.
11896 * The SWIG_InitializeModule function takes these initial arrays out of
11897 * swig_module, and does all the lookup, filling in the swig_module.types
11898 * array with the correct data and linking the correct swig_cast_info
11899 * structures together.
11901 * The generated swig_type_info structures are assigned staticly to an initial
11902 * array. We just loop though that array, and handle each type individually.
11903 * First we lookup if this type has been already loaded, and if so, use the
11904 * loaded structure instead of the generated one. Then we have to fill in the
11905 * cast linked list. The cast data is initially stored in something like a
11906 * two-dimensional array. Each row corresponds to a type (there are the same
11907 * number of rows as there are in the swig_type_initial array). Each entry in
11908 * a column is one of the swig_cast_info structures for that type.
11909 * The cast_initial array is actually an array of arrays, because each row has
11910 * a variable number of columns. So to actually build the cast linked list,
11911 * we find the array of casts associated with the type, and loop through it
11912 * adding the casts to the list. The one last trick we need to do is making
11913 * sure the type pointer in the swig_cast_info struct is correct.
11915 * First off, we lookup the cast->type name to see if it is already loaded.
11916 * There are three cases to handle:
11917 * 1) If the cast->type has already been loaded AND the type we are adding
11918 * casting info to has not been loaded (it is in this module), THEN we
11919 * replace the cast->type pointer with the type pointer that has already
11921 * 2) If BOTH types (the one we are adding casting info to, and the
11922 * cast->type) are loaded, THEN the cast info has already been loaded by
11923 * the previous module so we just ignore it.
11924 * 3) Finally, if cast->type has not already been loaded, then we add that
11925 * swig_cast_info to the linked list (because the cast->type) pointer will
11927 * ----------------------------------------------------------------------------- */
11937 #define SWIGRUNTIME_DEBUG
11941 SWIG_InitializeModule(void *clientdata
) {
11943 swig_module_info
*module_head
;
11944 static int init_run
= 0;
11946 clientdata
= clientdata
;
11948 if (init_run
) return;
11951 /* Initialize the swig_module */
11952 swig_module
.type_initial
= swig_type_initial
;
11953 swig_module
.cast_initial
= swig_cast_initial
;
11955 /* Try and load any already created modules */
11956 module_head
= SWIG_GetModule(clientdata
);
11958 swig_module
.next
= module_head
->next
;
11959 module_head
->next
= &swig_module
;
11961 /* This is the first module loaded */
11962 swig_module
.next
= &swig_module
;
11963 SWIG_SetModule(clientdata
, &swig_module
);
11966 /* Now work on filling in swig_module.types */
11967 #ifdef SWIGRUNTIME_DEBUG
11968 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
11970 for (i
= 0; i
< swig_module
.size
; ++i
) {
11971 swig_type_info
*type
= 0;
11972 swig_type_info
*ret
;
11973 swig_cast_info
*cast
;
11975 #ifdef SWIGRUNTIME_DEBUG
11976 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
11979 /* if there is another module already loaded */
11980 if (swig_module
.next
!= &swig_module
) {
11981 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
11984 /* Overwrite clientdata field */
11985 #ifdef SWIGRUNTIME_DEBUG
11986 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
11988 if (swig_module
.type_initial
[i
]->clientdata
) {
11989 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
11990 #ifdef SWIGRUNTIME_DEBUG
11991 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
11995 type
= swig_module
.type_initial
[i
];
11998 /* Insert casting types */
11999 cast
= swig_module
.cast_initial
[i
];
12000 while (cast
->type
) {
12001 /* Don't need to add information already in the list */
12003 #ifdef SWIGRUNTIME_DEBUG
12004 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
12006 if (swig_module
.next
!= &swig_module
) {
12007 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
12008 #ifdef SWIGRUNTIME_DEBUG
12009 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
12013 if (type
== swig_module
.type_initial
[i
]) {
12014 #ifdef SWIGRUNTIME_DEBUG
12015 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
12020 /* Check for casting already in the list */
12021 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
12022 #ifdef SWIGRUNTIME_DEBUG
12023 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
12025 if (!ocast
) ret
= 0;
12030 #ifdef SWIGRUNTIME_DEBUG
12031 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
12034 type
->cast
->prev
= cast
;
12035 cast
->next
= type
->cast
;
12041 /* Set entry in modules->types array equal to the type */
12042 swig_module
.types
[i
] = type
;
12044 swig_module
.types
[i
] = 0;
12046 #ifdef SWIGRUNTIME_DEBUG
12047 printf("**** SWIG_InitializeModule: Cast List ******\n");
12048 for (i
= 0; i
< swig_module
.size
; ++i
) {
12050 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
12051 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
12052 while (cast
->type
) {
12053 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
12057 printf("---- Total casts: %d\n",j
);
12059 printf("**** SWIG_InitializeModule: Cast List ******\n");
12063 /* This function will propagate the clientdata field of type to
12064 * any new swig_type_info structures that have been added into the list
12065 * of equivalent types. It is like calling
12066 * SWIG_TypeClientData(type, clientdata) a second time.
12069 SWIG_PropagateClientData(void) {
12071 swig_cast_info
*equiv
;
12072 static int init_run
= 0;
12074 if (init_run
) return;
12077 for (i
= 0; i
< swig_module
.size
; i
++) {
12078 if (swig_module
.types
[i
]->clientdata
) {
12079 equiv
= swig_module
.types
[i
]->cast
;
12081 if (!equiv
->converter
) {
12082 if (equiv
->type
&& !equiv
->type
->clientdata
)
12083 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
12085 equiv
= equiv
->next
;
12105 /* Python-specific SWIG API */
12106 #define SWIG_newvarlink() SWIG_Python_newvarlink()
12107 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
12108 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
12110 /* -----------------------------------------------------------------------------
12111 * global variable support code.
12112 * ----------------------------------------------------------------------------- */
12114 typedef struct swig_globalvar
{
12115 char *name
; /* Name of global variable */
12116 PyObject
*(*get_attr
)(void); /* Return the current value */
12117 int (*set_attr
)(PyObject
*); /* Set the value */
12118 struct swig_globalvar
*next
;
12121 typedef struct swig_varlinkobject
{
12123 swig_globalvar
*vars
;
12124 } swig_varlinkobject
;
12126 SWIGINTERN PyObject
*
12127 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
12128 return PyString_FromString("<Swig global variables>");
12131 SWIGINTERN PyObject
*
12132 swig_varlink_str(swig_varlinkobject
*v
) {
12133 PyObject
*str
= PyString_FromString("(");
12134 swig_globalvar
*var
;
12135 for (var
= v
->vars
; var
; var
=var
->next
) {
12136 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
12137 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
12139 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
12144 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
12145 PyObject
*str
= swig_varlink_str(v
);
12146 fprintf(fp
,"Swig global variables ");
12147 fprintf(fp
,"%s\n", PyString_AsString(str
));
12153 swig_varlink_dealloc(swig_varlinkobject
*v
) {
12154 swig_globalvar
*var
= v
->vars
;
12156 swig_globalvar
*n
= var
->next
;
12163 SWIGINTERN PyObject
*
12164 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
12165 PyObject
*res
= NULL
;
12166 swig_globalvar
*var
= v
->vars
;
12168 if (strcmp(var
->name
,n
) == 0) {
12169 res
= (*var
->get_attr
)();
12174 if (res
== NULL
&& !PyErr_Occurred()) {
12175 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
12181 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
12183 swig_globalvar
*var
= v
->vars
;
12185 if (strcmp(var
->name
,n
) == 0) {
12186 res
= (*var
->set_attr
)(p
);
12191 if (res
== 1 && !PyErr_Occurred()) {
12192 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
12197 SWIGINTERN PyTypeObject
*
12198 swig_varlink_type(void) {
12199 static char varlink__doc__
[] = "Swig var link object";
12200 static PyTypeObject varlink_type
;
12201 static int type_init
= 0;
12203 const PyTypeObject tmp
12205 PyObject_HEAD_INIT(NULL
)
12206 0, /* Number of items in variable part (ob_size) */
12207 (char *)"swigvarlink", /* Type name (tp_name) */
12208 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
12209 0, /* Itemsize (tp_itemsize) */
12210 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
12211 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
12212 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
12213 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
12214 0, /* tp_compare */
12215 (reprfunc
) swig_varlink_repr
, /* tp_repr */
12216 0, /* tp_as_number */
12217 0, /* tp_as_sequence */
12218 0, /* tp_as_mapping */
12221 (reprfunc
)swig_varlink_str
, /* tp_str */
12222 0, /* tp_getattro */
12223 0, /* tp_setattro */
12224 0, /* tp_as_buffer */
12226 varlink__doc__
, /* tp_doc */
12227 0, /* tp_traverse */
12229 0, /* tp_richcompare */
12230 0, /* tp_weaklistoffset */
12231 #if PY_VERSION_HEX >= 0x02020000
12232 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
12234 #if PY_VERSION_HEX >= 0x02030000
12237 #ifdef COUNT_ALLOCS
12238 0,0,0,0 /* tp_alloc -> tp_next */
12241 varlink_type
= tmp
;
12242 varlink_type
.ob_type
= &PyType_Type
;
12245 return &varlink_type
;
12248 /* Create a variable linking object for use later */
12249 SWIGINTERN PyObject
*
12250 SWIG_Python_newvarlink(void) {
12251 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
12255 return ((PyObject
*) result
);
12259 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
12260 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
12261 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
12263 size_t size
= strlen(name
)+1;
12264 gv
->name
= (char *)malloc(size
);
12266 strncpy(gv
->name
,name
,size
);
12267 gv
->get_attr
= get_attr
;
12268 gv
->set_attr
= set_attr
;
12269 gv
->next
= v
->vars
;
12275 SWIGINTERN PyObject
*
12277 static PyObject
*_SWIG_globals
= 0;
12278 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
12279 return _SWIG_globals
;
12282 /* -----------------------------------------------------------------------------
12283 * constants/methods manipulation
12284 * ----------------------------------------------------------------------------- */
12286 /* Install Constants */
12288 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
12291 for (i
= 0; constants
[i
].type
; ++i
) {
12292 switch(constants
[i
].type
) {
12293 case SWIG_PY_POINTER
:
12294 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
12296 case SWIG_PY_BINARY
:
12297 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
12304 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
12310 /* -----------------------------------------------------------------------------*/
12311 /* Fix SwigMethods to carry the callback ptrs when needed */
12312 /* -----------------------------------------------------------------------------*/
12315 SWIG_Python_FixMethods(PyMethodDef
*methods
,
12316 swig_const_info
*const_table
,
12317 swig_type_info
**types
,
12318 swig_type_info
**types_initial
) {
12320 for (i
= 0; methods
[i
].ml_name
; ++i
) {
12321 const char *c
= methods
[i
].ml_doc
;
12322 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
12324 swig_const_info
*ci
= 0;
12325 const char *name
= c
+ 10;
12326 for (j
= 0; const_table
[j
].type
; ++j
) {
12327 if (strncmp(const_table
[j
].name
, name
,
12328 strlen(const_table
[j
].name
)) == 0) {
12329 ci
= &(const_table
[j
]);
12334 size_t shift
= (ci
->ptype
) - types
;
12335 swig_type_info
*ty
= types_initial
[shift
];
12336 size_t ldoc
= (c
- methods
[i
].ml_doc
);
12337 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
12338 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
12341 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
12343 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
12345 strncpy(buff
, "swig_ptr: ", 10);
12347 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
12348 methods
[i
].ml_doc
= ndoc
;
12360 /* -----------------------------------------------------------------------------*
12361 * Partial Init method
12362 * -----------------------------------------------------------------------------*/
12367 SWIGEXPORT
void SWIG_init(void) {
12370 /* Fix SwigMethods to carry the callback ptrs when needed */
12371 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
12373 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
12374 d
= PyModule_GetDict(m
);
12376 SWIG_InitializeModule(0);
12377 SWIG_InstallConstants(d
,swig_const_table
);
12380 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
12381 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
12382 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
12383 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
12384 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
12385 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
12386 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
12387 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
12388 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
12389 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
12390 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
12391 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
12392 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT_FADE
)));
12393 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
12394 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_SIZE
)));
12395 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_SIZE
)));
12396 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_SIZE
)));
12397 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BORDER_SIZE
)));
12398 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BUTTON_SIZE
)));
12399 SWIG_Python_SetConstant(d
, "AUI_ART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BACKGROUND_COLOUR
)));
12400 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_COLOUR
)));
12401 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_COLOUR
)));
12402 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
12403 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_COLOUR
)));
12404 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
12405 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
)));
12406 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
)));
12407 SWIG_Python_SetConstant(d
, "AUI_ART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BORDER_COLOUR
)));
12408 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_COLOUR
)));
12409 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_FONT
)));
12410 SWIG_Python_SetConstant(d
, "AUI_ART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRADIENT_TYPE
)));
12411 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
12412 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
12413 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
12414 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
12415 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
12416 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
12417 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
12418 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
12419 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
12420 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
12421 SWIG_addvarlink(SWIG_globals(),(char*)"NullDockInfo",NullDockInfo_get
, NullDockInfo_set
);
12422 SWIG_addvarlink(SWIG_globals(),(char*)"NullPaneInfo",NullPaneInfo_get
, NullPaneInfo_set
);
12423 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloating
)));
12424 SWIG_Python_SetConstant(d
, "PaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxPaneInfo::optionHidden
)));
12425 SWIG_Python_SetConstant(d
, "PaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionLeftDockable
)));
12426 SWIG_Python_SetConstant(d
, "PaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionRightDockable
)));
12427 SWIG_Python_SetConstant(d
, "PaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionTopDockable
)));
12428 SWIG_Python_SetConstant(d
, "PaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionBottomDockable
)));
12429 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloatable
)));
12430 SWIG_Python_SetConstant(d
, "PaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionMovable
)));
12431 SWIG_Python_SetConstant(d
, "PaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionResizable
)));
12432 SWIG_Python_SetConstant(d
, "PaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxPaneInfo::optionPaneBorder
)));
12433 SWIG_Python_SetConstant(d
, "PaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxPaneInfo::optionCaption
)));
12434 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripper
)));
12435 SWIG_Python_SetConstant(d
, "PaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxPaneInfo::optionDestroyOnClose
)));
12436 SWIG_Python_SetConstant(d
, "PaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxPaneInfo::optionToolbar
)));
12437 SWIG_Python_SetConstant(d
, "PaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxPaneInfo::optionActive
)));
12438 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripperTop
)));
12439 SWIG_Python_SetConstant(d
, "PaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonClose
)));
12440 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMaximize
)));
12441 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMinimize
)));
12442 SWIG_Python_SetConstant(d
, "PaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonPin
)));
12443 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom1
)));
12444 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom2
)));
12445 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom3
)));
12446 SWIG_Python_SetConstant(d
, "PaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxPaneInfo::actionPane
)));
12447 SWIG_Python_SetConstant(d
, "DockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxDockUIPart::typeCaption
)));
12448 SWIG_Python_SetConstant(d
, "DockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxDockUIPart::typeGripper
)));
12449 SWIG_Python_SetConstant(d
, "DockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDock
)));
12450 SWIG_Python_SetConstant(d
, "DockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDockSizer
)));
12451 SWIG_Python_SetConstant(d
, "DockUIPart_typePane",SWIG_From_int(static_cast< int >(wxDockUIPart::typePane
)));
12452 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneSizer
)));
12453 SWIG_Python_SetConstant(d
, "DockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxDockUIPart::typeBackground
)));
12454 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneBorder
)));
12455 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneButton
)));
12456 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
12457 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));