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 * ----------------------------------------------------------------------------- */
14 template<class T
> class SwigValueWrapper
{
17 SwigValueWrapper() : tt(0) { }
18 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
19 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
20 ~SwigValueWrapper() { delete tt
; }
21 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
22 operator T
&() const { return *tt
; }
23 T
*operator&() { return tt
; }
25 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 #ifndef SWIG_TEMPLATE_DISAMBIGUATOR
31 # if defined(__SUNPRO_CC)
32 # define SWIG_TEMPLATE_DISAMBIGUATOR template
34 # define SWIG_TEMPLATE_DISAMBIGUATOR
41 /***********************************************************************
44 * This file contains generic CAPI SWIG runtime support for pointer
47 ************************************************************************/
49 /* This should only be incremented when either the layout of swig_type_info changes,
50 or for whatever reason, the runtime changes incompatibly */
51 #define SWIG_RUNTIME_VERSION "1"
53 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
54 #ifdef SWIG_TYPE_TABLE
55 #define SWIG_QUOTE_STRING(x) #x
56 #define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
57 #define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
59 #define SWIG_TYPE_TABLE_NAME
65 #if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
66 # define SWIGINLINE inline
73 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
74 creating a static or dynamic library from the swig runtime code.
75 In 99.9% of the cases, swig just needs to declare them as 'static'.
77 But only do this if is strictly necessary, ie, if you have problems
78 with your compiler or so.
81 #define SWIGRUNTIME static
83 #ifndef SWIGRUNTIMEINLINE
84 #define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
91 typedef void *(*swig_converter_func
)(void *);
92 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
94 typedef struct swig_type_info
{
96 swig_converter_func converter
;
99 swig_dycast_func dcast
;
100 struct swig_type_info
*next
;
101 struct swig_type_info
*prev
;
105 Compare two type names skipping the space characters, therefore
106 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
108 Return 0 when the two name types are equivalent, as in
109 strncmp, but skipping ' '.
112 SWIG_TypeNameComp(const char *f1
, const char *l1
,
113 const char *f2
, const char *l2
) {
114 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
115 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
116 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
117 if (*f1
!= *f2
) return *f1
- *f2
;
119 return (l1
- f1
) - (l2
- f2
);
123 Check type equivalence in a name list like <name1>|<name2>|...
126 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
128 const char* te
= tb
+ strlen(tb
);
130 while (!equiv
&& *ne
) {
131 for (nb
= ne
; *ne
; ++ne
) {
132 if (*ne
== '|') break;
134 equiv
= SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0;
141 Register a type mapping with the type-checking
143 SWIGRUNTIME swig_type_info
*
144 SWIG_TypeRegisterTL(swig_type_info
**tl
, swig_type_info
*ti
) {
145 swig_type_info
*tc
, *head
, *ret
, *next
;
146 /* Check to see if this type has already been registered */
149 /* check simple type equivalence */
150 int typeequiv
= (strcmp(tc
->name
, ti
->name
) == 0);
151 /* check full type equivalence, resolving typedefs */
153 /* only if tc is not a typedef (no '|' on it) */
154 if (tc
->str
&& ti
->str
&& !strstr(tc
->str
,"|")) {
155 typeequiv
= SWIG_TypeEquiv(ti
->str
,tc
->str
);
159 /* Already exists in the table. Just add additional types to the list */
160 if (ti
->clientdata
) tc
->clientdata
= ti
->clientdata
;
174 /* Build linked lists */
178 /* Patch up the rest of the links */
185 if (next
) next
->prev
= head
;
194 SWIGRUNTIME swig_type_info
*
195 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
197 if (!ty
) return 0; /* Void pointer */
198 s
= ty
->next
; /* First element always just a name */
200 if (strcmp(s
->name
,c
) == 0) {
201 if (s
== ty
->next
) return s
;
202 /* Move s to the top of the linked list */
203 s
->prev
->next
= s
->next
;
205 s
->next
->prev
= s
->prev
;
207 /* Insert s as second element in the list */
209 if (ty
->next
) ty
->next
->prev
= s
;
215 } while (s
&& (s
!= ty
->next
));
220 Cast a pointer up an inheritance hierarchy
222 SWIGRUNTIMEINLINE
void *
223 SWIG_TypeCast(swig_type_info
*ty
, void *ptr
) {
224 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
228 Dynamic pointer casting. Down an inheritance hierarchy
230 SWIGRUNTIME swig_type_info
*
231 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
232 swig_type_info
*lastty
= ty
;
233 if (!ty
|| !ty
->dcast
) return ty
;
234 while (ty
&& (ty
->dcast
)) {
235 ty
= (*ty
->dcast
)(ptr
);
242 Return the name associated with this type
244 SWIGRUNTIMEINLINE
const char *
245 SWIG_TypeName(const swig_type_info
*ty
) {
250 Return the pretty name associated with this type,
251 that is an unmangled type name in a form presentable to the user.
253 SWIGRUNTIME
const char *
254 SWIG_TypePrettyName(const swig_type_info
*type
) {
255 /* The "str" field contains the equivalent pretty names of the
256 type, separated by vertical-bar characters. We choose
257 to print the last name, as it is often (?) the most
259 if (type
->str
!= NULL
) {
260 const char *last_name
= type
->str
;
262 for (s
= type
->str
; *s
; s
++)
263 if (*s
== '|') last_name
= s
+1;
271 Search for a swig_type_info structure
273 SWIGRUNTIME swig_type_info
*
274 SWIG_TypeQueryTL(swig_type_info
*tl
, const char *name
) {
275 swig_type_info
*ty
= tl
;
277 if (ty
->str
&& (SWIG_TypeEquiv(ty
->str
,name
))) return ty
;
278 if (ty
->name
&& (strcmp(name
,ty
->name
) == 0)) return ty
;
285 Set the clientdata field for a type
288 SWIG_TypeClientDataTL(swig_type_info
*tl
, swig_type_info
*ti
, void *clientdata
) {
289 swig_type_info
*tc
, *equiv
;
290 if (ti
->clientdata
) return;
291 /* if (ti->clientdata == clientdata) return; */
292 ti
->clientdata
= clientdata
;
295 if (!equiv
->converter
) {
298 if ((strcmp(tc
->name
, equiv
->name
) == 0))
299 SWIG_TypeClientDataTL(tl
,tc
,clientdata
);
308 Pack binary data into a string
311 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
312 static char hex
[17] = "0123456789abcdef";
313 unsigned char *u
= (unsigned char *) ptr
;
314 const unsigned char *eu
= u
+ sz
;
315 register unsigned char uu
;
316 for (; u
!= eu
; ++u
) {
318 *(c
++) = hex
[(uu
& 0xf0) >> 4];
319 *(c
++) = hex
[uu
& 0xf];
325 Unpack binary data from a string
327 SWIGRUNTIME
const char *
328 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
329 register unsigned char *u
= (unsigned char *) ptr
;
330 register const unsigned char *eu
= u
+ sz
;
331 for (; u
!= eu
; ++u
) {
332 register int d
= *(c
++);
333 register unsigned char uu
= 0;
334 if ((d
>= '0') && (d
<= '9'))
335 uu
= ((d
- '0') << 4);
336 else if ((d
>= 'a') && (d
<= 'f'))
337 uu
= ((d
- ('a'-10)) << 4);
341 if ((d
>= '0') && (d
<= '9'))
343 else if ((d
>= 'a') && (d
<= 'f'))
344 uu
|= (d
- ('a'-10));
353 This function will propagate the clientdata field of type to any new
354 swig_type_info structures that have been added into the list of
355 equivalent types. It is like calling SWIG_TypeClientData(type,
356 clientdata) a second time.
359 SWIG_PropagateClientDataTL(swig_type_info
*tl
, swig_type_info
*type
) {
360 swig_type_info
*equiv
= type
->next
;
362 if (!type
->clientdata
) return;
364 if (!equiv
->converter
) {
367 if ((strcmp(tc
->name
, equiv
->name
) == 0) && !tc
->clientdata
)
368 SWIG_TypeClientDataTL(tl
,tc
, type
->clientdata
);
377 Pack 'void *' into a string buffer.
380 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
382 if ((2*sizeof(void *) + 2) > bsz
) return 0;
384 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
385 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
390 SWIGRUNTIME
const char *
391 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
393 if (strcmp(c
,"NULL") == 0) {
400 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
404 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
406 size_t lname
= (name
? strlen(name
) : 0);
407 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
409 r
= SWIG_PackData(r
,ptr
,sz
);
411 strncpy(r
,name
,lname
+1);
418 SWIGRUNTIME
const char *
419 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
421 if (strcmp(c
,"NULL") == 0) {
428 return SWIG_UnpackData(++c
,ptr
,sz
);
435 /***********************************************************************
438 * This file contains generic SWIG runtime support for pointer
439 * type checking as well as a few commonly used macros to control
442 * Author : David Beazley (beazley@cs.uchicago.edu)
444 * Copyright (c) 1999-2000, The University of Chicago
446 * This file may be freely redistributed without license or fee provided
447 * this copyright message remains intact.
448 ************************************************************************/
451 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
452 # if !defined(STATIC_LINKED)
453 # define SWIGEXPORT(a) __declspec(dllexport) a
455 # define SWIGEXPORT(a) a
458 # define SWIGEXPORT(a) a
466 /*************************************************************************/
469 /* The static type info list */
471 static swig_type_info
*swig_type_list
= 0;
472 static swig_type_info
**swig_type_list_handle
= &swig_type_list
;
475 /* Register a type mapping with the type-checking */
476 static swig_type_info
*
477 SWIG_TypeRegister(swig_type_info
*ti
) {
478 return SWIG_TypeRegisterTL(swig_type_list_handle
, ti
);
481 /* Search for a swig_type_info structure */
482 static swig_type_info
*
483 SWIG_TypeQuery(const char *name
) {
484 return SWIG_TypeQueryTL(*swig_type_list_handle
, name
);
487 /* Set the clientdata field for a type */
489 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
490 SWIG_TypeClientDataTL(*swig_type_list_handle
, ti
, clientdata
);
493 /* This function will propagate the clientdata field of type to
494 * any new swig_type_info structures that have been added into the list
495 * of equivalent types. It is like calling
496 * SWIG_TypeClientData(type, clientdata) a second time.
499 SWIG_PropagateClientData(swig_type_info
*type
) {
500 SWIG_PropagateClientDataTL(*swig_type_list_handle
, type
);
507 /* -----------------------------------------------------------------------------
508 * SWIG API. Portion that goes into the runtime
509 * ----------------------------------------------------------------------------- */
515 /* -----------------------------------------------------------------------------
516 * for internal method declarations
517 * ----------------------------------------------------------------------------- */
520 #define SWIGINTERN static
523 #ifndef SWIGINTERNSHORT
525 #define SWIGINTERNSHORT static inline
527 #define SWIGINTERNSHORT static
528 #endif /* __cplusplus */
533 Exception handling in wrappers
535 #define SWIG_fail goto fail
536 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
537 #define SWIG_append_errmsg(msg) SWIG_Python_AddErrMesg(msg,0)
538 #define SWIG_preppend_errmsg(msg) SWIG_Python_AddErrMesg(msg,1)
539 #define SWIG_type_error(type,obj) SWIG_Python_TypeError(type,obj)
540 #define SWIG_null_ref(type) SWIG_Python_NullRef(type)
545 #define SWIG_contract_assert(expr, msg) \
546 if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else
548 /* -----------------------------------------------------------------------------
549 * Constant declarations
550 * ----------------------------------------------------------------------------- */
553 #define SWIG_PY_INT 1
554 #define SWIG_PY_FLOAT 2
555 #define SWIG_PY_STRING 3
556 #define SWIG_PY_POINTER 4
557 #define SWIG_PY_BINARY 5
559 /* Constant information structure */
560 typedef struct swig_const_info
{
566 swig_type_info
**ptype
;
570 /* -----------------------------------------------------------------------------
571 * Alloc. memory flags
572 * ----------------------------------------------------------------------------- */
573 #define SWIG_OLDOBJ 1
574 #define SWIG_NEWOBJ SWIG_OLDOBJ + 1
575 #define SWIG_PYSTR SWIG_NEWOBJ + 1
582 /***********************************************************************
585 * This file contains the runtime support for Python modules
586 * and includes code for managing global variables and pointer
589 * Author : David Beazley (beazley@cs.uchicago.edu)
590 ************************************************************************/
592 /* Common SWIG API */
593 #define SWIG_ConvertPtr(obj, pp, type, flags) SWIG_Python_ConvertPtr(obj, pp, type, flags)
594 #define SWIG_NewPointerObj(p, type, flags) SWIG_Python_NewPointerObj(p, type, flags)
595 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
598 /* Python-specific SWIG API */
599 #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags)
600 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
603 /* -----------------------------------------------------------------------------
604 * Pointer declarations
605 * ----------------------------------------------------------------------------- */
607 Use SWIG_NO_COBJECT_TYPES to force the use of strings to represent
608 C/C++ pointers in the python side. Very useful for debugging, but
611 #if !defined(SWIG_NO_COBJECT_TYPES) && !defined(SWIG_COBJECT_TYPES)
612 # define SWIG_COBJECT_TYPES
615 /* Flags for pointer conversion */
616 #define SWIG_POINTER_EXCEPTION 0x1
617 #define SWIG_POINTER_DISOWN 0x2
624 /* -----------------------------------------------------------------------------
625 * Create a new pointer string
626 * ----------------------------------------------------------------------------- */
628 #ifndef SWIG_BUFFER_SIZE
629 #define SWIG_BUFFER_SIZE 1024
632 #if defined(SWIG_COBJECT_TYPES)
633 #if !defined(SWIG_COBJECT_PYTHON)
634 /* -----------------------------------------------------------------------------
635 * Implements a simple Swig Object type, and use it instead of PyCObject
636 * ----------------------------------------------------------------------------- */
644 /* Declarations for objects of type PySwigObject */
647 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int flags
)
649 char result
[SWIG_BUFFER_SIZE
];
650 if (SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
))) {
651 fputs("<Swig Object at ", fp
); fputs(result
, fp
); fputs(">", fp
);
658 SWIGRUNTIME PyObject
*
659 PySwigObject_repr(PySwigObject
*v
)
661 char result
[SWIG_BUFFER_SIZE
];
662 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
663 PyString_FromFormat("<Swig Object at %s>", result
) : 0;
666 SWIGRUNTIME PyObject
*
667 PySwigObject_str(PySwigObject
*v
)
669 char result
[SWIG_BUFFER_SIZE
];
670 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
671 PyString_FromString(result
) : 0;
674 SWIGRUNTIME PyObject
*
675 PySwigObject_long(PySwigObject
*v
)
677 return PyLong_FromUnsignedLong((unsigned long) v
->ptr
);
680 SWIGRUNTIME PyObject
*
681 PySwigObject_oct(PySwigObject
*v
)
684 unsigned long x
= (unsigned long)v
->ptr
;
688 PyOS_snprintf(buf
, sizeof(buf
), "0%lo", x
);
689 return PyString_FromString(buf
);
692 SWIGRUNTIME PyObject
*
693 PySwigObject_hex(PySwigObject
*v
)
696 PyOS_snprintf(buf
, sizeof(buf
), "0x%lx", (unsigned long)v
->ptr
);
697 return PyString_FromString(buf
);
701 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
703 int c
= strcmp(v
->desc
, w
->desc
);
709 return (i
< j
) ? -1 : (i
> j
) ? 1 : 0;
714 PySwigObject_dealloc(PySwigObject
*self
)
719 SWIGRUNTIME PyTypeObject
*
720 PySwigObject_GetType() {
721 static char PySwigObject_Type__doc__
[] =
722 "Swig object carries a C/C++ instance pointer";
724 static PyNumberMethods PySwigObject_as_number
= {
725 (binaryfunc
)0, /*nb_add*/
726 (binaryfunc
)0, /*nb_subtract*/
727 (binaryfunc
)0, /*nb_multiply*/
728 (binaryfunc
)0, /*nb_divide*/
729 (binaryfunc
)0, /*nb_remainder*/
730 (binaryfunc
)0, /*nb_divmod*/
731 (ternaryfunc
)0,/*nb_power*/
732 (unaryfunc
)0, /*nb_negative*/
733 (unaryfunc
)0, /*nb_positive*/
734 (unaryfunc
)0, /*nb_absolute*/
735 (inquiry
)0, /*nb_nonzero*/
742 (coercion
)0, /*nb_coerce*/
743 (unaryfunc
)PySwigObject_long
, /*nb_int*/
744 (unaryfunc
)PySwigObject_long
, /*nb_long*/
745 (unaryfunc
)0, /*nb_float*/
746 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
747 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
748 #if PY_VERSION_HEX >= 0x02000000
749 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
753 static int type_init
= 0;
754 static PyTypeObject PySwigObject_Type
;
758 PyObject_HEAD_INIT(&PyType_Type
)
760 "PySwigObject", /*tp_name*/
761 sizeof(PySwigObject
), /*tp_basicsize*/
764 (destructor
)PySwigObject_dealloc
, /*tp_dealloc*/
765 (printfunc
)PySwigObject_print
, /*tp_print*/
766 (getattrfunc
)0, /*tp_getattr*/
767 (setattrfunc
)0, /*tp_setattr*/
768 (cmpfunc
)PySwigObject_compare
, /*tp_compare*/
769 (reprfunc
)PySwigObject_repr
, /*tp_repr*/
770 &PySwigObject_as_number
, /*tp_as_number*/
771 0, /*tp_as_sequence*/
773 (hashfunc
)0, /*tp_hash*/
774 (ternaryfunc
)0, /*tp_call*/
775 (reprfunc
)PySwigObject_str
, /*tp_str*/
776 /* Space for future expansion */
778 PySwigObject_Type__doc__
, /* Documentation string */
779 #if PY_VERSION_HEX >= 0x02000000
783 #if PY_VERSION_HEX >= 0x02010000
784 0, /* tp_richcompare */
785 0, /* tp_weaklistoffset */
787 #if PY_VERSION_HEX >= 0x02020000
788 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
790 #if PY_VERSION_HEX >= 0x02030000
794 0,0,0,0 /* tp_alloc -> tp_next */
798 PySwigObject_Type
= tmp
;
802 return &PySwigObject_Type
;
805 SWIGRUNTIME PyObject
*
806 PySwigObject_FromVoidPtrAndDesc(void *ptr
, const char *desc
)
808 PySwigObject
*self
= PyObject_NEW(PySwigObject
, PySwigObject_GetType());
809 if (self
== NULL
) return NULL
;
812 return (PyObject
*)self
;
815 SWIGRUNTIMEINLINE
void *
816 PySwigObject_AsVoidPtr(PyObject
*self
)
818 return ((PySwigObject
*)self
)->ptr
;
821 SWIGRUNTIMEINLINE
const char *
822 PySwigObject_GetDesc(PyObject
*self
)
824 return ((PySwigObject
*)self
)->desc
;
827 SWIGRUNTIMEINLINE
int
828 PySwigObject_Check(PyObject
*op
) {
829 return ((op
)->ob_type
== PySwigObject_GetType())
830 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
833 /* -----------------------------------------------------------------------------
834 * Implements a simple Swig Packed type, and use it instead of string
835 * ----------------------------------------------------------------------------- */
845 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int flags
)
847 char result
[SWIG_BUFFER_SIZE
];
848 fputs("<Swig Packed ", fp
);
849 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
858 SWIGRUNTIME PyObject
*
859 PySwigPacked_repr(PySwigPacked
*v
)
861 char result
[SWIG_BUFFER_SIZE
];
862 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
863 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->desc
);
865 return PyString_FromFormat("<Swig Packed %s>", v
->desc
);
869 SWIGRUNTIME PyObject
*
870 PySwigPacked_str(PySwigPacked
*v
)
872 char result
[SWIG_BUFFER_SIZE
];
873 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
874 return PyString_FromFormat("%s%s", result
, v
->desc
);
876 return PyString_FromFormat("%s", v
->desc
);
881 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
883 int c
= strcmp(v
->desc
, w
->desc
);
889 int s
= (i
< j
) ? -1 : (i
> j
) ? 1 : 0;
890 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
895 PySwigPacked_dealloc(PySwigPacked
*self
)
901 SWIGRUNTIME PyTypeObject
*
902 PySwigPacked_GetType() {
903 static char PySwigPacked_Type__doc__
[] =
904 "Swig object carries a C/C++ instance pointer";
905 static int type_init
= 0;
907 static PyTypeObject PySwigPacked_Type
;
910 PyObject_HEAD_INIT(&PyType_Type
)
912 "PySwigPacked", /*tp_name*/
913 sizeof(PySwigPacked
), /*tp_basicsize*/
916 (destructor
)PySwigPacked_dealloc
, /*tp_dealloc*/
917 (printfunc
)PySwigPacked_print
, /*tp_print*/
918 (getattrfunc
)0, /*tp_getattr*/
919 (setattrfunc
)0, /*tp_setattr*/
920 (cmpfunc
)PySwigPacked_compare
, /*tp_compare*/
921 (reprfunc
)PySwigPacked_repr
, /*tp_repr*/
923 0, /*tp_as_sequence*/
925 (hashfunc
)0, /*tp_hash*/
926 (ternaryfunc
)0, /*tp_call*/
927 (reprfunc
)PySwigPacked_str
, /*tp_str*/
928 /* Space for future expansion */
930 PySwigPacked_Type__doc__
, /* Documentation string */
931 #if PY_VERSION_HEX >= 0x02000000
935 #if PY_VERSION_HEX >= 0x02010000
936 0, /* tp_richcompare */
937 0, /* tp_weaklistoffset */
939 #if PY_VERSION_HEX >= 0x02020000
940 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
942 #if PY_VERSION_HEX >= 0x02030000
946 0,0,0,0 /* tp_alloc -> tp_next */
950 PySwigPacked_Type
= tmp
;
956 return &PySwigPacked_Type
;
959 SWIGRUNTIME PyObject
*
960 PySwigPacked_FromDataAndDesc(void *ptr
, size_t size
, const char *desc
)
962 PySwigPacked
*self
= PyObject_NEW(PySwigPacked
, PySwigPacked_GetType());
966 void *pack
= malloc(size
);
967 memcpy(pack
, ptr
, size
);
971 return (PyObject
*) self
;
975 SWIGRUNTIMEINLINE
const char *
976 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
978 PySwigPacked
*self
= (PySwigPacked
*)obj
;
979 if (self
->size
!= size
) return 0;
980 memcpy(ptr
, self
->pack
, size
);
984 SWIGRUNTIMEINLINE
const char *
985 PySwigPacked_GetDesc(PyObject
*self
)
987 return ((PySwigPacked
*)self
)->desc
;
990 SWIGRUNTIMEINLINE
int
991 PySwigPacked_Check(PyObject
*op
) {
992 return ((op
)->ob_type
== PySwigPacked_GetType())
993 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
997 /* -----------------------------------------------------------------------------
998 * Use the old Python PyCObject instead of PySwigObject
999 * ----------------------------------------------------------------------------- */
1001 #define PySwigObject_GetDesc(obj) PyCObject_GetDesc(obj)
1002 #define PySwigObject_Check(obj) PyCObject_Check(obj)
1003 #define PySwigObject_AsVoidPtr(obj) PyCObject_AsVoidPtr(obj)
1004 #define PySwigObject_FromVoidPtrAndDesc(p, d) PyCObject_FromVoidPtrAndDesc(p, d, NULL)
1010 /* -----------------------------------------------------------------------------
1011 * errors manipulation
1012 * ----------------------------------------------------------------------------- */
1015 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
1018 #if defined(SWIG_COBJECT_TYPES)
1019 if (PySwigObject_Check(obj
)) {
1020 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
1022 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
1029 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
1031 PyObject
*str
= PyObject_Str(obj
);
1032 const char *cstr
= str
? PyString_AsString(str
) : 0;
1034 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
1037 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
1044 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
1046 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
1050 SWIGRUNTIMEINLINE
void
1051 SWIG_Python_NullRef(const char *type
)
1054 PyErr_Format(PyExc_TypeError
, "null reference of type '%s' was received",type
);
1056 PyErr_Format(PyExc_TypeError
, "null reference was received");
1061 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
1063 if (PyErr_Occurred()) {
1065 PyObject
*value
= 0;
1066 PyObject
*traceback
= 0;
1067 PyErr_Fetch(&type
, &value
, &traceback
);
1069 PyObject
*old_str
= PyObject_Str(value
);
1073 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
1075 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
1086 SWIG_Python_ArgFail(int argnum
)
1088 if (PyErr_Occurred()) {
1089 /* add information about failing argument */
1091 sprintf(mesg
, "argument number %d:", argnum
);
1092 return SWIG_Python_AddErrMesg(mesg
, 1);
1099 /* -----------------------------------------------------------------------------
1100 * pointers/data manipulation
1101 * ----------------------------------------------------------------------------- */
1103 /* Convert a pointer value */
1105 SWIG_Python_ConvertPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
) {
1108 static PyObject
*SWIG_this
= 0;
1110 PyObject
*pyobj
= 0;
1114 if (obj
== Py_None
) {
1119 #ifdef SWIG_COBJECT_TYPES
1120 if (!(PySwigObject_Check(obj
))) {
1122 SWIG_this
= PyString_FromString("this");
1124 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1126 if (!obj
) goto type_error
;
1127 if (!PySwigObject_Check(obj
)) {
1132 vptr
= PySwigObject_AsVoidPtr(obj
);
1133 c
= (const char *) PySwigObject_GetDesc(obj
);
1134 if (newref
) { Py_DECREF(obj
); }
1137 if (!(PyString_Check(obj
))) {
1139 SWIG_this
= PyString_FromString("this");
1141 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1143 if (!obj
) goto type_error
;
1144 if (!PyString_Check(obj
)) {
1149 c
= PyString_AS_STRING(obj
);
1150 /* Pointer values must start with leading underscore */
1151 c
= SWIG_UnpackVoidPtr(c
, &vptr
, ty
->name
);
1152 if (newref
) { Py_DECREF(obj
); }
1153 if (!c
) goto type_error
;
1159 tc
= SWIG_TypeCheck(c
,ty
);
1160 if (!tc
) goto type_error
;
1161 *ptr
= SWIG_TypeCast(tc
,vptr
);
1166 if ((pyobj
) && (flags
& SWIG_POINTER_DISOWN
)) {
1167 PyObject_SetAttrString(pyobj
,(char*)"thisown",Py_False
);
1173 if (pyobj
&& !obj
) {
1175 if (PyCFunction_Check(obj
)) {
1176 /* here we get the method pointer for callbacks */
1177 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
1178 c
= doc
? strstr(doc
, "swig_ptr: ") : 0;
1180 c
= SWIG_UnpackVoidPtr(c
+ 10, &vptr
, ty
->name
);
1181 if (!c
) goto type_error
;
1186 if (flags
& SWIG_POINTER_EXCEPTION
) {
1188 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1190 SWIG_Python_TypeError("C/C++ pointer", obj
);
1196 /* Convert a pointer value, signal an exception on a type mismatch */
1198 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
1200 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
1202 if (flags
& SWIG_POINTER_EXCEPTION
) {
1203 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1204 SWIG_Python_ArgFail(argnum
);
1210 /* Convert a packed value value */
1212 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
, int flags
) {
1216 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1217 c
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
1219 if ((!obj
) || (!PyString_Check(obj
))) goto type_error
;
1220 c
= PyString_AS_STRING(obj
);
1221 /* Pointer values must start with leading underscore */
1222 c
= SWIG_UnpackDataName(c
, ptr
, sz
, ty
->name
);
1224 if (!c
) goto type_error
;
1226 tc
= SWIG_TypeCheck(c
,ty
);
1227 if (!tc
) goto type_error
;
1233 if (flags
& SWIG_POINTER_EXCEPTION
) {
1235 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1237 SWIG_Python_TypeError("C/C++ packed data", obj
);
1243 /* Create a new array object */
1244 SWIGRUNTIME PyObject
*
1245 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int own
) {
1251 #ifdef SWIG_COBJECT_TYPES
1252 robj
= PySwigObject_FromVoidPtrAndDesc((void *) ptr
, (char *)type
->name
);
1255 char result
[SWIG_BUFFER_SIZE
];
1256 robj
= SWIG_PackVoidPtr(result
, ptr
, type
->name
, sizeof(result
)) ?
1257 PyString_FromString(result
) : 0;
1260 if (!robj
|| (robj
== Py_None
)) return robj
;
1261 if (type
->clientdata
) {
1263 PyObject
*args
= Py_BuildValue((char*)"(O)", robj
);
1265 inst
= PyObject_CallObject((PyObject
*) type
->clientdata
, args
);
1269 PyObject_SetAttrString(inst
,(char*)"thisown",Py_True
);
1277 SWIGRUNTIME PyObject
*
1278 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
1284 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1285 robj
= PySwigPacked_FromDataAndDesc((void *) ptr
, sz
, (char *)type
->name
);
1288 char result
[SWIG_BUFFER_SIZE
];
1289 robj
= SWIG_PackDataName(result
, ptr
, sz
, type
->name
, sizeof(result
)) ?
1290 PyString_FromString(result
) : 0;
1296 /* -----------------------------------------------------------------------------*
1298 * -----------------------------------------------------------------------------*/
1300 #ifdef SWIG_LINK_RUNTIME
1301 void *SWIG_ReturnGlobalTypeList(void *);
1304 SWIGRUNTIME swig_type_info
**
1305 SWIG_Python_GetTypeListHandle() {
1306 static void *type_pointer
= (void *)0;
1307 /* first check if module already created */
1308 if (!type_pointer
) {
1309 #ifdef SWIG_LINK_RUNTIME
1310 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
1312 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
1313 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
1314 if (PyErr_Occurred()) {
1316 type_pointer
= (void *)0;
1320 return (swig_type_info
**) type_pointer
;
1324 Search for a swig_type_info structure
1326 SWIGRUNTIMEINLINE swig_type_info
*
1327 SWIG_Python_GetTypeList() {
1328 swig_type_info
**tlh
= SWIG_Python_GetTypeListHandle();
1329 return tlh
? *tlh
: (swig_type_info
*)0;
1332 #define SWIG_Runtime_GetTypeList SWIG_Python_GetTypeList
1339 /* -------- TYPES TABLE (BEGIN) -------- */
1341 #define SWIGTYPE_p_wxObject swig_types[0]
1342 #define SWIGTYPE_p_unsigned_char swig_types[1]
1343 #define SWIGTYPE_p_wxFuncX swig_types[2]
1344 #define SWIGTYPE_p_wxActiveXWindow swig_types[3]
1345 #define SWIGTYPE_p_wxWindow swig_types[4]
1346 #define SWIGTYPE_p_wxCommandEvent swig_types[5]
1347 #define SWIGTYPE_p_unsigned_long swig_types[6]
1348 #define SWIGTYPE_p_unsigned_int swig_types[7]
1349 #define SWIGTYPE_unsigned_int swig_types[8]
1350 #define SWIGTYPE_p_form_ops_t swig_types[9]
1351 #define SWIGTYPE_p_wxDuplexMode swig_types[10]
1352 #define SWIGTYPE_p_char swig_types[11]
1353 #define SWIGTYPE_p_unsigned_short swig_types[12]
1354 #define SWIGTYPE_p_wxInputStream swig_types[13]
1355 #define SWIGTYPE_p_wxEvtHandler swig_types[14]
1356 #define SWIGTYPE_p_wxPropX swig_types[15]
1357 #define SWIGTYPE_p_wxParamXArray swig_types[16]
1358 #define SWIGTYPE_p_wxFuncXArray swig_types[17]
1359 #define SWIGTYPE_p_wxActiveXEvent swig_types[18]
1360 #define SWIGTYPE_std__ptrdiff_t swig_types[19]
1361 #define SWIGTYPE_ptrdiff_t swig_types[20]
1362 #define SWIGTYPE_p_long swig_types[21]
1363 #define SWIGTYPE_p_wxParamX swig_types[22]
1364 #define SWIGTYPE_p_wxIEHtmlWindowBase swig_types[23]
1365 #define SWIGTYPE_p_wxEvent swig_types[24]
1366 #define SWIGTYPE_p_wxPaperSize swig_types[25]
1367 #define SWIGTYPE_p_CLSID swig_types[26]
1368 #define SWIGTYPE_p_wxPropXArray swig_types[27]
1369 #define SWIGTYPE_p_int swig_types[28]
1370 static swig_type_info
*swig_types
[30];
1372 /* -------- TYPES TABLE (END) -------- */
1375 /*-----------------------------------------------
1376 @(target):= _activex.so
1377 ------------------------------------------------*/
1378 #define SWIG_init init_activex
1380 #define SWIG_name "_activex"
1382 #include "wx/wxPython/wxPython.h"
1383 #include "wx/wxPython/pyclasses.h"
1384 #include "wx/wxPython/pyistream.h"
1386 #include "wxactivex.h"
1388 static const wxString
wxPyPanelNameStr(wxPanelNameStr
);
1390 // Since SWIG doesn't support nested classes, we need to fool it a bit
1391 // and make them look like global classes. These defines make the C++ code
1392 // know what we are doing.
1393 #define wxParamX wxActiveX::ParamX
1394 #define wxFuncX wxActiveX::FuncX
1395 #define wxPropX wxActiveX::PropX
1396 #define wxParamXArray wxActiveX::ParamXArray
1397 #define wxFuncXArray wxActiveX::FuncXArray
1398 #define wxPropXArray wxActiveX::PropXArray
1401 // Some conversion helpers
1402 static wxVariant
_PyObj2Variant(PyObject
* value
);
1403 static bool _PyObj2Variant(PyObject
* value
, wxVariant
& wv
);
1404 static PyObject
* _Variant2PyObj(wxVariant
& value
, bool useNone
=false);
1405 static wxString
_VARTYPEname(VARTYPE vt
);
1407 // Check if an exception has been raised (blocking threads)
1408 inline bool wxPyErr_Occurred()
1411 bool blocked
= wxPyBeginBlockThreads();
1412 rval
= PyErr_Occurred() != NULL
;
1413 wxPyEndBlockThreads(blocked
);
1418 static CLSID
*new_CLSID(wxString
const &id
){
1420 CLSID
* self
= new CLSID
;
1421 memset(self
, 0, sizeof(CLSID
));
1423 if (id
[0] == _T('{')) {
1424 // Looks like a classID string
1427 (LPOLESTR
)(const wchar_t *)id
.wc_str(wxConvUTF8
),
1433 (LPOLESTR
)(const wchar_t *)id
.wc_str(wxConvUTF8
),
1436 if (result
!= NOERROR
) {
1437 wxPyErr_SetString(PyExc_ValueError
, "Not a recognized classID or progID");
1443 static void delete_CLSID(CLSID
*self
){ delete self
; }
1444 static wxString
CLSID_GetCLSIDString(CLSID
*self
){
1447 if (StringFromCLSID(*self
, &s
) == S_OK
) {
1452 str
= _T("Error!"); // TODO: raise exception?
1456 static wxString
CLSID_GetProgIDString(CLSID
*self
){
1459 if (ProgIDFromCLSID(*self
, &s
) == S_OK
) {
1464 str
= _T("Error!"); // TODO: raise exception?
1469 /*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,66,SWIG_define@*/
1470 #define SWIG_From_unsigned_SS_short PyInt_FromLong
1473 static wxString
wxParamX_vt_type_get(wxParamX
*self
){ return _VARTYPEname(self
->vt
); }
1475 /*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,66,SWIG_define@*/
1476 #define SWIG_From_long PyInt_FromLong
1479 static bool wxParamXArray___nonzero__(wxParamXArray
*self
){ return self
->size() > 0; }
1480 static int wxParamXArray___len__(wxParamXArray
*self
){ return self
->size(); }
1482 /*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,66,SWIG_define@*/
1483 #define SWIG_From_int PyInt_FromLong
1491 SWIG_CheckLongInRange(long value
, long min_value
, long max_value
,
1494 if (value
< min_value
) {
1496 PyErr_Format(PyExc_OverflowError
,
1497 "value %ld is less than '%s' minimum %ld",
1498 value
, errmsg
, min_value
);
1501 } else if (value
> max_value
) {
1503 PyErr_Format(PyExc_OverflowError
,
1504 "value %ld is greater than '%s' maximum %ld",
1505 value
, errmsg
, max_value
);
1514 SWIG_AsVal_long(PyObject
* obj
, long* val
)
1516 if (PyNumber_Check(obj
)) {
1517 if (val
) *val
= PyInt_AsLong(obj
);
1521 SWIG_type_error("number", obj
);
1527 #if INT_MAX != LONG_MAX
1529 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1531 const char* errmsg
= val
? "int" : (char*)0;
1533 if (SWIG_AsVal_long(obj
, &v
)) {
1534 if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) {
1535 if (val
) *val
= (int)(v
);
1544 SWIG_type_error(errmsg
, obj
);
1550 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1552 return SWIG_AsVal_long(obj
,(long*)val
);
1558 SWIG_As_int(PyObject
* obj
)
1561 if (!SWIG_AsVal_int(obj
, &v
)) {
1563 this is needed to make valgrind/purify happier.
1565 memset((void*)&v
, 0, sizeof(int));
1572 SWIG_Check_int(PyObject
* obj
)
1574 return SWIG_AsVal_int(obj
, (int*)0);
1577 static wxParamX
const &wxParamXArray___getitem__(wxParamXArray
*self
,int idx
){
1578 if ( idx
>= 0 && idx
< self
->size() )
1579 return (*self
)[idx
];
1581 static wxParamX BadVal
;
1582 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1586 static bool wxFuncXArray___nonzero__(wxFuncXArray
*self
){ return self
->size() > 0; }
1587 static int wxFuncXArray___len__(wxFuncXArray
*self
){ return self
->size(); }
1588 static wxFuncX
const &wxFuncXArray___getitem__(wxFuncXArray
*self
,int idx
){
1589 if ( idx
>= 0 && idx
< self
->size() )
1590 return (*self
)[idx
];
1592 static wxFuncX BadVal
;
1593 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1597 static bool wxPropXArray___nonzero__(wxPropXArray
*self
){ return self
->size() > 0; }
1598 static int wxPropXArray___len__(wxPropXArray
*self
){ return self
->size(); }
1599 static wxPropX
const &wxPropXArray___getitem__(wxPropXArray
*self
,int idx
){
1600 if ( idx
>= 0 && idx
< self
->size() )
1601 return (*self
)[idx
];
1603 static wxPropX BadVal
;
1604 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1609 // C++ version of a Python-aware wxActiveX
1610 class wxActiveXWindow
: public wxActiveX
1615 wxActiveXWindow( wxWindow
* parent
, const CLSID
& clsId
, wxWindowID id
= -1,
1616 const wxPoint
& pos
= wxDefaultPosition
,
1617 const wxSize
& size
= wxDefaultSize
,
1619 const wxString
& name
= wxPyPanelNameStr
)
1620 : wxActiveX(parent
, clsId
, id
, pos
, size
, style
, name
)
1625 const CLSID
& GetCLSID() const { return m_CLSID
; }
1628 // Renamed versions of some base class methods that delegate
1629 // to the base where appropriate, and raise Python exceptions
1631 int GetAXEventCount() const { return wxActiveX::GetEventCount(); }
1632 int GetAXPropCount() const { return wxActiveX::GetPropCount(); }
1633 int GetAXMethodCount() const { return wxActiveX::GetMethodCount(); }
1635 const wxFuncX
& GetAXEventDesc(int idx
) const
1637 static wxFuncX BadVal
;
1638 if (idx
< 0 || idx
>= GetAXEventCount()) {
1639 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1642 return m_events
[idx
];
1644 const wxFuncX
& GetAXMethodDesc(int idx
) const
1646 static wxFuncX BadVal
;
1647 if (idx
< 0 || idx
>= GetAXMethodCount()) {
1648 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1651 return m_methods
[idx
];
1653 const wxPropX
& GetAXPropDesc(int idx
) const
1655 static wxPropX BadVal
;
1656 if (idx
< 0 || idx
>= GetAXPropCount()) {
1657 wxPyErr_SetString(PyExc_IndexError
, "Index out of range");
1660 return m_props
[idx
];
1663 const wxFuncX
& GetAXMethodDesc(const wxString
& name
) const
1665 NameMap::const_iterator it
= m_methodNames
.find(name
);
1666 if (it
== m_methodNames
.end()) {
1668 msg
<< _T("method <") << name
<< _T("> not found");
1669 wxPyErr_SetString(PyExc_KeyError
, msg
.mb_str());
1670 static wxFuncX BadVal
;
1673 return GetAXMethodDesc(it
->second
);
1675 const wxPropX
& GetAXPropDesc(const wxString
& name
) const
1677 NameMap::const_iterator it
= m_propNames
.find(name
);
1678 if (it
== m_propNames
.end()) {
1680 msg
<< _T("property <") << name
<< _T("> not found");
1681 wxPyErr_SetString(PyExc_KeyError
, msg
.mb_str());
1682 static wxPropX BadVal
;
1685 return GetAXPropDesc(it
->second
);
1688 // Accessors for the internal vectors of events, methods and
1689 // proprties. Can be used as sequence like objects from
1691 const wxFuncXArray
& GetAXEvents() { return m_events
; }
1692 const wxFuncXArray
& GetAXMethods() { return m_methods
; }
1693 const wxPropXArray
& GetAXProperties() { return m_props
; }
1696 // Set a property from a Python object
1697 void SetAXProp(const wxString
& name
, PyObject
* value
)
1699 const wxPropX
& prop
= GetAXPropDesc(name
);
1700 bool blocked
= wxPyBeginBlockThreads();
1701 if (! PyErr_Occurred() ) {
1702 if (! prop
.CanSet()) {
1704 msg
<< _T("property <") << name
<< _T("> is readonly");
1705 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
1708 wxVariant wxV
= _PyObj2Variant(value
);
1709 if (PyErr_Occurred())
1711 VARIANT v
= {prop
.arg
.vt
};
1712 if (!VariantToMSWVariant(wxV
, v
) || PyErr_Occurred()) {
1714 msg
<< _T("Unable to convert value to expected type: (")
1715 << _VARTYPEname(prop
.arg
.vt
) << _T(") for property <")
1717 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
1720 PyThreadState
* tstate
= wxPyBeginAllowThreads();
1721 SetProp(prop
.memid
, v
);
1723 wxPyEndAllowThreads(tstate
);
1727 wxPyEndBlockThreads(blocked
);
1731 // Get a property and convert it to a Python object
1732 PyObject
* GetAXProp(const wxString
& name
)
1734 PyObject
* rval
= NULL
;
1735 const wxPropX
& prop
= GetAXPropDesc(name
);
1736 bool blocked
= wxPyBeginBlockThreads();
1737 if (! PyErr_Occurred() ) {
1738 if (! prop
.CanGet()) {
1740 msg
<< _T("property <") << name
<< _T("> is writeonly");
1741 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
1744 PyThreadState
* tstate
= wxPyBeginAllowThreads();
1745 VARIANT v
= GetPropAsVariant(prop
.memid
);
1746 wxPyEndAllowThreads(tstate
);
1748 if (!MSWVariantToVariant(v
, wv
) || PyErr_Occurred()) {
1750 msg
<< _T("Unable to convert value to expected type: (")
1751 << _VARTYPEname(prop
.arg
.vt
) << _T(") for property <")
1753 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
1756 rval
= _Variant2PyObj(wv
);
1761 wxPyEndBlockThreads(blocked
);
1766 // If both IsIn and isOut are false, assume it is actually an
1768 bool paramIsIn(const wxParamX
& p
)
1770 return p
.IsIn() || (!p
.IsIn() && !p
.IsOut());
1774 // Call a method of the ActiveX object
1775 PyObject
* _CallAXMethod(const wxString
& name
, PyObject
* args
)
1777 VARIANTARG
*vargs
= NULL
;
1779 PyObject
* rval
= NULL
;
1780 const wxFuncX
& func
= GetAXMethodDesc(name
);
1782 bool blocked
= wxPyBeginBlockThreads();
1783 if (! PyErr_Occurred() ) {
1784 nargs
= func
.params
.size();
1786 vargs
= new VARIANTARG
[nargs
];
1789 // init type of vargs, in reverse order
1791 for (i
= 0; i
< nargs
; i
++)
1792 vargs
[nargs
- i
- 1].vt
= func
.params
[i
].vt
;
1794 // Map the args coming from Python to the input parameters in vargs
1797 while ( i
<nargs
&& pi
<PyTuple_Size(args
) ) {
1798 // Move to the next input param.
1799 if (! paramIsIn(func
.params
[i
])) {
1803 // convert the python object
1804 PyObject
* obj
= PyTuple_GetItem(args
, pi
);
1805 if (obj
== Py_None
) // special-case None?
1806 vargs
[nargs
- i
- 1].vt
= VT_EMPTY
;
1808 wxVariant wxV
= _PyObj2Variant(obj
);
1809 if (PyErr_Occurred())
1811 if (!VariantToMSWVariant(wxV
, vargs
[nargs
- i
- 1]) || PyErr_Occurred()) {
1813 msg
<< _T("Unable to convert value to expected type: (")
1814 << _VARTYPEname(vargs
[nargs
- i
- 1].vt
)
1815 << _T(") for parameter ") << i
;
1816 PyErr_SetString(PyExc_TypeError
, msg
.mb_str());
1826 PyThreadState
* tstate
= wxPyBeginAllowThreads();
1827 VARIANT rv
= CallMethod(func
.memid
, vargs
, nargs
);
1828 wxPyEndAllowThreads(tstate
);
1830 // Convert the return value and any out-params, ignoring
1831 // conversion errors for now
1833 MSWVariantToVariant(rv
, wv
);
1834 rval
= _Variant2PyObj(wv
, true);
1838 // make a list and put the rval in it if it is not None
1839 PyObject
* lst
= PyList_New(0);
1840 if (rval
!= Py_None
)
1841 PyList_Append(lst
, rval
);
1845 // find the out params and convert them
1846 for (int i
= 0; i
< nargs
; i
++) {
1847 VARIANTARG
& va
= vargs
[nargs
- i
- 1];
1848 const wxParamX
&px
= func
.params
[i
];
1850 MSWVariantToVariant(va
, wv
);
1851 PyObject
* obj
= _Variant2PyObj(wv
, true);
1852 PyList_Append(lst
, obj
);
1855 rval
= PyList_AsTuple(lst
);
1858 if (PyErr_Occurred())
1862 wxPyEndBlockThreads(blocked
);
1864 for (int i
= 0; i
< nargs
; i
++)
1865 VariantClear(&vargs
[i
]);
1873 SWIGINTERNSHORT
long
1874 SWIG_As_long(PyObject
* obj
)
1877 if (!SWIG_AsVal_long(obj
, &v
)) {
1879 this is needed to make valgrind/purify happier.
1881 memset((void*)&v
, 0, sizeof(long));
1888 SWIG_Check_long(PyObject
* obj
)
1890 return SWIG_AsVal_long(obj
, (long*)0);
1893 static void wxActiveXEvent__preCallInit(wxActiveXEvent
*self
,PyObject
*pyself
){
1894 bool blocked
= wxPyBeginBlockThreads();
1895 PyObject
* pList
= PyList_New(0);
1896 PyObject_SetAttrString(pyself
, "paramList", pList
);
1898 for (int i
=0; i
<self
->ParamCount(); i
+=1) {
1899 PyObject
* name
= PyString_FromString((char*)(const char*)self
->ParamName(i
).mb_str());
1900 PyObject
* val
= _Variant2PyObj((*self
)[i
], true);
1901 PyObject_SetAttr(pyself
, name
, val
);
1902 PyList_Append(pList
, name
);
1906 wxPyEndBlockThreads(blocked
);
1908 static void wxActiveXEvent__postCallCleanup(wxActiveXEvent
*self
,PyObject
*pyself
){
1909 bool blocked
= wxPyBeginBlockThreads();
1910 for (int i
=0; i
<self
->ParamCount(); i
+=1) {
1911 PyObject
* val
= PyObject_GetAttrString(
1912 pyself
, (char*)(const char*)self
->ParamName(i
).mb_str());
1913 _PyObj2Variant(val
, (*self
)[i
]);
1916 wxPyEndBlockThreads(blocked
);
1920 // Caller should already have the GIL!
1921 wxVariant
_PyObj2Variant(PyObject
* value
)
1925 if (value
== Py_None
)
1928 #if PYTHON_API_VERSION >= 1012 // Python 2.3+
1929 else if (PyBool_Check(value
))
1930 rval
= (value
== Py_True
) ? true : false;
1933 else if (PyInt_Check(value
))
1934 rval
= PyInt_AS_LONG(value
);
1936 else if (PyFloat_Check(value
))
1937 rval
= PyFloat_AS_DOUBLE(value
);
1939 else if (PyString_Check(value
) || PyUnicode_Check(value
))
1940 rval
= Py2wxString(value
);
1942 // TODO: PyList of strings --> wxArrayString
1948 PyErr_SetString(PyExc_TypeError
, "Unsupported object type in _PyObj2Variant");
1955 // This one uses the type of the variant to try and force the conversion
1956 bool _PyObj2Variant(PyObject
* value
, wxVariant
& wv
)
1958 wxString type
= wv
.GetType();
1960 if ( type
== _T("long") || type
== _T("bool") || type
== _T("char") )
1961 wv
= PyInt_AsLong(value
);
1963 else if ( type
== _T("string") )
1964 wv
= Py2wxString(value
);
1966 else if ( type
== _T("double") )
1967 wv
= PyFloat_AsDouble(value
);
1970 // it's some other type that we dont' handle yet. Log it?
1976 // Caller should already have the GIL!
1977 PyObject
* _Variant2PyObj(wxVariant
& value
, bool useNone
)
1979 PyObject
* rval
= NULL
;
1981 if (value
.IsNull()) {
1986 // should "char" be treated as an int or as a string?
1987 else if (value
.IsType(_T("char")) || value
.IsType(_T("long")))
1988 rval
= PyInt_FromLong(value
);
1990 else if (value
.IsType(_T("double")))
1991 rval
= PyFloat_FromDouble(value
);
1993 else if (value
.IsType(_T("bool"))) {
1994 rval
= (bool)value
? Py_True
: Py_False
;
1998 else if (value
.IsType(_T("string")))
1999 rval
= wx2PyString(value
);
2007 PyErr_SetString(PyExc_TypeError
, "Unsupported object type in _Variant2PyObj");
2014 wxString
_VARTYPEname(VARTYPE vt
)
2021 return _T("VT_VARIANT");
2041 // decimals are converted from doubles too
2043 return _T("double");
2049 return _T("wx.DateTime");
2052 return _T("string");
2055 return _T("VT_UNKNOWN");
2058 return _T("VT_DISPATCH");
2061 return _T("VT_EMPTY");
2064 return _T("VT_NULL");
2067 return _T("VT_VOID");
2071 msg
<< _T("unsupported type ") << vt
;
2078 // A class derived from out wxActiveXWindow for the IE WebBrowser
2079 // control that will serve as a base class for a Python
2080 // implementation. This is done so we can "eat our own dog food"
2081 // and use a class at least mostly generated by genaxmodule, but
2082 // also get some of the extra stuff like loading a document from
2083 // a string or a stream, getting text contents, etc. that
2084 // Lindsay's version gives us.
2087 #include <wx/mstream.h>
2089 #include <winerror.h>
2090 #include <exdispid.h>
2096 #include "IEHtmlStream.h"
2098 class wxIEHtmlWindowBase
: public wxActiveXWindow
{
2100 wxAutoOleInterface
<IWebBrowser2
> m_webBrowser
;
2104 wxIEHtmlWindowBase ( wxWindow
* parent
, const CLSID
& clsId
, wxWindowID id
= -1,
2105 const wxPoint
& pos
= wxDefaultPosition
,
2106 const wxSize
& size
= wxDefaultSize
,
2108 const wxString
& name
= wxPyPanelNameStr
)
2109 : wxActiveXWindow(parent
, clsId
, id
, pos
, size
, style
, name
)
2113 // Get IWebBrowser2 Interface
2114 hret
= m_webBrowser
.QueryInterface(IID_IWebBrowser2
, m_ActiveX
);
2115 wxASSERT(SUCCEEDED(hret
));
2117 // web browser setup
2118 m_webBrowser
->put_MenuBar(VARIANT_FALSE
);
2119 m_webBrowser
->put_AddressBar(VARIANT_FALSE
);
2120 m_webBrowser
->put_StatusBar(VARIANT_FALSE
);
2121 m_webBrowser
->put_ToolBar(VARIANT_FALSE
);
2123 m_webBrowser
->put_RegisterAsBrowser(VARIANT_TRUE
);
2124 m_webBrowser
->put_RegisterAsDropTarget(VARIANT_TRUE
);
2126 m_webBrowser
->Navigate( L
"about:blank", NULL
, NULL
, NULL
, NULL
);
2130 void SetCharset(const wxString
& charset
)
2135 IDispatch
*pDisp
= NULL
;
2136 hret
= m_webBrowser
->get_Document(&pDisp
);
2137 wxAutoOleInterface
<IDispatch
> disp(pDisp
);
2141 wxAutoOleInterface
<IHTMLDocument2
> doc(IID_IHTMLDocument2
, disp
);
2143 doc
->put_charset((BSTR
) (const wchar_t *) charset
.wc_str(wxConvUTF8
));
2144 //doc->put_charset((BSTR) wxConvUTF8.cMB2WC(charset).data());
2149 bool LoadString(const wxString
& html
)
2152 size_t len
= html
.length();
2153 len
*= sizeof(wxChar
);
2154 data
= (char *) malloc(len
);
2155 memcpy(data
, html
.c_str(), len
);
2156 return LoadStream(new wxOwnedMemInputStream(data
, len
));
2160 bool LoadStream(IStreamAdaptorBase
*pstrm
)
2162 // need to prepend this as poxy MSHTML will not recognise a HTML comment
2163 // as starting a html document and treats it as plain text
2164 // Does nayone know how to force it to html mode ?
2166 // TODO: What to do in this case???
2168 pstrm
->prepend
= _T("<html>");
2171 // strip leading whitespace as it can confuse MSHTML
2172 wxAutoOleInterface
<IStream
> strm(pstrm
);
2174 // Document Interface
2175 IDispatch
*pDisp
= NULL
;
2176 HRESULT hret
= m_webBrowser
->get_Document(&pDisp
);
2179 wxAutoOleInterface
<IDispatch
> disp(pDisp
);
2182 // get IPersistStreamInit
2183 wxAutoOleInterface
<IPersistStreamInit
>
2184 pPersistStreamInit(IID_IPersistStreamInit
, disp
);
2186 if (pPersistStreamInit
.Ok())
2188 HRESULT hr
= pPersistStreamInit
->InitNew();
2190 hr
= pPersistStreamInit
->Load(strm
);
2192 return SUCCEEDED(hr
);
2198 bool LoadStream(wxInputStream
*is
)
2200 // wrap reference around stream
2201 IwxStreamAdaptor
*pstrm
= new IwxStreamAdaptor(is
);
2204 return LoadStream(pstrm
);
2208 wxString
GetStringSelection(bool asHTML
)
2210 wxAutoOleInterface
<IHTMLTxtRange
> tr(wxieGetSelRange(m_oleObject
));
2212 return wxEmptyString
;
2215 HRESULT hr
= E_FAIL
;
2218 hr
= tr
->get_htmlText(&text
);
2220 hr
= tr
->get_text(&text
);
2222 return wxEmptyString
;
2225 SysFreeString(text
);
2230 wxString
GetText(bool asHTML
)
2232 if (! m_webBrowser
.Ok())
2233 return wxEmptyString
;
2235 // get document dispatch interface
2236 IDispatch
*iDisp
= NULL
;
2237 HRESULT hr
= m_webBrowser
->get_Document(&iDisp
);
2239 return wxEmptyString
;
2241 // Query for Document Interface
2242 wxAutoOleInterface
<IHTMLDocument2
> hd(IID_IHTMLDocument2
, iDisp
);
2246 return wxEmptyString
;
2249 IHTMLElement
*_body
= NULL
;
2250 hd
->get_body(&_body
);
2252 return wxEmptyString
;
2253 wxAutoOleInterface
<IHTMLElement
> body(_body
);
2260 hr
= body
->get_innerHTML(&text
);
2262 hr
= body
->get_innerText(&text
);
2264 return wxEmptyString
;
2267 SysFreeString(text
);
2273 // void wxIEHtmlWin::SetEditMode(bool seton)
2275 // m_bAmbientUserMode = ! seton;
2276 // AmbientPropertyChanged(DISPID_AMBIENT_USERMODE);
2279 // bool wxIEHtmlWin::GetEditMode()
2281 // return ! m_bAmbientUserMode;
2287 SWIG_AsVal_bool(PyObject
*obj
, bool *val
)
2289 if (obj
== Py_True
) {
2290 if (val
) *val
= true;
2293 if (obj
== Py_False
) {
2294 if (val
) *val
= false;
2298 if (SWIG_AsVal_int(obj
, &res
)) {
2299 if (val
) *val
= res
? true : false;
2305 SWIG_type_error("bool", obj
);
2311 SWIGINTERNSHORT
bool
2312 SWIG_As_bool(PyObject
* obj
)
2315 if (!SWIG_AsVal_bool(obj
, &v
)) {
2317 this is needed to make valgrind/purify happier.
2319 memset((void*)&v
, 0, sizeof(bool));
2326 SWIG_Check_bool(PyObject
* obj
)
2328 return SWIG_AsVal_bool(obj
, (bool*)0);
2334 static PyObject
*_wrap_new_CLSID(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2335 PyObject
*resultobj
;
2336 wxString
*arg1
= 0 ;
2338 bool temp1
= false ;
2339 PyObject
* obj0
= 0 ;
2344 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_CLSID",kwnames
,&obj0
)) goto fail
;
2346 arg1
= wxString_in_helper(obj0
);
2347 if (arg1
== NULL
) SWIG_fail
;
2351 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2352 result
= (CLSID
*)new_CLSID((wxString
const &)*arg1
);
2354 wxPyEndAllowThreads(__tstate
);
2355 if (PyErr_Occurred()) SWIG_fail
;
2357 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_CLSID
, 1);
2372 static PyObject
*_wrap_delete_CLSID(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2373 PyObject
*resultobj
;
2374 CLSID
*arg1
= (CLSID
*) 0 ;
2375 PyObject
* obj0
= 0 ;
2377 (char *) "self", NULL
2380 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_CLSID",kwnames
,&obj0
)) goto fail
;
2381 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_CLSID
, SWIG_POINTER_EXCEPTION
| 0);
2382 if (SWIG_arg_fail(1)) SWIG_fail
;
2384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2387 wxPyEndAllowThreads(__tstate
);
2388 if (PyErr_Occurred()) SWIG_fail
;
2390 Py_INCREF(Py_None
); resultobj
= Py_None
;
2397 static PyObject
*_wrap_CLSID_GetCLSIDString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2398 PyObject
*resultobj
;
2399 CLSID
*arg1
= (CLSID
*) 0 ;
2401 PyObject
* obj0
= 0 ;
2403 (char *) "self", NULL
2406 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CLSID_GetCLSIDString",kwnames
,&obj0
)) goto fail
;
2407 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_CLSID
, SWIG_POINTER_EXCEPTION
| 0);
2408 if (SWIG_arg_fail(1)) SWIG_fail
;
2410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2411 result
= CLSID_GetCLSIDString(arg1
);
2413 wxPyEndAllowThreads(__tstate
);
2414 if (PyErr_Occurred()) SWIG_fail
;
2418 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
2420 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
2429 static PyObject
*_wrap_CLSID_GetProgIDString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2430 PyObject
*resultobj
;
2431 CLSID
*arg1
= (CLSID
*) 0 ;
2433 PyObject
* obj0
= 0 ;
2435 (char *) "self", NULL
2438 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CLSID_GetProgIDString",kwnames
,&obj0
)) goto fail
;
2439 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_CLSID
, SWIG_POINTER_EXCEPTION
| 0);
2440 if (SWIG_arg_fail(1)) SWIG_fail
;
2442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2443 result
= CLSID_GetProgIDString(arg1
);
2445 wxPyEndAllowThreads(__tstate
);
2446 if (PyErr_Occurred()) SWIG_fail
;
2450 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
2452 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
2461 static PyObject
* CLSID_swigregister(PyObject
*, PyObject
*args
) {
2463 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
2464 SWIG_TypeClientData(SWIGTYPE_p_CLSID
, obj
);
2466 return Py_BuildValue((char *)"");
2468 static PyObject
*_wrap_ParamX_flags_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2469 PyObject
*resultobj
;
2470 wxParamX
*arg1
= (wxParamX
*) 0 ;
2472 PyObject
* obj0
= 0 ;
2474 (char *) "self", NULL
2477 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_flags_get",kwnames
,&obj0
)) goto fail
;
2478 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2479 if (SWIG_arg_fail(1)) SWIG_fail
;
2480 result
= (USHORT
) ((arg1
)->flags
);
2483 resultobj
= SWIG_From_unsigned_SS_short((unsigned short)(result
));
2491 static PyObject
*_wrap_ParamX_isPtr_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2492 PyObject
*resultobj
;
2493 wxParamX
*arg1
= (wxParamX
*) 0 ;
2495 PyObject
* obj0
= 0 ;
2497 (char *) "self", NULL
2500 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_isPtr_get",kwnames
,&obj0
)) goto fail
;
2501 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2502 if (SWIG_arg_fail(1)) SWIG_fail
;
2503 result
= (bool) ((arg1
)->isPtr
);
2506 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2514 static PyObject
*_wrap_ParamX_isSafeArray_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2515 PyObject
*resultobj
;
2516 wxParamX
*arg1
= (wxParamX
*) 0 ;
2518 PyObject
* obj0
= 0 ;
2520 (char *) "self", NULL
2523 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_isSafeArray_get",kwnames
,&obj0
)) goto fail
;
2524 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2525 if (SWIG_arg_fail(1)) SWIG_fail
;
2526 result
= (bool) ((arg1
)->isSafeArray
);
2529 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2537 static PyObject
*_wrap_ParamX_isOptional_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2538 PyObject
*resultobj
;
2539 wxParamX
*arg1
= (wxParamX
*) 0 ;
2541 PyObject
* obj0
= 0 ;
2543 (char *) "self", NULL
2546 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_isOptional_get",kwnames
,&obj0
)) goto fail
;
2547 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2548 if (SWIG_arg_fail(1)) SWIG_fail
;
2549 result
= (bool) ((arg1
)->isOptional
);
2552 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2560 static PyObject
*_wrap_ParamX_vt_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2561 PyObject
*resultobj
;
2562 wxParamX
*arg1
= (wxParamX
*) 0 ;
2564 PyObject
* obj0
= 0 ;
2566 (char *) "self", NULL
2569 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_vt_get",kwnames
,&obj0
)) goto fail
;
2570 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2571 if (SWIG_arg_fail(1)) SWIG_fail
;
2572 result
= (VARTYPE
) ((arg1
)->vt
);
2575 resultobj
= SWIG_From_unsigned_SS_short((unsigned short)(result
));
2583 static PyObject
*_wrap_ParamX_name_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2584 PyObject
*resultobj
;
2585 wxParamX
*arg1
= (wxParamX
*) 0 ;
2587 PyObject
* obj0
= 0 ;
2589 (char *) "self", NULL
2592 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_name_get",kwnames
,&obj0
)) goto fail
;
2593 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2594 if (SWIG_arg_fail(1)) SWIG_fail
;
2595 result
= (wxString
*)& ((arg1
)->name
);
2599 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
2601 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
2610 static PyObject
*_wrap_ParamX_vt_type_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2611 PyObject
*resultobj
;
2612 wxParamX
*arg1
= (wxParamX
*) 0 ;
2614 PyObject
* obj0
= 0 ;
2616 (char *) "self", NULL
2619 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_vt_type_get",kwnames
,&obj0
)) goto fail
;
2620 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2621 if (SWIG_arg_fail(1)) SWIG_fail
;
2623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2624 result
= wxParamX_vt_type_get(arg1
);
2626 wxPyEndAllowThreads(__tstate
);
2627 if (PyErr_Occurred()) SWIG_fail
;
2631 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
2633 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
2642 static PyObject
*_wrap_ParamX_IsIn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2643 PyObject
*resultobj
;
2644 wxParamX
*arg1
= (wxParamX
*) 0 ;
2646 PyObject
* obj0
= 0 ;
2648 (char *) "self", NULL
2651 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_IsIn",kwnames
,&obj0
)) goto fail
;
2652 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2653 if (SWIG_arg_fail(1)) SWIG_fail
;
2655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2656 result
= (bool)((wxParamX
const *)arg1
)->IsIn();
2658 wxPyEndAllowThreads(__tstate
);
2659 if (PyErr_Occurred()) SWIG_fail
;
2662 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2670 static PyObject
*_wrap_ParamX_IsOut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2671 PyObject
*resultobj
;
2672 wxParamX
*arg1
= (wxParamX
*) 0 ;
2674 PyObject
* obj0
= 0 ;
2676 (char *) "self", NULL
2679 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_IsOut",kwnames
,&obj0
)) goto fail
;
2680 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2681 if (SWIG_arg_fail(1)) SWIG_fail
;
2683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2684 result
= (bool)((wxParamX
const *)arg1
)->IsOut();
2686 wxPyEndAllowThreads(__tstate
);
2687 if (PyErr_Occurred()) SWIG_fail
;
2690 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2698 static PyObject
*_wrap_ParamX_IsRetVal(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2699 PyObject
*resultobj
;
2700 wxParamX
*arg1
= (wxParamX
*) 0 ;
2702 PyObject
* obj0
= 0 ;
2704 (char *) "self", NULL
2707 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamX_IsRetVal",kwnames
,&obj0
)) goto fail
;
2708 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamX
, SWIG_POINTER_EXCEPTION
| 0);
2709 if (SWIG_arg_fail(1)) SWIG_fail
;
2711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2712 result
= (bool)((wxParamX
const *)arg1
)->IsRetVal();
2714 wxPyEndAllowThreads(__tstate
);
2715 if (PyErr_Occurred()) SWIG_fail
;
2718 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2726 static PyObject
* ParamX_swigregister(PyObject
*, PyObject
*args
) {
2728 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
2729 SWIG_TypeClientData(SWIGTYPE_p_wxParamX
, obj
);
2731 return Py_BuildValue((char *)"");
2733 static PyObject
*_wrap_FuncX_name_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2734 PyObject
*resultobj
;
2735 wxFuncX
*arg1
= (wxFuncX
*) 0 ;
2737 PyObject
* obj0
= 0 ;
2739 (char *) "self", NULL
2742 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncX_name_get",kwnames
,&obj0
)) goto fail
;
2743 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncX
, SWIG_POINTER_EXCEPTION
| 0);
2744 if (SWIG_arg_fail(1)) SWIG_fail
;
2745 result
= (wxString
*)& ((arg1
)->name
);
2749 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
2751 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
2760 static PyObject
*_wrap_FuncX_memid_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2761 PyObject
*resultobj
;
2762 wxFuncX
*arg1
= (wxFuncX
*) 0 ;
2764 PyObject
* obj0
= 0 ;
2766 (char *) "self", NULL
2769 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncX_memid_get",kwnames
,&obj0
)) goto fail
;
2770 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncX
, SWIG_POINTER_EXCEPTION
| 0);
2771 if (SWIG_arg_fail(1)) SWIG_fail
;
2772 result
= (MEMBERID
) ((arg1
)->memid
);
2775 resultobj
= SWIG_From_long((long)(result
));
2783 static PyObject
*_wrap_FuncX_hasOut_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2784 PyObject
*resultobj
;
2785 wxFuncX
*arg1
= (wxFuncX
*) 0 ;
2787 PyObject
* obj0
= 0 ;
2789 (char *) "self", NULL
2792 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncX_hasOut_get",kwnames
,&obj0
)) goto fail
;
2793 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncX
, SWIG_POINTER_EXCEPTION
| 0);
2794 if (SWIG_arg_fail(1)) SWIG_fail
;
2795 result
= (bool) ((arg1
)->hasOut
);
2798 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2806 static PyObject
*_wrap_FuncX_retType_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2807 PyObject
*resultobj
;
2808 wxFuncX
*arg1
= (wxFuncX
*) 0 ;
2810 PyObject
* obj0
= 0 ;
2812 (char *) "self", NULL
2815 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncX_retType_get",kwnames
,&obj0
)) goto fail
;
2816 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncX
, SWIG_POINTER_EXCEPTION
| 0);
2817 if (SWIG_arg_fail(1)) SWIG_fail
;
2818 result
= (wxParamX
*)& ((arg1
)->retType
);
2820 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxParamX
, 0);
2827 static PyObject
*_wrap_FuncX_params_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2828 PyObject
*resultobj
;
2829 wxFuncX
*arg1
= (wxFuncX
*) 0 ;
2830 wxParamXArray
*result
;
2831 PyObject
* obj0
= 0 ;
2833 (char *) "self", NULL
2836 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncX_params_get",kwnames
,&obj0
)) goto fail
;
2837 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncX
, SWIG_POINTER_EXCEPTION
| 0);
2838 if (SWIG_arg_fail(1)) SWIG_fail
;
2839 result
= (wxParamXArray
*)& ((arg1
)->params
);
2841 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxParamXArray
, 0);
2848 static PyObject
* FuncX_swigregister(PyObject
*, PyObject
*args
) {
2850 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
2851 SWIG_TypeClientData(SWIGTYPE_p_wxFuncX
, obj
);
2853 return Py_BuildValue((char *)"");
2855 static PyObject
*_wrap_PropX_name_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2856 PyObject
*resultobj
;
2857 wxPropX
*arg1
= (wxPropX
*) 0 ;
2859 PyObject
* obj0
= 0 ;
2861 (char *) "self", NULL
2864 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_name_get",kwnames
,&obj0
)) goto fail
;
2865 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2866 if (SWIG_arg_fail(1)) SWIG_fail
;
2867 result
= (wxString
*)& ((arg1
)->name
);
2871 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
2873 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
2882 static PyObject
*_wrap_PropX_memid_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2883 PyObject
*resultobj
;
2884 wxPropX
*arg1
= (wxPropX
*) 0 ;
2886 PyObject
* obj0
= 0 ;
2888 (char *) "self", NULL
2891 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_memid_get",kwnames
,&obj0
)) goto fail
;
2892 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2893 if (SWIG_arg_fail(1)) SWIG_fail
;
2894 result
= (MEMBERID
) ((arg1
)->memid
);
2897 resultobj
= SWIG_From_long((long)(result
));
2905 static PyObject
*_wrap_PropX_type_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2906 PyObject
*resultobj
;
2907 wxPropX
*arg1
= (wxPropX
*) 0 ;
2909 PyObject
* obj0
= 0 ;
2911 (char *) "self", NULL
2914 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_type_get",kwnames
,&obj0
)) goto fail
;
2915 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2916 if (SWIG_arg_fail(1)) SWIG_fail
;
2917 result
= (wxParamX
*)& ((arg1
)->type
);
2919 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxParamX
, 0);
2926 static PyObject
*_wrap_PropX_arg_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2927 PyObject
*resultobj
;
2928 wxPropX
*arg1
= (wxPropX
*) 0 ;
2930 PyObject
* obj0
= 0 ;
2932 (char *) "self", NULL
2935 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_arg_get",kwnames
,&obj0
)) goto fail
;
2936 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2937 if (SWIG_arg_fail(1)) SWIG_fail
;
2938 result
= (wxParamX
*)& ((arg1
)->arg
);
2940 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxParamX
, 0);
2947 static PyObject
*_wrap_PropX_putByRef_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2948 PyObject
*resultobj
;
2949 wxPropX
*arg1
= (wxPropX
*) 0 ;
2951 PyObject
* obj0
= 0 ;
2953 (char *) "self", NULL
2956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_putByRef_get",kwnames
,&obj0
)) goto fail
;
2957 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2958 if (SWIG_arg_fail(1)) SWIG_fail
;
2959 result
= (bool) ((arg1
)->putByRef
);
2962 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2970 static PyObject
*_wrap_PropX_CanGet(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2971 PyObject
*resultobj
;
2972 wxPropX
*arg1
= (wxPropX
*) 0 ;
2974 PyObject
* obj0
= 0 ;
2976 (char *) "self", NULL
2979 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_CanGet",kwnames
,&obj0
)) goto fail
;
2980 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
2981 if (SWIG_arg_fail(1)) SWIG_fail
;
2983 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2984 result
= (bool)((wxPropX
const *)arg1
)->CanGet();
2986 wxPyEndAllowThreads(__tstate
);
2987 if (PyErr_Occurred()) SWIG_fail
;
2990 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2998 static PyObject
*_wrap_PropX_CanSet(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2999 PyObject
*resultobj
;
3000 wxPropX
*arg1
= (wxPropX
*) 0 ;
3002 PyObject
* obj0
= 0 ;
3004 (char *) "self", NULL
3007 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropX_CanSet",kwnames
,&obj0
)) goto fail
;
3008 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropX
, SWIG_POINTER_EXCEPTION
| 0);
3009 if (SWIG_arg_fail(1)) SWIG_fail
;
3011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3012 result
= (bool)((wxPropX
const *)arg1
)->CanSet();
3014 wxPyEndAllowThreads(__tstate
);
3015 if (PyErr_Occurred()) SWIG_fail
;
3018 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3026 static PyObject
* PropX_swigregister(PyObject
*, PyObject
*args
) {
3028 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3029 SWIG_TypeClientData(SWIGTYPE_p_wxPropX
, obj
);
3031 return Py_BuildValue((char *)"");
3033 static PyObject
*_wrap_ParamXArray___nonzero__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3034 PyObject
*resultobj
;
3035 wxParamXArray
*arg1
= (wxParamXArray
*) 0 ;
3037 PyObject
* obj0
= 0 ;
3039 (char *) "self", NULL
3042 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamXArray___nonzero__",kwnames
,&obj0
)) goto fail
;
3043 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamXArray
, SWIG_POINTER_EXCEPTION
| 0);
3044 if (SWIG_arg_fail(1)) SWIG_fail
;
3046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3047 result
= (bool)wxParamXArray___nonzero__(arg1
);
3049 wxPyEndAllowThreads(__tstate
);
3050 if (PyErr_Occurred()) SWIG_fail
;
3053 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3061 static PyObject
*_wrap_ParamXArray___len__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3062 PyObject
*resultobj
;
3063 wxParamXArray
*arg1
= (wxParamXArray
*) 0 ;
3065 PyObject
* obj0
= 0 ;
3067 (char *) "self", NULL
3070 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ParamXArray___len__",kwnames
,&obj0
)) goto fail
;
3071 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamXArray
, SWIG_POINTER_EXCEPTION
| 0);
3072 if (SWIG_arg_fail(1)) SWIG_fail
;
3074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3075 result
= (int)wxParamXArray___len__(arg1
);
3077 wxPyEndAllowThreads(__tstate
);
3078 if (PyErr_Occurred()) SWIG_fail
;
3081 resultobj
= SWIG_From_int((int)(result
));
3089 static PyObject
*_wrap_ParamXArray___getitem__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3090 PyObject
*resultobj
;
3091 wxParamXArray
*arg1
= (wxParamXArray
*) 0 ;
3094 PyObject
* obj0
= 0 ;
3095 PyObject
* obj1
= 0 ;
3097 (char *) "self",(char *) "idx", NULL
3100 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ParamXArray___getitem__",kwnames
,&obj0
,&obj1
)) goto fail
;
3101 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxParamXArray
, SWIG_POINTER_EXCEPTION
| 0);
3102 if (SWIG_arg_fail(1)) SWIG_fail
;
3104 arg2
= (int)(SWIG_As_int(obj1
));
3105 if (SWIG_arg_fail(2)) SWIG_fail
;
3108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3110 wxParamX
const &_result_ref
= wxParamXArray___getitem__(arg1
,arg2
);
3111 result
= (wxParamX
*) &_result_ref
;
3114 wxPyEndAllowThreads(__tstate
);
3115 if (PyErr_Occurred()) SWIG_fail
;
3117 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxParamX
, 0);
3124 static PyObject
* ParamXArray_swigregister(PyObject
*, PyObject
*args
) {
3126 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3127 SWIG_TypeClientData(SWIGTYPE_p_wxParamXArray
, obj
);
3129 return Py_BuildValue((char *)"");
3131 static PyObject
*_wrap_FuncXArray___nonzero__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3132 PyObject
*resultobj
;
3133 wxFuncXArray
*arg1
= (wxFuncXArray
*) 0 ;
3135 PyObject
* obj0
= 0 ;
3137 (char *) "self", NULL
3140 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncXArray___nonzero__",kwnames
,&obj0
)) goto fail
;
3141 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncXArray
, SWIG_POINTER_EXCEPTION
| 0);
3142 if (SWIG_arg_fail(1)) SWIG_fail
;
3144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3145 result
= (bool)wxFuncXArray___nonzero__(arg1
);
3147 wxPyEndAllowThreads(__tstate
);
3148 if (PyErr_Occurred()) SWIG_fail
;
3151 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3159 static PyObject
*_wrap_FuncXArray___len__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3160 PyObject
*resultobj
;
3161 wxFuncXArray
*arg1
= (wxFuncXArray
*) 0 ;
3163 PyObject
* obj0
= 0 ;
3165 (char *) "self", NULL
3168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FuncXArray___len__",kwnames
,&obj0
)) goto fail
;
3169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncXArray
, SWIG_POINTER_EXCEPTION
| 0);
3170 if (SWIG_arg_fail(1)) SWIG_fail
;
3172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3173 result
= (int)wxFuncXArray___len__(arg1
);
3175 wxPyEndAllowThreads(__tstate
);
3176 if (PyErr_Occurred()) SWIG_fail
;
3179 resultobj
= SWIG_From_int((int)(result
));
3187 static PyObject
*_wrap_FuncXArray___getitem__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3188 PyObject
*resultobj
;
3189 wxFuncXArray
*arg1
= (wxFuncXArray
*) 0 ;
3192 PyObject
* obj0
= 0 ;
3193 PyObject
* obj1
= 0 ;
3195 (char *) "self",(char *) "idx", NULL
3198 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FuncXArray___getitem__",kwnames
,&obj0
,&obj1
)) goto fail
;
3199 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFuncXArray
, SWIG_POINTER_EXCEPTION
| 0);
3200 if (SWIG_arg_fail(1)) SWIG_fail
;
3202 arg2
= (int)(SWIG_As_int(obj1
));
3203 if (SWIG_arg_fail(2)) SWIG_fail
;
3206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3208 wxFuncX
const &_result_ref
= wxFuncXArray___getitem__(arg1
,arg2
);
3209 result
= (wxFuncX
*) &_result_ref
;
3212 wxPyEndAllowThreads(__tstate
);
3213 if (PyErr_Occurred()) SWIG_fail
;
3215 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncX
, 0);
3222 static PyObject
* FuncXArray_swigregister(PyObject
*, PyObject
*args
) {
3224 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3225 SWIG_TypeClientData(SWIGTYPE_p_wxFuncXArray
, obj
);
3227 return Py_BuildValue((char *)"");
3229 static PyObject
*_wrap_PropXArray___nonzero__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3230 PyObject
*resultobj
;
3231 wxPropXArray
*arg1
= (wxPropXArray
*) 0 ;
3233 PyObject
* obj0
= 0 ;
3235 (char *) "self", NULL
3238 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropXArray___nonzero__",kwnames
,&obj0
)) goto fail
;
3239 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropXArray
, SWIG_POINTER_EXCEPTION
| 0);
3240 if (SWIG_arg_fail(1)) SWIG_fail
;
3242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3243 result
= (bool)wxPropXArray___nonzero__(arg1
);
3245 wxPyEndAllowThreads(__tstate
);
3246 if (PyErr_Occurred()) SWIG_fail
;
3249 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3257 static PyObject
*_wrap_PropXArray___len__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3258 PyObject
*resultobj
;
3259 wxPropXArray
*arg1
= (wxPropXArray
*) 0 ;
3261 PyObject
* obj0
= 0 ;
3263 (char *) "self", NULL
3266 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PropXArray___len__",kwnames
,&obj0
)) goto fail
;
3267 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropXArray
, SWIG_POINTER_EXCEPTION
| 0);
3268 if (SWIG_arg_fail(1)) SWIG_fail
;
3270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3271 result
= (int)wxPropXArray___len__(arg1
);
3273 wxPyEndAllowThreads(__tstate
);
3274 if (PyErr_Occurred()) SWIG_fail
;
3277 resultobj
= SWIG_From_int((int)(result
));
3285 static PyObject
*_wrap_PropXArray___getitem__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3286 PyObject
*resultobj
;
3287 wxPropXArray
*arg1
= (wxPropXArray
*) 0 ;
3290 PyObject
* obj0
= 0 ;
3291 PyObject
* obj1
= 0 ;
3293 (char *) "self",(char *) "idx", NULL
3296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PropXArray___getitem__",kwnames
,&obj0
,&obj1
)) goto fail
;
3297 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPropXArray
, SWIG_POINTER_EXCEPTION
| 0);
3298 if (SWIG_arg_fail(1)) SWIG_fail
;
3300 arg2
= (int)(SWIG_As_int(obj1
));
3301 if (SWIG_arg_fail(2)) SWIG_fail
;
3304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3306 wxPropX
const &_result_ref
= wxPropXArray___getitem__(arg1
,arg2
);
3307 result
= (wxPropX
*) &_result_ref
;
3310 wxPyEndAllowThreads(__tstate
);
3311 if (PyErr_Occurred()) SWIG_fail
;
3313 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPropX
, 0);
3320 static PyObject
* PropXArray_swigregister(PyObject
*, PyObject
*args
) {
3322 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3323 SWIG_TypeClientData(SWIGTYPE_p_wxPropXArray
, obj
);
3325 return Py_BuildValue((char *)"");
3327 static PyObject
*_wrap_new_ActiveXWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3328 PyObject
*resultobj
;
3329 wxWindow
*arg1
= (wxWindow
*) 0 ;
3331 int arg3
= (int) -1 ;
3332 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
3333 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
3334 wxSize
const &arg5_defvalue
= wxDefaultSize
;
3335 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
3336 long arg6
= (long) 0 ;
3337 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
3338 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
3339 wxActiveXWindow
*result
;
3342 bool temp7
= false ;
3343 PyObject
* obj0
= 0 ;
3344 PyObject
* obj1
= 0 ;
3345 PyObject
* obj2
= 0 ;
3346 PyObject
* obj3
= 0 ;
3347 PyObject
* obj4
= 0 ;
3348 PyObject
* obj5
= 0 ;
3349 PyObject
* obj6
= 0 ;
3351 (char *) "parent",(char *) "clsId",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
3354 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:new_ActiveXWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
3355 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3356 if (SWIG_arg_fail(1)) SWIG_fail
;
3358 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_CLSID
, SWIG_POINTER_EXCEPTION
| 0);
3359 if (SWIG_arg_fail(2)) SWIG_fail
;
3361 SWIG_null_ref("CLSID");
3363 if (SWIG_arg_fail(2)) SWIG_fail
;
3367 arg3
= (int)(SWIG_As_int(obj2
));
3368 if (SWIG_arg_fail(3)) SWIG_fail
;
3374 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3380 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3385 arg6
= (long)(SWIG_As_long(obj5
));
3386 if (SWIG_arg_fail(6)) SWIG_fail
;
3391 arg7
= wxString_in_helper(obj6
);
3392 if (arg7
== NULL
) SWIG_fail
;
3397 if (!wxPyCheckForApp()) SWIG_fail
;
3398 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3399 result
= (wxActiveXWindow
*)new wxActiveXWindow(arg1
,(CLSID
const &)*arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3401 wxPyEndAllowThreads(__tstate
);
3402 if (PyErr_Occurred()) SWIG_fail
;
3404 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxActiveXWindow
, 1);
3419 static PyObject
*_wrap_ActiveXWindow_GetCLSID(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3420 PyObject
*resultobj
;
3421 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3423 PyObject
* obj0
= 0 ;
3425 (char *) "self", NULL
3428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetCLSID",kwnames
,&obj0
)) goto fail
;
3429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3430 if (SWIG_arg_fail(1)) SWIG_fail
;
3432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3434 CLSID
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetCLSID();
3435 result
= (CLSID
*) &_result_ref
;
3438 wxPyEndAllowThreads(__tstate
);
3439 if (PyErr_Occurred()) SWIG_fail
;
3441 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_CLSID
, 0);
3448 static PyObject
*_wrap_ActiveXWindow_GetAXEventCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3449 PyObject
*resultobj
;
3450 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3452 PyObject
* obj0
= 0 ;
3454 (char *) "self", NULL
3457 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXEventCount",kwnames
,&obj0
)) goto fail
;
3458 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3459 if (SWIG_arg_fail(1)) SWIG_fail
;
3461 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3462 result
= (int)((wxActiveXWindow
const *)arg1
)->GetAXEventCount();
3464 wxPyEndAllowThreads(__tstate
);
3465 if (PyErr_Occurred()) SWIG_fail
;
3468 resultobj
= SWIG_From_int((int)(result
));
3476 static PyObject
*_wrap_ActiveXWindow_GetAXEventDesc(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3477 PyObject
*resultobj
;
3478 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3481 PyObject
* obj0
= 0 ;
3482 PyObject
* obj1
= 0 ;
3484 (char *) "self",(char *) "idx", NULL
3487 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ActiveXWindow_GetAXEventDesc",kwnames
,&obj0
,&obj1
)) goto fail
;
3488 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3489 if (SWIG_arg_fail(1)) SWIG_fail
;
3491 arg2
= (int)(SWIG_As_int(obj1
));
3492 if (SWIG_arg_fail(2)) SWIG_fail
;
3495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3497 wxFuncX
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetAXEventDesc(arg2
);
3498 result
= (wxFuncX
*) &_result_ref
;
3501 wxPyEndAllowThreads(__tstate
);
3502 if (PyErr_Occurred()) SWIG_fail
;
3504 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncX
, 0);
3511 static PyObject
*_wrap_ActiveXWindow_GetAXPropCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3512 PyObject
*resultobj
;
3513 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3515 PyObject
* obj0
= 0 ;
3517 (char *) "self", NULL
3520 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXPropCount",kwnames
,&obj0
)) goto fail
;
3521 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3522 if (SWIG_arg_fail(1)) SWIG_fail
;
3524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3525 result
= (int)((wxActiveXWindow
const *)arg1
)->GetAXPropCount();
3527 wxPyEndAllowThreads(__tstate
);
3528 if (PyErr_Occurred()) SWIG_fail
;
3531 resultobj
= SWIG_From_int((int)(result
));
3539 static PyObject
*_wrap_ActiveXWindow_GetAXPropDesc__SWIG_0(PyObject
*, PyObject
*args
) {
3540 PyObject
*resultobj
;
3541 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3544 PyObject
* obj0
= 0 ;
3545 PyObject
* obj1
= 0 ;
3547 if(!PyArg_ParseTuple(args
,(char *)"OO:ActiveXWindow_GetAXPropDesc",&obj0
,&obj1
)) goto fail
;
3548 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3549 if (SWIG_arg_fail(1)) SWIG_fail
;
3551 arg2
= (int)(SWIG_As_int(obj1
));
3552 if (SWIG_arg_fail(2)) SWIG_fail
;
3555 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3557 wxPropX
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetAXPropDesc(arg2
);
3558 result
= (wxPropX
*) &_result_ref
;
3561 wxPyEndAllowThreads(__tstate
);
3562 if (PyErr_Occurred()) SWIG_fail
;
3564 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPropX
, 0);
3571 static PyObject
*_wrap_ActiveXWindow_GetAXPropDesc__SWIG_1(PyObject
*, PyObject
*args
) {
3572 PyObject
*resultobj
;
3573 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3574 wxString
*arg2
= 0 ;
3576 bool temp2
= false ;
3577 PyObject
* obj0
= 0 ;
3578 PyObject
* obj1
= 0 ;
3580 if(!PyArg_ParseTuple(args
,(char *)"OO:ActiveXWindow_GetAXPropDesc",&obj0
,&obj1
)) goto fail
;
3581 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3582 if (SWIG_arg_fail(1)) SWIG_fail
;
3584 arg2
= wxString_in_helper(obj1
);
3585 if (arg2
== NULL
) SWIG_fail
;
3589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3591 wxPropX
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetAXPropDesc((wxString
const &)*arg2
);
3592 result
= (wxPropX
*) &_result_ref
;
3595 wxPyEndAllowThreads(__tstate
);
3596 if (PyErr_Occurred()) SWIG_fail
;
3598 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPropX
, 0);
3613 static PyObject
*_wrap_ActiveXWindow_GetAXPropDesc(PyObject
*self
, PyObject
*args
) {
3618 argc
= PyObject_Length(args
);
3619 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
3620 argv
[ii
] = PyTuple_GetItem(args
,ii
);
3626 if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxActiveXWindow
, 0) == -1) {
3635 _v
= PyString_Check(argv
[1]) || PyUnicode_Check(argv
[1]);
3638 return _wrap_ActiveXWindow_GetAXPropDesc__SWIG_1(self
,args
);
3646 if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxActiveXWindow
, 0) == -1) {
3654 _v
= SWIG_Check_int(argv
[1]);
3656 return _wrap_ActiveXWindow_GetAXPropDesc__SWIG_0(self
,args
);
3661 PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'ActiveXWindow_GetAXPropDesc'");
3666 static PyObject
*_wrap_ActiveXWindow_GetAXMethodCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3667 PyObject
*resultobj
;
3668 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3670 PyObject
* obj0
= 0 ;
3672 (char *) "self", NULL
3675 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXMethodCount",kwnames
,&obj0
)) goto fail
;
3676 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3677 if (SWIG_arg_fail(1)) SWIG_fail
;
3679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3680 result
= (int)((wxActiveXWindow
const *)arg1
)->GetAXMethodCount();
3682 wxPyEndAllowThreads(__tstate
);
3683 if (PyErr_Occurred()) SWIG_fail
;
3686 resultobj
= SWIG_From_int((int)(result
));
3694 static PyObject
*_wrap_ActiveXWindow_GetAXMethodDesc__SWIG_0(PyObject
*, PyObject
*args
) {
3695 PyObject
*resultobj
;
3696 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3699 PyObject
* obj0
= 0 ;
3700 PyObject
* obj1
= 0 ;
3702 if(!PyArg_ParseTuple(args
,(char *)"OO:ActiveXWindow_GetAXMethodDesc",&obj0
,&obj1
)) goto fail
;
3703 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3704 if (SWIG_arg_fail(1)) SWIG_fail
;
3706 arg2
= (int)(SWIG_As_int(obj1
));
3707 if (SWIG_arg_fail(2)) SWIG_fail
;
3710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3712 wxFuncX
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetAXMethodDesc(arg2
);
3713 result
= (wxFuncX
*) &_result_ref
;
3716 wxPyEndAllowThreads(__tstate
);
3717 if (PyErr_Occurred()) SWIG_fail
;
3719 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncX
, 0);
3726 static PyObject
*_wrap_ActiveXWindow_GetAXMethodDesc__SWIG_1(PyObject
*, PyObject
*args
) {
3727 PyObject
*resultobj
;
3728 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3729 wxString
*arg2
= 0 ;
3731 bool temp2
= false ;
3732 PyObject
* obj0
= 0 ;
3733 PyObject
* obj1
= 0 ;
3735 if(!PyArg_ParseTuple(args
,(char *)"OO:ActiveXWindow_GetAXMethodDesc",&obj0
,&obj1
)) goto fail
;
3736 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3737 if (SWIG_arg_fail(1)) SWIG_fail
;
3739 arg2
= wxString_in_helper(obj1
);
3740 if (arg2
== NULL
) SWIG_fail
;
3744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3746 wxFuncX
const &_result_ref
= ((wxActiveXWindow
const *)arg1
)->GetAXMethodDesc((wxString
const &)*arg2
);
3747 result
= (wxFuncX
*) &_result_ref
;
3750 wxPyEndAllowThreads(__tstate
);
3751 if (PyErr_Occurred()) SWIG_fail
;
3753 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncX
, 0);
3768 static PyObject
*_wrap_ActiveXWindow_GetAXMethodDesc(PyObject
*self
, PyObject
*args
) {
3773 argc
= PyObject_Length(args
);
3774 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
3775 argv
[ii
] = PyTuple_GetItem(args
,ii
);
3781 if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxActiveXWindow
, 0) == -1) {
3790 _v
= PyString_Check(argv
[1]) || PyUnicode_Check(argv
[1]);
3793 return _wrap_ActiveXWindow_GetAXMethodDesc__SWIG_1(self
,args
);
3801 if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxActiveXWindow
, 0) == -1) {
3809 _v
= SWIG_Check_int(argv
[1]);
3811 return _wrap_ActiveXWindow_GetAXMethodDesc__SWIG_0(self
,args
);
3816 PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'ActiveXWindow_GetAXMethodDesc'");
3821 static PyObject
*_wrap_ActiveXWindow_GetAXEvents(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3822 PyObject
*resultobj
;
3823 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3824 wxFuncXArray
*result
;
3825 PyObject
* obj0
= 0 ;
3827 (char *) "self", NULL
3830 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXEvents",kwnames
,&obj0
)) goto fail
;
3831 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3832 if (SWIG_arg_fail(1)) SWIG_fail
;
3834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3836 wxFuncXArray
const &_result_ref
= (arg1
)->GetAXEvents();
3837 result
= (wxFuncXArray
*) &_result_ref
;
3840 wxPyEndAllowThreads(__tstate
);
3841 if (PyErr_Occurred()) SWIG_fail
;
3843 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncXArray
, 0);
3850 static PyObject
*_wrap_ActiveXWindow_GetAXMethods(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3851 PyObject
*resultobj
;
3852 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3853 wxFuncXArray
*result
;
3854 PyObject
* obj0
= 0 ;
3856 (char *) "self", NULL
3859 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXMethods",kwnames
,&obj0
)) goto fail
;
3860 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3861 if (SWIG_arg_fail(1)) SWIG_fail
;
3863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3865 wxFuncXArray
const &_result_ref
= (arg1
)->GetAXMethods();
3866 result
= (wxFuncXArray
*) &_result_ref
;
3869 wxPyEndAllowThreads(__tstate
);
3870 if (PyErr_Occurred()) SWIG_fail
;
3872 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFuncXArray
, 0);
3879 static PyObject
*_wrap_ActiveXWindow_GetAXProperties(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3880 PyObject
*resultobj
;
3881 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3882 wxPropXArray
*result
;
3883 PyObject
* obj0
= 0 ;
3885 (char *) "self", NULL
3888 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXWindow_GetAXProperties",kwnames
,&obj0
)) goto fail
;
3889 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3890 if (SWIG_arg_fail(1)) SWIG_fail
;
3892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3894 wxPropXArray
const &_result_ref
= (arg1
)->GetAXProperties();
3895 result
= (wxPropXArray
*) &_result_ref
;
3898 wxPyEndAllowThreads(__tstate
);
3899 if (PyErr_Occurred()) SWIG_fail
;
3901 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPropXArray
, 0);
3908 static PyObject
*_wrap_ActiveXWindow_SetAXProp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3909 PyObject
*resultobj
;
3910 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3911 wxString
*arg2
= 0 ;
3912 PyObject
*arg3
= (PyObject
*) 0 ;
3913 bool temp2
= false ;
3914 PyObject
* obj0
= 0 ;
3915 PyObject
* obj1
= 0 ;
3916 PyObject
* obj2
= 0 ;
3918 (char *) "self",(char *) "name",(char *) "value", NULL
3921 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ActiveXWindow_SetAXProp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
3922 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3923 if (SWIG_arg_fail(1)) SWIG_fail
;
3925 arg2
= wxString_in_helper(obj1
);
3926 if (arg2
== NULL
) SWIG_fail
;
3931 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3932 (arg1
)->SetAXProp((wxString
const &)*arg2
,arg3
);
3934 wxPyEndAllowThreads(__tstate
);
3935 if (PyErr_Occurred()) SWIG_fail
;
3937 Py_INCREF(Py_None
); resultobj
= Py_None
;
3952 static PyObject
*_wrap_ActiveXWindow_GetAXProp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3953 PyObject
*resultobj
;
3954 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3955 wxString
*arg2
= 0 ;
3957 bool temp2
= false ;
3958 PyObject
* obj0
= 0 ;
3959 PyObject
* obj1
= 0 ;
3961 (char *) "self",(char *) "name", NULL
3964 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ActiveXWindow_GetAXProp",kwnames
,&obj0
,&obj1
)) goto fail
;
3965 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
3966 if (SWIG_arg_fail(1)) SWIG_fail
;
3968 arg2
= wxString_in_helper(obj1
);
3969 if (arg2
== NULL
) SWIG_fail
;
3973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3974 result
= (PyObject
*)(arg1
)->GetAXProp((wxString
const &)*arg2
);
3976 wxPyEndAllowThreads(__tstate
);
3977 if (PyErr_Occurred()) SWIG_fail
;
3994 static PyObject
*_wrap_ActiveXWindow__CallAXMethod(PyObject
*, PyObject
*args
) {
3995 PyObject
*resultobj
;
3996 wxActiveXWindow
*arg1
= (wxActiveXWindow
*) 0 ;
3997 wxString
*arg2
= 0 ;
3998 PyObject
*arg3
= (PyObject
*) 0 ;
4000 bool temp2
= false ;
4001 PyObject
* obj0
= 0 ;
4002 PyObject
* obj1
= 0 ;
4003 PyObject
* obj2
= 0 ;
4005 if(!PyArg_ParseTuple(args
,(char *)"OOO:ActiveXWindow__CallAXMethod",&obj0
,&obj1
,&obj2
)) goto fail
;
4006 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXWindow
, SWIG_POINTER_EXCEPTION
| 0);
4007 if (SWIG_arg_fail(1)) SWIG_fail
;
4009 arg2
= wxString_in_helper(obj1
);
4010 if (arg2
== NULL
) SWIG_fail
;
4015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4016 result
= (PyObject
*)(arg1
)->_CallAXMethod((wxString
const &)*arg2
,arg3
);
4018 wxPyEndAllowThreads(__tstate
);
4019 if (PyErr_Occurred()) SWIG_fail
;
4036 static PyObject
* ActiveXWindow_swigregister(PyObject
*, PyObject
*args
) {
4038 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4039 SWIG_TypeClientData(SWIGTYPE_p_wxActiveXWindow
, obj
);
4041 return Py_BuildValue((char *)"");
4043 static PyObject
*_wrap_RegisterActiveXEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4044 PyObject
*resultobj
;
4045 wxString
*arg1
= 0 ;
4047 bool temp1
= false ;
4048 PyObject
* obj0
= 0 ;
4050 (char *) "eventName", NULL
4053 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RegisterActiveXEvent",kwnames
,&obj0
)) goto fail
;
4055 arg1
= wxString_in_helper(obj0
);
4056 if (arg1
== NULL
) SWIG_fail
;
4060 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4061 result
= (wxEventType
)RegisterActiveXEvent((wxString
const &)*arg1
);
4063 wxPyEndAllowThreads(__tstate
);
4064 if (PyErr_Occurred()) SWIG_fail
;
4067 resultobj
= SWIG_From_int((int)(result
));
4083 static PyObject
*_wrap_ActiveXEvent_EventName(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4084 PyObject
*resultobj
;
4085 wxActiveXEvent
*arg1
= (wxActiveXEvent
*) 0 ;
4087 PyObject
* obj0
= 0 ;
4089 (char *) "self", NULL
4092 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ActiveXEvent_EventName",kwnames
,&obj0
)) goto fail
;
4093 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXEvent
, SWIG_POINTER_EXCEPTION
| 0);
4094 if (SWIG_arg_fail(1)) SWIG_fail
;
4096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4097 result
= (arg1
)->EventName();
4099 wxPyEndAllowThreads(__tstate
);
4100 if (PyErr_Occurred()) SWIG_fail
;
4104 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4106 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4115 static PyObject
*_wrap_ActiveXEvent__preCallInit(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4116 PyObject
*resultobj
;
4117 wxActiveXEvent
*arg1
= (wxActiveXEvent
*) 0 ;
4118 PyObject
*arg2
= (PyObject
*) 0 ;
4119 PyObject
* obj0
= 0 ;
4120 PyObject
* obj1
= 0 ;
4122 (char *) "self",(char *) "pyself", NULL
4125 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ActiveXEvent__preCallInit",kwnames
,&obj0
,&obj1
)) goto fail
;
4126 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXEvent
, SWIG_POINTER_EXCEPTION
| 0);
4127 if (SWIG_arg_fail(1)) SWIG_fail
;
4130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4131 wxActiveXEvent__preCallInit(arg1
,arg2
);
4133 wxPyEndAllowThreads(__tstate
);
4134 if (PyErr_Occurred()) SWIG_fail
;
4136 Py_INCREF(Py_None
); resultobj
= Py_None
;
4143 static PyObject
*_wrap_ActiveXEvent__postCallCleanup(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4144 PyObject
*resultobj
;
4145 wxActiveXEvent
*arg1
= (wxActiveXEvent
*) 0 ;
4146 PyObject
*arg2
= (PyObject
*) 0 ;
4147 PyObject
* obj0
= 0 ;
4148 PyObject
* obj1
= 0 ;
4150 (char *) "self",(char *) "pyself", NULL
4153 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ActiveXEvent__postCallCleanup",kwnames
,&obj0
,&obj1
)) goto fail
;
4154 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxActiveXEvent
, SWIG_POINTER_EXCEPTION
| 0);
4155 if (SWIG_arg_fail(1)) SWIG_fail
;
4158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4159 wxActiveXEvent__postCallCleanup(arg1
,arg2
);
4161 wxPyEndAllowThreads(__tstate
);
4162 if (PyErr_Occurred()) SWIG_fail
;
4164 Py_INCREF(Py_None
); resultobj
= Py_None
;
4171 static PyObject
* ActiveXEvent_swigregister(PyObject
*, PyObject
*args
) {
4173 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4174 SWIG_TypeClientData(SWIGTYPE_p_wxActiveXEvent
, obj
);
4176 return Py_BuildValue((char *)"");
4178 static PyObject
*_wrap_new_IEHtmlWindowBase(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4179 PyObject
*resultobj
;
4180 wxWindow
*arg1
= (wxWindow
*) 0 ;
4182 int arg3
= (int) -1 ;
4183 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4184 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4185 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4186 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4187 long arg6
= (long) 0 ;
4188 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
4189 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
4190 wxIEHtmlWindowBase
*result
;
4193 bool temp7
= false ;
4194 PyObject
* obj0
= 0 ;
4195 PyObject
* obj1
= 0 ;
4196 PyObject
* obj2
= 0 ;
4197 PyObject
* obj3
= 0 ;
4198 PyObject
* obj4
= 0 ;
4199 PyObject
* obj5
= 0 ;
4200 PyObject
* obj6
= 0 ;
4202 (char *) "parent",(char *) "clsId",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4205 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:new_IEHtmlWindowBase",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
4206 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4207 if (SWIG_arg_fail(1)) SWIG_fail
;
4209 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_CLSID
, SWIG_POINTER_EXCEPTION
| 0);
4210 if (SWIG_arg_fail(2)) SWIG_fail
;
4212 SWIG_null_ref("CLSID");
4214 if (SWIG_arg_fail(2)) SWIG_fail
;
4218 arg3
= (int)(SWIG_As_int(obj2
));
4219 if (SWIG_arg_fail(3)) SWIG_fail
;
4225 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4231 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4236 arg6
= (long)(SWIG_As_long(obj5
));
4237 if (SWIG_arg_fail(6)) SWIG_fail
;
4242 arg7
= wxString_in_helper(obj6
);
4243 if (arg7
== NULL
) SWIG_fail
;
4248 if (!wxPyCheckForApp()) SWIG_fail
;
4249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4250 result
= (wxIEHtmlWindowBase
*)new wxIEHtmlWindowBase(arg1
,(CLSID
const &)*arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
4252 wxPyEndAllowThreads(__tstate
);
4253 if (PyErr_Occurred()) SWIG_fail
;
4255 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxIEHtmlWindowBase
, 1);
4270 static PyObject
*_wrap_IEHtmlWindowBase_SetCharset(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4271 PyObject
*resultobj
;
4272 wxIEHtmlWindowBase
*arg1
= (wxIEHtmlWindowBase
*) 0 ;
4273 wxString
*arg2
= 0 ;
4274 bool temp2
= false ;
4275 PyObject
* obj0
= 0 ;
4276 PyObject
* obj1
= 0 ;
4278 (char *) "self",(char *) "charset", NULL
4281 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IEHtmlWindowBase_SetCharset",kwnames
,&obj0
,&obj1
)) goto fail
;
4282 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIEHtmlWindowBase
, SWIG_POINTER_EXCEPTION
| 0);
4283 if (SWIG_arg_fail(1)) SWIG_fail
;
4285 arg2
= wxString_in_helper(obj1
);
4286 if (arg2
== NULL
) SWIG_fail
;
4290 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4291 (arg1
)->SetCharset((wxString
const &)*arg2
);
4293 wxPyEndAllowThreads(__tstate
);
4294 if (PyErr_Occurred()) SWIG_fail
;
4296 Py_INCREF(Py_None
); resultobj
= Py_None
;
4311 static PyObject
*_wrap_IEHtmlWindowBase_LoadString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4312 PyObject
*resultobj
;
4313 wxIEHtmlWindowBase
*arg1
= (wxIEHtmlWindowBase
*) 0 ;
4314 wxString
*arg2
= 0 ;
4316 bool temp2
= false ;
4317 PyObject
* obj0
= 0 ;
4318 PyObject
* obj1
= 0 ;
4320 (char *) "self",(char *) "html", NULL
4323 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IEHtmlWindowBase_LoadString",kwnames
,&obj0
,&obj1
)) goto fail
;
4324 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIEHtmlWindowBase
, SWIG_POINTER_EXCEPTION
| 0);
4325 if (SWIG_arg_fail(1)) SWIG_fail
;
4327 arg2
= wxString_in_helper(obj1
);
4328 if (arg2
== NULL
) SWIG_fail
;
4332 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4333 result
= (bool)(arg1
)->LoadString((wxString
const &)*arg2
);
4335 wxPyEndAllowThreads(__tstate
);
4336 if (PyErr_Occurred()) SWIG_fail
;
4339 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4355 static PyObject
*_wrap_IEHtmlWindowBase_LoadStream(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4356 PyObject
*resultobj
;
4357 wxIEHtmlWindowBase
*arg1
= (wxIEHtmlWindowBase
*) 0 ;
4358 wxInputStream
*arg2
= (wxInputStream
*) 0 ;
4360 wxPyInputStream
*temp2
;
4362 PyObject
* obj0
= 0 ;
4363 PyObject
* obj1
= 0 ;
4365 (char *) "self",(char *) "is", NULL
4368 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IEHtmlWindowBase_LoadStream",kwnames
,&obj0
,&obj1
)) goto fail
;
4369 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIEHtmlWindowBase
, SWIG_POINTER_EXCEPTION
| 0);
4370 if (SWIG_arg_fail(1)) SWIG_fail
;
4372 if (wxPyConvertSwigPtr(obj1
, (void **)&temp2
, wxT("wxPyInputStream"))) {
4373 arg2
= temp2
->m_wxis
;
4376 PyErr_Clear(); // clear the failure of the wxPyConvert above
4377 arg2
= wxPyCBInputStream_create(obj1
, false);
4379 PyErr_SetString(PyExc_TypeError
, "Expected wxInputStream or Python file-like object.");
4386 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4387 result
= (bool)(arg1
)->LoadStream(arg2
);
4389 wxPyEndAllowThreads(__tstate
);
4390 if (PyErr_Occurred()) SWIG_fail
;
4393 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4409 static PyObject
*_wrap_IEHtmlWindowBase_GetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4410 PyObject
*resultobj
;
4411 wxIEHtmlWindowBase
*arg1
= (wxIEHtmlWindowBase
*) 0 ;
4414 PyObject
* obj0
= 0 ;
4415 PyObject
* obj1
= 0 ;
4417 (char *) "self",(char *) "asHTML", NULL
4420 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IEHtmlWindowBase_GetStringSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
4421 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIEHtmlWindowBase
, SWIG_POINTER_EXCEPTION
| 0);
4422 if (SWIG_arg_fail(1)) SWIG_fail
;
4424 arg2
= (bool)(SWIG_As_bool(obj1
));
4425 if (SWIG_arg_fail(2)) SWIG_fail
;
4428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4429 result
= (arg1
)->GetStringSelection(arg2
);
4431 wxPyEndAllowThreads(__tstate
);
4432 if (PyErr_Occurred()) SWIG_fail
;
4436 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4438 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4447 static PyObject
*_wrap_IEHtmlWindowBase_GetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4448 PyObject
*resultobj
;
4449 wxIEHtmlWindowBase
*arg1
= (wxIEHtmlWindowBase
*) 0 ;
4452 PyObject
* obj0
= 0 ;
4453 PyObject
* obj1
= 0 ;
4455 (char *) "self",(char *) "asHTML", NULL
4458 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IEHtmlWindowBase_GetText",kwnames
,&obj0
,&obj1
)) goto fail
;
4459 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIEHtmlWindowBase
, SWIG_POINTER_EXCEPTION
| 0);
4460 if (SWIG_arg_fail(1)) SWIG_fail
;
4462 arg2
= (bool)(SWIG_As_bool(obj1
));
4463 if (SWIG_arg_fail(2)) SWIG_fail
;
4466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4467 result
= (arg1
)->GetText(arg2
);
4469 wxPyEndAllowThreads(__tstate
);
4470 if (PyErr_Occurred()) SWIG_fail
;
4474 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4476 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4485 static PyObject
* IEHtmlWindowBase_swigregister(PyObject
*, PyObject
*args
) {
4487 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4488 SWIG_TypeClientData(SWIGTYPE_p_wxIEHtmlWindowBase
, obj
);
4490 return Py_BuildValue((char *)"");
4492 static PyMethodDef SwigMethods
[] = {
4493 { (char *)"new_CLSID", (PyCFunction
) _wrap_new_CLSID
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4494 { (char *)"delete_CLSID", (PyCFunction
) _wrap_delete_CLSID
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4495 { (char *)"CLSID_GetCLSIDString", (PyCFunction
) _wrap_CLSID_GetCLSIDString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4496 { (char *)"CLSID_GetProgIDString", (PyCFunction
) _wrap_CLSID_GetProgIDString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4497 { (char *)"CLSID_swigregister", CLSID_swigregister
, METH_VARARGS
, NULL
},
4498 { (char *)"ParamX_flags_get", (PyCFunction
) _wrap_ParamX_flags_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4499 { (char *)"ParamX_isPtr_get", (PyCFunction
) _wrap_ParamX_isPtr_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4500 { (char *)"ParamX_isSafeArray_get", (PyCFunction
) _wrap_ParamX_isSafeArray_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4501 { (char *)"ParamX_isOptional_get", (PyCFunction
) _wrap_ParamX_isOptional_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4502 { (char *)"ParamX_vt_get", (PyCFunction
) _wrap_ParamX_vt_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4503 { (char *)"ParamX_name_get", (PyCFunction
) _wrap_ParamX_name_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4504 { (char *)"ParamX_vt_type_get", (PyCFunction
) _wrap_ParamX_vt_type_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4505 { (char *)"ParamX_IsIn", (PyCFunction
) _wrap_ParamX_IsIn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4506 { (char *)"ParamX_IsOut", (PyCFunction
) _wrap_ParamX_IsOut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4507 { (char *)"ParamX_IsRetVal", (PyCFunction
) _wrap_ParamX_IsRetVal
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4508 { (char *)"ParamX_swigregister", ParamX_swigregister
, METH_VARARGS
, NULL
},
4509 { (char *)"FuncX_name_get", (PyCFunction
) _wrap_FuncX_name_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4510 { (char *)"FuncX_memid_get", (PyCFunction
) _wrap_FuncX_memid_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4511 { (char *)"FuncX_hasOut_get", (PyCFunction
) _wrap_FuncX_hasOut_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4512 { (char *)"FuncX_retType_get", (PyCFunction
) _wrap_FuncX_retType_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4513 { (char *)"FuncX_params_get", (PyCFunction
) _wrap_FuncX_params_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4514 { (char *)"FuncX_swigregister", FuncX_swigregister
, METH_VARARGS
, NULL
},
4515 { (char *)"PropX_name_get", (PyCFunction
) _wrap_PropX_name_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4516 { (char *)"PropX_memid_get", (PyCFunction
) _wrap_PropX_memid_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4517 { (char *)"PropX_type_get", (PyCFunction
) _wrap_PropX_type_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4518 { (char *)"PropX_arg_get", (PyCFunction
) _wrap_PropX_arg_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4519 { (char *)"PropX_putByRef_get", (PyCFunction
) _wrap_PropX_putByRef_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4520 { (char *)"PropX_CanGet", (PyCFunction
) _wrap_PropX_CanGet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4521 { (char *)"PropX_CanSet", (PyCFunction
) _wrap_PropX_CanSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4522 { (char *)"PropX_swigregister", PropX_swigregister
, METH_VARARGS
, NULL
},
4523 { (char *)"ParamXArray___nonzero__", (PyCFunction
) _wrap_ParamXArray___nonzero__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4524 { (char *)"ParamXArray___len__", (PyCFunction
) _wrap_ParamXArray___len__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4525 { (char *)"ParamXArray___getitem__", (PyCFunction
) _wrap_ParamXArray___getitem__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4526 { (char *)"ParamXArray_swigregister", ParamXArray_swigregister
, METH_VARARGS
, NULL
},
4527 { (char *)"FuncXArray___nonzero__", (PyCFunction
) _wrap_FuncXArray___nonzero__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4528 { (char *)"FuncXArray___len__", (PyCFunction
) _wrap_FuncXArray___len__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4529 { (char *)"FuncXArray___getitem__", (PyCFunction
) _wrap_FuncXArray___getitem__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4530 { (char *)"FuncXArray_swigregister", FuncXArray_swigregister
, METH_VARARGS
, NULL
},
4531 { (char *)"PropXArray___nonzero__", (PyCFunction
) _wrap_PropXArray___nonzero__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4532 { (char *)"PropXArray___len__", (PyCFunction
) _wrap_PropXArray___len__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4533 { (char *)"PropXArray___getitem__", (PyCFunction
) _wrap_PropXArray___getitem__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4534 { (char *)"PropXArray_swigregister", PropXArray_swigregister
, METH_VARARGS
, NULL
},
4535 { (char *)"new_ActiveXWindow", (PyCFunction
) _wrap_new_ActiveXWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4536 { (char *)"ActiveXWindow_GetCLSID", (PyCFunction
) _wrap_ActiveXWindow_GetCLSID
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4537 { (char *)"ActiveXWindow_GetAXEventCount", (PyCFunction
) _wrap_ActiveXWindow_GetAXEventCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4538 { (char *)"ActiveXWindow_GetAXEventDesc", (PyCFunction
) _wrap_ActiveXWindow_GetAXEventDesc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4539 { (char *)"ActiveXWindow_GetAXPropCount", (PyCFunction
) _wrap_ActiveXWindow_GetAXPropCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4540 { (char *)"ActiveXWindow_GetAXPropDesc", _wrap_ActiveXWindow_GetAXPropDesc
, METH_VARARGS
, NULL
},
4541 { (char *)"ActiveXWindow_GetAXMethodCount", (PyCFunction
) _wrap_ActiveXWindow_GetAXMethodCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4542 { (char *)"ActiveXWindow_GetAXMethodDesc", _wrap_ActiveXWindow_GetAXMethodDesc
, METH_VARARGS
, NULL
},
4543 { (char *)"ActiveXWindow_GetAXEvents", (PyCFunction
) _wrap_ActiveXWindow_GetAXEvents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4544 { (char *)"ActiveXWindow_GetAXMethods", (PyCFunction
) _wrap_ActiveXWindow_GetAXMethods
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4545 { (char *)"ActiveXWindow_GetAXProperties", (PyCFunction
) _wrap_ActiveXWindow_GetAXProperties
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4546 { (char *)"ActiveXWindow_SetAXProp", (PyCFunction
) _wrap_ActiveXWindow_SetAXProp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4547 { (char *)"ActiveXWindow_GetAXProp", (PyCFunction
) _wrap_ActiveXWindow_GetAXProp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4548 { (char *)"ActiveXWindow__CallAXMethod", _wrap_ActiveXWindow__CallAXMethod
, METH_VARARGS
, NULL
},
4549 { (char *)"ActiveXWindow_swigregister", ActiveXWindow_swigregister
, METH_VARARGS
, NULL
},
4550 { (char *)"RegisterActiveXEvent", (PyCFunction
) _wrap_RegisterActiveXEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4551 { (char *)"ActiveXEvent_EventName", (PyCFunction
) _wrap_ActiveXEvent_EventName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4552 { (char *)"ActiveXEvent__preCallInit", (PyCFunction
) _wrap_ActiveXEvent__preCallInit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4553 { (char *)"ActiveXEvent__postCallCleanup", (PyCFunction
) _wrap_ActiveXEvent__postCallCleanup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4554 { (char *)"ActiveXEvent_swigregister", ActiveXEvent_swigregister
, METH_VARARGS
, NULL
},
4555 { (char *)"new_IEHtmlWindowBase", (PyCFunction
) _wrap_new_IEHtmlWindowBase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4556 { (char *)"IEHtmlWindowBase_SetCharset", (PyCFunction
) _wrap_IEHtmlWindowBase_SetCharset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4557 { (char *)"IEHtmlWindowBase_LoadString", (PyCFunction
) _wrap_IEHtmlWindowBase_LoadString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4558 { (char *)"IEHtmlWindowBase_LoadStream", (PyCFunction
) _wrap_IEHtmlWindowBase_LoadStream
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4559 { (char *)"IEHtmlWindowBase_GetStringSelection", (PyCFunction
) _wrap_IEHtmlWindowBase_GetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4560 { (char *)"IEHtmlWindowBase_GetText", (PyCFunction
) _wrap_IEHtmlWindowBase_GetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
4561 { (char *)"IEHtmlWindowBase_swigregister", IEHtmlWindowBase_swigregister
, METH_VARARGS
, NULL
},
4562 { NULL
, NULL
, 0, NULL
}
4566 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
4568 static void *_p_wxControlTo_p_wxWindow(void *x
) {
4569 return (void *)((wxWindow
*) ((wxControl
*) x
));
4571 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
4572 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
4574 static void *_p_wxActiveXWindowTo_p_wxWindow(void *x
) {
4575 return (void *)((wxWindow
*) ((wxActiveXWindow
*) x
));
4577 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
4578 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
4580 static void *_p_wxIEHtmlWindowBaseTo_p_wxWindow(void *x
) {
4581 return (void *)((wxWindow
*) (wxActiveXWindow
*) ((wxIEHtmlWindowBase
*) x
));
4583 static void *_p_wxIEHtmlWindowBaseTo_p_wxActiveXWindow(void *x
) {
4584 return (void *)((wxActiveXWindow
*) ((wxIEHtmlWindowBase
*) x
));
4586 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
4587 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
4589 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
4590 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
4592 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
4593 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
4595 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
4596 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
4598 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
4599 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
4601 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
4602 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
4604 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
4605 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
4607 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
4608 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
4610 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
4611 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
4613 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
4614 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
4616 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
4617 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
4619 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
4620 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
4622 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
4623 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
4625 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
4626 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
4628 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
4629 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
4631 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
4632 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
4634 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
4635 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
4637 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
4638 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
4640 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
4641 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
4643 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
4644 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
4646 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
4647 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
4649 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
4650 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
4652 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
4653 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
4655 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
4656 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
4658 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
4659 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
4661 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
4662 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
4664 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
4665 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
4667 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
4668 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
4670 static void *_p_wxActiveXEventTo_p_wxEvent(void *x
) {
4671 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxActiveXEvent
*) x
));
4673 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
4674 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
4676 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
4677 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
4679 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
4680 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
4682 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
4683 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
4685 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
4686 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
4688 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
4689 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
4691 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
4692 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
4694 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
4695 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
4697 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
4698 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
4700 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
4701 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
4703 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
4704 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
4706 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
4707 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
4709 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
4710 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
4712 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
4713 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
4715 static void *_p_wxSizerTo_p_wxObject(void *x
) {
4716 return (void *)((wxObject
*) ((wxSizer
*) x
));
4718 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
4719 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
4721 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
4722 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
4724 static void *_p_wxEventTo_p_wxObject(void *x
) {
4725 return (void *)((wxObject
*) ((wxEvent
*) x
));
4727 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
4728 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
4730 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
4731 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
4733 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
4734 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
4736 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
4737 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
4739 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
4740 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
4742 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
4743 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
4745 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
4746 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
4748 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
4749 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
4751 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
4752 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
4754 static void *_p_wxControlTo_p_wxObject(void *x
) {
4755 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
4757 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
4758 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
4760 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
4761 return (void *)((wxObject
*) ((wxFSFile
*) x
));
4763 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
4764 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
4766 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
4767 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
4769 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
4770 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
4772 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
4773 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
4775 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
4776 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
4778 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
4779 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
4781 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
4782 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
4784 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
4785 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
4787 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
4788 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
4790 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
4791 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
4793 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
4794 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
4796 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
4797 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
4799 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
4800 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
4802 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
4803 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
4805 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
4806 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
4808 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
4809 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
4811 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
4812 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
4814 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
4815 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
4817 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
4818 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
4820 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
4821 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
4823 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
4824 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
4826 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
4827 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
4829 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
4830 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
4832 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
4833 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
4835 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
4836 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
4838 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
4839 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
4841 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
4842 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
4844 static void *_p_wxImageTo_p_wxObject(void *x
) {
4845 return (void *)((wxObject
*) ((wxImage
*) x
));
4847 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
4848 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
4850 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
4851 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
4853 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
4854 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
4856 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
4857 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
4859 static void *_p_wxActiveXWindowTo_p_wxObject(void *x
) {
4860 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxActiveXWindow
*) x
));
4862 static void *_p_wxWindowTo_p_wxObject(void *x
) {
4863 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
4865 static void *_p_wxMenuTo_p_wxObject(void *x
) {
4866 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
4868 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
4869 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
4871 static void *_p_wxActiveXEventTo_p_wxObject(void *x
) {
4872 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxActiveXEvent
*) x
));
4874 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
4875 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
4877 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
4878 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
4880 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
4881 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
4883 static void *_p_wxIEHtmlWindowBaseTo_p_wxObject(void *x
) {
4884 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxActiveXWindow
*) ((wxIEHtmlWindowBase
*) x
));
4886 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
4887 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
4889 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
4890 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
4892 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
4893 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
4895 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
4896 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
4898 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
4899 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
4901 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
4902 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
4904 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
4905 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
4907 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
4908 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
4910 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
4911 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
4913 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
4914 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
4916 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
4917 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
4919 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
4920 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
4922 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
4923 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
4925 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
4926 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
4928 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
4929 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
4931 static void *_p_wxActiveXWindowTo_p_wxEvtHandler(void *x
) {
4932 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxActiveXWindow
*) x
));
4934 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
4935 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
4937 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
4938 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
4940 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
4941 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
4943 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
4944 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
4946 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
4947 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
4949 static void *_p_wxIEHtmlWindowBaseTo_p_wxEvtHandler(void *x
) {
4950 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxActiveXWindow
*) ((wxIEHtmlWindowBase
*) x
));
4952 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
4953 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
4955 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
4956 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
4958 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
4959 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
4961 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
4962 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
4964 static void *_p_wxActiveXEventTo_p_wxCommandEvent(void *x
) {
4965 return (void *)((wxCommandEvent
*) ((wxActiveXEvent
*) x
));
4967 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
4968 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
4970 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
4971 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
4973 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
4974 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
4976 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
4977 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
4979 static swig_type_info _swigt__p_wxObject
[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxActiveXEvent", _p_wxActiveXEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxActiveXWindow", _p_wxActiveXWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIEHtmlWindowBase", _p_wxIEHtmlWindowBaseTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4980 static swig_type_info _swigt__p_unsigned_char
[] = {{"_p_unsigned_char", 0, "unsigned char *|byte *", 0, 0, 0, 0},{"_p_unsigned_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4981 static swig_type_info _swigt__p_wxFuncX
[] = {{"_p_wxFuncX", 0, "wxFuncX *", 0, 0, 0, 0},{"_p_wxFuncX", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4982 static swig_type_info _swigt__p_wxActiveXWindow
[] = {{"_p_wxActiveXWindow", 0, "wxActiveXWindow *", 0, 0, 0, 0},{"_p_wxActiveXWindow", 0, 0, 0, 0, 0, 0},{"_p_wxIEHtmlWindowBase", _p_wxIEHtmlWindowBaseTo_p_wxActiveXWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4983 static swig_type_info _swigt__p_wxWindow
[] = {{"_p_wxWindow", 0, "wxWindow *", 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxWindow", 0, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxActiveXWindow", _p_wxActiveXWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxIEHtmlWindowBase", _p_wxIEHtmlWindowBaseTo_p_wxWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4984 static swig_type_info _swigt__p_wxCommandEvent
[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxActiveXEvent", _p_wxActiveXEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4985 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *|wxUIntPtr *", 0, 0, 0, 0},{"_p_unsigned_long", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4986 static swig_type_info _swigt__p_unsigned_int
[] = {{"_p_unsigned_int", 0, "unsigned int *|time_t *", 0, 0, 0, 0},{"_p_unsigned_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4987 static swig_type_info _swigt__unsigned_int
[] = {{"_unsigned_int", 0, "unsigned int|std::size_t", 0, 0, 0, 0},{"_unsigned_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4988 static swig_type_info _swigt__p_form_ops_t
[] = {{"_p_form_ops_t", 0, "enum form_ops_t *|form_ops_t *", 0, 0, 0, 0},{"_p_form_ops_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4989 static swig_type_info _swigt__p_wxDuplexMode
[] = {{"_p_wxDuplexMode", 0, "enum wxDuplexMode *|wxDuplexMode *", 0, 0, 0, 0},{"_p_wxDuplexMode", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4990 static swig_type_info _swigt__p_char
[] = {{"_p_char", 0, "char *", 0, 0, 0, 0},{"_p_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4991 static swig_type_info _swigt__p_unsigned_short
[] = {{"_p_unsigned_short", 0, "unsigned short *|VARTYPE *", 0, 0, 0, 0},{"_p_unsigned_short", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4992 static swig_type_info _swigt__p_wxInputStream
[] = {{"_p_wxInputStream", 0, "wxInputStream *", 0, 0, 0, 0},{"_p_wxInputStream", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4993 static swig_type_info _swigt__p_wxEvtHandler
[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxActiveXWindow", _p_wxActiveXWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", 0, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxIEHtmlWindowBase", _p_wxIEHtmlWindowBaseTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4994 static swig_type_info _swigt__p_wxPropX
[] = {{"_p_wxPropX", 0, "wxPropX *", 0, 0, 0, 0},{"_p_wxPropX", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4995 static swig_type_info _swigt__p_wxParamXArray
[] = {{"_p_wxParamXArray", 0, "wxParamXArray *", 0, 0, 0, 0},{"_p_wxParamXArray", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4996 static swig_type_info _swigt__p_wxFuncXArray
[] = {{"_p_wxFuncXArray", 0, "wxFuncXArray *", 0, 0, 0, 0},{"_p_wxFuncXArray", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4997 static swig_type_info _swigt__p_wxActiveXEvent
[] = {{"_p_wxActiveXEvent", 0, "wxActiveXEvent *", 0, 0, 0, 0},{"_p_wxActiveXEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4998 static swig_type_info _swigt__std__ptrdiff_t
[] = {{"_std__ptrdiff_t", 0, "std::ptrdiff_t", 0, 0, 0, 0},{"_std__ptrdiff_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
4999 static swig_type_info _swigt__ptrdiff_t
[] = {{"_ptrdiff_t", 0, "ptrdiff_t", 0, 0, 0, 0},{"_ptrdiff_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5000 static swig_type_info _swigt__p_long
[] = {{"_p_long", 0, "long *|MEMBERID *", 0, 0, 0, 0},{"_p_long", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5001 static swig_type_info _swigt__p_wxParamX
[] = {{"_p_wxParamX", 0, "wxParamX *", 0, 0, 0, 0},{"_p_wxParamX", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5002 static swig_type_info _swigt__p_wxIEHtmlWindowBase
[] = {{"_p_wxIEHtmlWindowBase", 0, "wxIEHtmlWindowBase *", 0, 0, 0, 0},{"_p_wxIEHtmlWindowBase", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5003 static swig_type_info _swigt__p_wxEvent
[] = {{"_p_wxEvent", 0, "wxEvent *", 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxEvent", 0, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxActiveXEvent", _p_wxActiveXEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5004 static swig_type_info _swigt__p_wxPaperSize
[] = {{"_p_wxPaperSize", 0, "enum wxPaperSize *|wxPaperSize *", 0, 0, 0, 0},{"_p_wxPaperSize", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5005 static swig_type_info _swigt__p_CLSID
[] = {{"_p_CLSID", 0, "CLSID *", 0, 0, 0, 0},{"_p_CLSID", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5006 static swig_type_info _swigt__p_wxPropXArray
[] = {{"_p_wxPropXArray", 0, "wxPropXArray *", 0, 0, 0, 0},{"_p_wxPropXArray", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5007 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *|wxEventType *", 0, 0, 0, 0},{"_p_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5009 static swig_type_info
*swig_types_initial
[] = {
5011 _swigt__p_unsigned_char
,
5013 _swigt__p_wxActiveXWindow
,
5015 _swigt__p_wxCommandEvent
,
5016 _swigt__p_unsigned_long
,
5017 _swigt__p_unsigned_int
,
5018 _swigt__unsigned_int
,
5019 _swigt__p_form_ops_t
,
5020 _swigt__p_wxDuplexMode
,
5022 _swigt__p_unsigned_short
,
5023 _swigt__p_wxInputStream
,
5024 _swigt__p_wxEvtHandler
,
5026 _swigt__p_wxParamXArray
,
5027 _swigt__p_wxFuncXArray
,
5028 _swigt__p_wxActiveXEvent
,
5029 _swigt__std__ptrdiff_t
,
5033 _swigt__p_wxIEHtmlWindowBase
,
5035 _swigt__p_wxPaperSize
,
5037 _swigt__p_wxPropXArray
,
5043 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
5045 static swig_const_info swig_const_table
[] = {
5046 {0, 0, 0, 0.0, 0, 0}};
5057 /* Python-specific SWIG API */
5058 #define SWIG_newvarlink() SWIG_Python_newvarlink()
5059 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
5060 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
5062 /* -----------------------------------------------------------------------------
5063 * global variable support code.
5064 * ----------------------------------------------------------------------------- */
5066 typedef struct swig_globalvar
{
5067 char *name
; /* Name of global variable */
5068 PyObject
*(*get_attr
)(); /* Return the current value */
5069 int (*set_attr
)(PyObject
*); /* Set the value */
5070 struct swig_globalvar
*next
;
5073 typedef struct swig_varlinkobject
{
5075 swig_globalvar
*vars
;
5076 } swig_varlinkobject
;
5079 swig_varlink_repr(swig_varlinkobject
*v
) {
5081 return PyString_FromString("<Swig global variables>");
5085 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int flags
) {
5086 swig_globalvar
*var
;
5088 fprintf(fp
,"Swig global variables { ");
5089 for (var
= v
->vars
; var
; var
=var
->next
) {
5090 fprintf(fp
,"%s", var
->name
);
5091 if (var
->next
) fprintf(fp
,", ");
5098 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
5099 swig_globalvar
*var
= v
->vars
;
5101 if (strcmp(var
->name
,n
) == 0) {
5102 return (*var
->get_attr
)();
5106 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
5111 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
5112 swig_globalvar
*var
= v
->vars
;
5114 if (strcmp(var
->name
,n
) == 0) {
5115 return (*var
->set_attr
)(p
);
5119 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
5123 static PyTypeObject varlinktype
= {
5124 PyObject_HEAD_INIT(0)
5125 0, /* Number of items in variable part (ob_size) */
5126 (char *)"swigvarlink", /* Type name (tp_name) */
5127 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
5128 0, /* Itemsize (tp_itemsize) */
5129 0, /* Deallocator (tp_dealloc) */
5130 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
5131 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
5132 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
5134 (reprfunc
) swig_varlink_repr
, /* tp_repr */
5135 0, /* tp_as_number */
5136 0, /* tp_as_sequence */
5137 0, /* tp_as_mapping */
5141 0, /* tp_getattro */
5142 0, /* tp_setattro */
5143 0, /* tp_as_buffer */
5146 #if PY_VERSION_HEX >= 0x02000000
5147 0, /* tp_traverse */
5150 #if PY_VERSION_HEX >= 0x02010000
5151 0, /* tp_richcompare */
5152 0, /* tp_weaklistoffset */
5154 #if PY_VERSION_HEX >= 0x02020000
5155 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
5157 #if PY_VERSION_HEX >= 0x02030000
5161 0,0,0,0 /* tp_alloc -> tp_next */
5165 /* Create a variable linking object for use later */
5167 SWIG_Python_newvarlink(void) {
5168 swig_varlinkobject
*result
= 0;
5169 result
= PyMem_NEW(swig_varlinkobject
,1);
5170 varlinktype
.ob_type
= &PyType_Type
; /* Patch varlinktype into a PyType */
5171 result
->ob_type
= &varlinktype
;
5173 result
->ob_refcnt
= 0;
5174 Py_XINCREF((PyObject
*) result
);
5175 return ((PyObject
*) result
);
5179 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
5180 swig_varlinkobject
*v
;
5182 v
= (swig_varlinkobject
*) p
;
5183 gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
5184 gv
->name
= (char *) malloc(strlen(name
)+1);
5185 strcpy(gv
->name
,name
);
5186 gv
->get_attr
= get_attr
;
5187 gv
->set_attr
= set_attr
;
5192 /* -----------------------------------------------------------------------------
5193 * constants/methods manipulation
5194 * ----------------------------------------------------------------------------- */
5196 /* Install Constants */
5198 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
5201 for (i
= 0; constants
[i
].type
; i
++) {
5202 switch(constants
[i
].type
) {
5204 obj
= PyInt_FromLong(constants
[i
].lvalue
);
5207 obj
= PyFloat_FromDouble(constants
[i
].dvalue
);
5209 case SWIG_PY_STRING
:
5210 if (constants
[i
].pvalue
) {
5211 obj
= PyString_FromString((char *) constants
[i
].pvalue
);
5217 case SWIG_PY_POINTER
:
5218 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
5220 case SWIG_PY_BINARY
:
5221 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
5228 PyDict_SetItemString(d
,constants
[i
].name
,obj
);
5234 /* -----------------------------------------------------------------------------*/
5235 /* Fix SwigMethods to carry the callback ptrs when needed */
5236 /* -----------------------------------------------------------------------------*/
5239 SWIG_Python_FixMethods(PyMethodDef
*methods
,
5240 swig_const_info
*const_table
,
5241 swig_type_info
**types
,
5242 swig_type_info
**types_initial
) {
5244 for (i
= 0; methods
[i
].ml_name
; ++i
) {
5245 char *c
= methods
[i
].ml_doc
;
5246 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
5248 swig_const_info
*ci
= 0;
5249 char *name
= c
+ 10;
5250 for (j
= 0; const_table
[j
].type
; j
++) {
5251 if (strncmp(const_table
[j
].name
, name
,
5252 strlen(const_table
[j
].name
)) == 0) {
5253 ci
= &(const_table
[j
]);
5258 size_t shift
= (ci
->ptype
) - types
;
5259 swig_type_info
*ty
= types_initial
[shift
];
5260 size_t ldoc
= (c
- methods
[i
].ml_doc
);
5261 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
5262 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
5264 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: (void *)(ci
->lvalue
);
5265 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
5267 strncpy(buff
, "swig_ptr: ", 10);
5269 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
5270 methods
[i
].ml_doc
= ndoc
;
5276 /* -----------------------------------------------------------------------------*
5277 * Initialize type list
5278 * -----------------------------------------------------------------------------*/
5280 #if PY_MAJOR_VERSION < 2
5281 /* PyModule_AddObject function was introduced in Python 2.0. The following function
5282 is copied out of Python/modsupport.c in python version 2.3.4 */
5284 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
5287 if (!PyModule_Check(m
)) {
5288 PyErr_SetString(PyExc_TypeError
,
5289 "PyModule_AddObject() needs module as first arg");
5293 PyErr_SetString(PyExc_TypeError
,
5294 "PyModule_AddObject() needs non-NULL value");
5298 dict
= PyModule_GetDict(m
);
5300 /* Internal error -- modules must have a dict! */
5301 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
5302 PyModule_GetName(m
));
5305 if (PyDict_SetItemString(dict
, name
, o
))
5312 static swig_type_info
**
5313 SWIG_Python_SetTypeListHandle(swig_type_info
**type_list_handle
) {
5314 static PyMethodDef swig_empty_runtime_method_table
[] = {
5320 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
5321 swig_empty_runtime_method_table
);
5322 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) type_list_handle
, NULL
);
5323 if (pointer
&& module) {
5324 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
5326 return type_list_handle
;
5329 static swig_type_info
**
5330 SWIG_Python_LookupTypePointer(swig_type_info
**type_list_handle
) {
5331 swig_type_info
**type_pointer
;
5333 /* first check if module already created */
5334 type_pointer
= SWIG_Python_GetTypeListHandle();
5336 return type_pointer
;
5338 /* create a new module and variable */
5339 return SWIG_Python_SetTypeListHandle(type_list_handle
);
5347 /* -----------------------------------------------------------------------------*
5348 * Partial Init method
5349 * -----------------------------------------------------------------------------*/
5351 #ifdef SWIG_LINK_RUNTIME
5355 SWIGEXPORT(void *) SWIG_ReturnGlobalTypeList(void *);
5361 SWIGEXPORT(void) SWIG_init(void) {
5362 static PyObject
*SWIG_globals
= 0;
5363 static int typeinit
= 0;
5366 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
5368 /* Fix SwigMethods to carry the callback ptrs when needed */
5369 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_types_initial
);
5371 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
5372 d
= PyModule_GetDict(m
);
5375 #ifdef SWIG_LINK_RUNTIME
5376 swig_type_list_handle
= (swig_type_info
**) SWIG_ReturnGlobalTypeList(swig_type_list_handle
);
5378 # ifndef SWIG_STATIC_RUNTIME
5379 swig_type_list_handle
= SWIG_Python_LookupTypePointer(swig_type_list_handle
);
5382 for (i
= 0; swig_types_initial
[i
]; i
++) {
5383 swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]);
5387 SWIG_InstallConstants(d
,swig_const_table
);