1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 /* for raw pointers */
989 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
990 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
991 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
992 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
993 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
994 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
995 #define swig_owntype int
997 /* for raw packed data */
998 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
999 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1001 /* for class or struct pointers */
1002 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1003 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1005 /* for C or C++ function pointers */
1006 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1007 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1009 /* for C++ member pointers, ie, member methods */
1010 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1011 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1016 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1017 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1018 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1020 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1021 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1022 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1023 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1024 #define SWIG_fail goto fail
1027 /* Runtime API implementation */
1029 /* Error manipulation */
1032 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1033 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1034 PyErr_SetObject(errtype
, obj
);
1036 SWIG_PYTHON_THREAD_END_BLOCK
;
1040 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1041 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1042 PyErr_SetString(errtype
, (char *) msg
);
1043 SWIG_PYTHON_THREAD_END_BLOCK
;
1046 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1048 /* Set a constant value */
1051 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1052 PyDict_SetItemString(d
, (char*) name
, obj
);
1056 /* Append a value to the result obj */
1058 SWIGINTERN PyObject
*
1059 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1060 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1063 } else if (result
== Py_None
) {
1067 if (!PyList_Check(result
)) {
1068 PyObject
*o2
= result
;
1069 result
= PyList_New(1);
1070 PyList_SetItem(result
, 0, o2
);
1072 PyList_Append(result
,obj
);
1081 } else if (result
== Py_None
) {
1085 if (!PyTuple_Check(result
)) {
1087 result
= PyTuple_New(1);
1088 PyTuple_SET_ITEM(result
, 0, o2
);
1090 o3
= PyTuple_New(1);
1091 PyTuple_SET_ITEM(o3
, 0, obj
);
1093 result
= PySequence_Concat(o2
, o3
);
1101 /* Unpack the argument tuple */
1104 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1110 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1111 name
, (min
== max
? "" : "at least "), min
);
1115 if (!PyTuple_Check(args
)) {
1116 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1119 register int l
= PyTuple_GET_SIZE(args
);
1121 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1122 name
, (min
== max
? "" : "at least "), min
, l
);
1124 } else if (l
> max
) {
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at most "), max
, l
);
1130 for (i
= 0; i
< l
; ++i
) {
1131 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1133 for (; l
< max
; ++l
) {
1141 /* A functor is a function object with one single object argument */
1142 #if PY_VERSION_HEX >= 0x02020000
1143 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1145 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1149 Helper for static pointer initialization for both C and C++ code, for example
1150 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1153 #define SWIG_STATIC_POINTER(var) var
1155 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1158 /* -----------------------------------------------------------------------------
1159 * Pointer declarations
1160 * ----------------------------------------------------------------------------- */
1162 /* Flags for new pointer objects */
1163 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1164 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1166 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1175 /* How to access Py_None */
1176 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1177 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1178 # ifndef SWIG_PYTHON_BUILD_NONE
1179 # define SWIG_PYTHON_BUILD_NONE
1184 #ifdef SWIG_PYTHON_BUILD_NONE
1187 # define Py_None SWIG_Py_None()
1189 SWIGRUNTIMEINLINE PyObject
*
1192 PyObject
*none
= Py_BuildValue("");
1196 SWIGRUNTIME PyObject
*
1199 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1204 /* The python void return value */
1206 SWIGRUNTIMEINLINE PyObject
*
1209 PyObject
*none
= Py_None
;
1214 /* PySwigClientData */
1225 SWIGRUNTIMEINLINE
int
1226 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1228 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1229 return data
? data
->implicitconv
: 0;
1232 SWIGRUNTIMEINLINE PyObject
*
1233 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1234 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1235 PyObject
*klass
= data
? data
->klass
: 0;
1236 return (klass
? klass
: PyExc_RuntimeError
);
1240 SWIGRUNTIME PySwigClientData
*
1241 PySwigClientData_New(PyObject
* obj
)
1246 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1247 /* the klass element */
1249 Py_INCREF(data
->klass
);
1250 /* the newraw method and newargs arguments used to create a new raw instance */
1251 if (PyClass_Check(obj
)) {
1253 data
->newargs
= obj
;
1256 #if (PY_VERSION_HEX < 0x02020000)
1259 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1262 Py_INCREF(data
->newraw
);
1263 data
->newargs
= PyTuple_New(1);
1264 PyTuple_SetItem(data
->newargs
, 0, obj
);
1266 data
->newargs
= obj
;
1268 Py_INCREF(data
->newargs
);
1270 /* the destroy method, aka as the C++ delete method */
1271 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1272 if (PyErr_Occurred()) {
1276 if (data
->destroy
) {
1278 Py_INCREF(data
->destroy
);
1279 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1281 data
->delargs
= !(flags
& (METH_O
));
1288 data
->implicitconv
= 0;
1294 PySwigClientData_Del(PySwigClientData
* data
)
1296 Py_XDECREF(data
->newraw
);
1297 Py_XDECREF(data
->newargs
);
1298 Py_XDECREF(data
->destroy
);
1301 /* =============== PySwigObject =====================*/
1311 SWIGRUNTIME PyObject
*
1312 PySwigObject_long(PySwigObject
*v
)
1314 return PyLong_FromVoidPtr(v
->ptr
);
1317 SWIGRUNTIME PyObject
*
1318 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1320 PyObject
*res
= NULL
;
1321 PyObject
*args
= PyTuple_New(1);
1323 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1324 PyObject
*ofmt
= PyString_FromString(fmt
);
1326 res
= PyString_Format(ofmt
,args
);
1335 SWIGRUNTIME PyObject
*
1336 PySwigObject_oct(PySwigObject
*v
)
1338 return PySwigObject_format("%o",v
);
1341 SWIGRUNTIME PyObject
*
1342 PySwigObject_hex(PySwigObject
*v
)
1344 return PySwigObject_format("%x",v
);
1347 SWIGRUNTIME PyObject
*
1349 PySwigObject_repr(PySwigObject
*v
)
1351 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1354 const char *name
= SWIG_TypePrettyName(v
->ty
);
1355 PyObject
*hex
= PySwigObject_hex(v
);
1356 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1360 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1362 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1364 PyString_ConcatAndDel(&repr
,nrep
);
1370 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1373 PyObject
*repr
= PySwigObject_repr(v
);
1375 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1378 fputs(PyString_AsString(repr
), fp
);
1386 SWIGRUNTIME PyObject
*
1387 PySwigObject_str(PySwigObject
*v
)
1389 char result
[SWIG_BUFFER_SIZE
];
1390 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1391 PyString_FromString(result
) : 0;
1395 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1399 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1402 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1404 SWIGRUNTIME PyTypeObject
*
1405 PySwigObject_type(void) {
1406 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1410 SWIGRUNTIMEINLINE
int
1411 PySwigObject_Check(PyObject
*op
) {
1412 return ((op
)->ob_type
== PySwigObject_type())
1413 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1416 SWIGRUNTIME PyObject
*
1417 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1420 PySwigObject_dealloc(PyObject
*v
)
1422 PySwigObject
*sobj
= (PySwigObject
*) v
;
1423 PyObject
*next
= sobj
->next
;
1425 swig_type_info
*ty
= sobj
->ty
;
1426 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1427 PyObject
*destroy
= data
? data
->destroy
: 0;
1429 /* destroy is always a VARARGS method */
1431 if (data
->delargs
) {
1432 /* we need to create a temporal object to carry the destroy operation */
1433 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1434 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1437 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1438 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1439 res
= ((*meth
)(mself
, v
));
1443 const char *name
= SWIG_TypePrettyName(ty
);
1444 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1445 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1453 SWIGRUNTIME PyObject
*
1454 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1456 PySwigObject
*sobj
= (PySwigObject
*) v
;
1459 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1462 if (!PySwigObject_Check(next
)) {
1467 return SWIG_Py_Void();
1470 SWIGRUNTIME PyObject
*
1472 PySwigObject_next(PyObject
* v
)
1474 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1477 PySwigObject
*sobj
= (PySwigObject
*) v
;
1479 Py_INCREF(sobj
->next
);
1482 return SWIG_Py_Void();
1486 SWIGINTERN PyObject
*
1488 PySwigObject_disown(PyObject
*v
)
1490 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1493 PySwigObject
*sobj
= (PySwigObject
*)v
;
1495 return SWIG_Py_Void();
1498 SWIGINTERN PyObject
*
1500 PySwigObject_acquire(PyObject
*v
)
1502 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1505 PySwigObject
*sobj
= (PySwigObject
*)v
;
1506 sobj
->own
= SWIG_POINTER_OWN
;
1507 return SWIG_Py_Void();
1510 SWIGINTERN PyObject
*
1511 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1514 #if (PY_VERSION_HEX < 0x02020000)
1515 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1517 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1524 PySwigObject
*sobj
= (PySwigObject
*)v
;
1525 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1528 if (PyObject_IsTrue(val
)) {
1529 PySwigObject_acquire(v
);
1531 PySwigObject_disown(v
);
1534 if (PyObject_IsTrue(val
)) {
1535 PySwigObject_acquire(v
,args
);
1537 PySwigObject_disown(v
,args
);
1547 swigobject_methods
[] = {
1548 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1549 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1550 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1551 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1552 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1553 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1558 swigobject_methods
[] = {
1559 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1560 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1561 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1562 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1563 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1564 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1569 #if PY_VERSION_HEX < 0x02020000
1570 SWIGINTERN PyObject
*
1571 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1573 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1577 SWIGRUNTIME PyTypeObject
*
1578 _PySwigObject_type(void) {
1579 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1581 static PyNumberMethods PySwigObject_as_number
= {
1582 (binaryfunc
)0, /*nb_add*/
1583 (binaryfunc
)0, /*nb_subtract*/
1584 (binaryfunc
)0, /*nb_multiply*/
1585 (binaryfunc
)0, /*nb_divide*/
1586 (binaryfunc
)0, /*nb_remainder*/
1587 (binaryfunc
)0, /*nb_divmod*/
1588 (ternaryfunc
)0,/*nb_power*/
1589 (unaryfunc
)0, /*nb_negative*/
1590 (unaryfunc
)0, /*nb_positive*/
1591 (unaryfunc
)0, /*nb_absolute*/
1592 (inquiry
)0, /*nb_nonzero*/
1599 (coercion
)0, /*nb_coerce*/
1600 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1601 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1602 (unaryfunc
)0, /*nb_float*/
1603 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1604 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1605 #if PY_VERSION_HEX >= 0x02020000
1606 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1607 #elif PY_VERSION_HEX >= 0x02000000
1608 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1612 static PyTypeObject pyswigobject_type
;
1613 static int type_init
= 0;
1615 const PyTypeObject tmp
1617 PyObject_HEAD_INIT(NULL
)
1619 (char *)"PySwigObject", /* tp_name */
1620 sizeof(PySwigObject
), /* tp_basicsize */
1621 0, /* tp_itemsize */
1622 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1623 (printfunc
)PySwigObject_print
, /* tp_print */
1624 #if PY_VERSION_HEX < 0x02020000
1625 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1627 (getattrfunc
)0, /* tp_getattr */
1629 (setattrfunc
)0, /* tp_setattr */
1630 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1631 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1632 &PySwigObject_as_number
, /* tp_as_number */
1633 0, /* tp_as_sequence */
1634 0, /* tp_as_mapping */
1635 (hashfunc
)0, /* tp_hash */
1636 (ternaryfunc
)0, /* tp_call */
1637 (reprfunc
)PySwigObject_str
, /* tp_str */
1638 PyObject_GenericGetAttr
, /* tp_getattro */
1639 0, /* tp_setattro */
1640 0, /* tp_as_buffer */
1641 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1642 swigobject_doc
, /* tp_doc */
1643 0, /* tp_traverse */
1645 0, /* tp_richcompare */
1646 0, /* tp_weaklistoffset */
1647 #if PY_VERSION_HEX >= 0x02020000
1649 0, /* tp_iternext */
1650 swigobject_methods
, /* tp_methods */
1655 0, /* tp_descr_get */
1656 0, /* tp_descr_set */
1657 0, /* tp_dictoffset */
1666 0, /* tp_subclasses */
1667 0, /* tp_weaklist */
1669 #if PY_VERSION_HEX >= 0x02030000
1673 0,0,0,0 /* tp_alloc -> tp_next */
1676 pyswigobject_type
= tmp
;
1677 pyswigobject_type
.ob_type
= &PyType_Type
;
1680 return &pyswigobject_type
;
1683 SWIGRUNTIME PyObject
*
1684 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1686 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1693 return (PyObject
*)sobj
;
1696 /* -----------------------------------------------------------------------------
1697 * Implements a simple Swig Packed type, and use it instead of string
1698 * ----------------------------------------------------------------------------- */
1708 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1710 char result
[SWIG_BUFFER_SIZE
];
1711 fputs("<Swig Packed ", fp
);
1712 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1716 fputs(v
->ty
->name
,fp
);
1721 SWIGRUNTIME PyObject
*
1722 PySwigPacked_repr(PySwigPacked
*v
)
1724 char result
[SWIG_BUFFER_SIZE
];
1725 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1726 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1728 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1732 SWIGRUNTIME PyObject
*
1733 PySwigPacked_str(PySwigPacked
*v
)
1735 char result
[SWIG_BUFFER_SIZE
];
1736 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1737 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1739 return PyString_FromString(v
->ty
->name
);
1744 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1748 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1749 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1752 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1754 SWIGRUNTIME PyTypeObject
*
1755 PySwigPacked_type(void) {
1756 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1760 SWIGRUNTIMEINLINE
int
1761 PySwigPacked_Check(PyObject
*op
) {
1762 return ((op
)->ob_type
== _PySwigPacked_type())
1763 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1767 PySwigPacked_dealloc(PyObject
*v
)
1769 if (PySwigPacked_Check(v
)) {
1770 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1776 SWIGRUNTIME PyTypeObject
*
1777 _PySwigPacked_type(void) {
1778 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1779 static PyTypeObject pyswigpacked_type
;
1780 static int type_init
= 0;
1782 const PyTypeObject tmp
1784 PyObject_HEAD_INIT(NULL
)
1786 (char *)"PySwigPacked", /* tp_name */
1787 sizeof(PySwigPacked
), /* tp_basicsize */
1788 0, /* tp_itemsize */
1789 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1790 (printfunc
)PySwigPacked_print
, /* tp_print */
1791 (getattrfunc
)0, /* tp_getattr */
1792 (setattrfunc
)0, /* tp_setattr */
1793 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1794 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1795 0, /* tp_as_number */
1796 0, /* tp_as_sequence */
1797 0, /* tp_as_mapping */
1798 (hashfunc
)0, /* tp_hash */
1799 (ternaryfunc
)0, /* tp_call */
1800 (reprfunc
)PySwigPacked_str
, /* tp_str */
1801 PyObject_GenericGetAttr
, /* tp_getattro */
1802 0, /* tp_setattro */
1803 0, /* tp_as_buffer */
1804 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1805 swigpacked_doc
, /* tp_doc */
1806 0, /* tp_traverse */
1808 0, /* tp_richcompare */
1809 0, /* tp_weaklistoffset */
1810 #if PY_VERSION_HEX >= 0x02020000
1812 0, /* tp_iternext */
1818 0, /* tp_descr_get */
1819 0, /* tp_descr_set */
1820 0, /* tp_dictoffset */
1829 0, /* tp_subclasses */
1830 0, /* tp_weaklist */
1832 #if PY_VERSION_HEX >= 0x02030000
1836 0,0,0,0 /* tp_alloc -> tp_next */
1839 pyswigpacked_type
= tmp
;
1840 pyswigpacked_type
.ob_type
= &PyType_Type
;
1843 return &pyswigpacked_type
;
1846 SWIGRUNTIME PyObject
*
1847 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1849 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1851 void *pack
= malloc(size
);
1853 memcpy(pack
, ptr
, size
);
1858 PyObject_DEL((PyObject
*) sobj
);
1862 return (PyObject
*) sobj
;
1865 SWIGRUNTIME swig_type_info
*
1866 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1868 if (PySwigPacked_Check(obj
)) {
1869 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1870 if (sobj
->size
!= size
) return 0;
1871 memcpy(ptr
, sobj
->pack
, size
);
1878 /* -----------------------------------------------------------------------------
1879 * pointers/data manipulation
1880 * ----------------------------------------------------------------------------- */
1882 SWIGRUNTIMEINLINE PyObject
*
1885 return PyString_FromString("this");
1888 SWIGRUNTIME PyObject
*
1891 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1895 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1897 SWIGRUNTIME PySwigObject
*
1898 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1900 if (PySwigObject_Check(pyobj
)) {
1901 return (PySwigObject
*) pyobj
;
1904 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1905 if (PyInstance_Check(pyobj
)) {
1906 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1908 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1909 if (dictptr
!= NULL
) {
1910 PyObject
*dict
= *dictptr
;
1911 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1913 #ifdef PyWeakref_CheckProxy
1914 if (PyWeakref_CheckProxy(pyobj
)) {
1915 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1916 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1919 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1923 if (PyErr_Occurred()) PyErr_Clear();
1929 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1933 if (PyErr_Occurred()) PyErr_Clear();
1937 if (obj
&& !PySwigObject_Check(obj
)) {
1938 /* a PyObject is called 'this', try to get the 'real this'
1939 PySwigObject from it */
1940 return SWIG_Python_GetSwigThis(obj
);
1942 return (PySwigObject
*)obj
;
1946 /* Acquire a pointer value */
1949 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1951 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1953 int oldown
= sobj
->own
;
1961 /* Convert a pointer value */
1964 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1965 if (!obj
) return SWIG_ERROR
;
1966 if (obj
== Py_None
) {
1970 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1972 void *vptr
= sobj
->ptr
;
1974 swig_type_info
*to
= sobj
->ty
;
1976 /* no type cast needed */
1977 if (ptr
) *ptr
= vptr
;
1980 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1982 sobj
= (PySwigObject
*)sobj
->next
;
1984 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1989 if (ptr
) *ptr
= vptr
;
1994 if (own
) *own
= sobj
->own
;
1995 if (flags
& SWIG_POINTER_DISOWN
) {
2000 int res
= SWIG_ERROR
;
2001 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2002 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2003 if (data
&& !data
->implicitconv
) {
2004 PyObject
*klass
= data
->klass
;
2007 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2008 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2009 data
->implicitconv
= 0;
2010 if (PyErr_Occurred()) {
2015 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2018 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2019 if (SWIG_IsOK(res
)) {
2022 /* transfer the ownership to 'ptr' */
2024 res
= SWIG_AddCast(res
);
2025 res
= SWIG_AddNewMask(res
);
2027 res
= SWIG_AddCast(res
);
2041 /* Convert a function ptr value */
2044 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2045 if (!PyCFunction_Check(obj
)) {
2046 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2050 /* here we get the method pointer for callbacks */
2051 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2052 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2054 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2055 if (!desc
) return SWIG_ERROR
;
2058 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2059 if (!tc
) return SWIG_ERROR
;
2060 *ptr
= SWIG_TypeCast(tc
,vptr
);
2068 /* Convert a packed value value */
2071 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2072 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2073 if (!to
) return SWIG_ERROR
;
2076 /* check type cast? */
2077 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2078 if (!tc
) return SWIG_ERROR
;
2084 /* -----------------------------------------------------------------------------
2085 * Create a new pointer object
2086 * ----------------------------------------------------------------------------- */
2089 Create a new instance object, whitout calling __init__, and set the
2093 SWIGRUNTIME PyObject
*
2094 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2096 #if (PY_VERSION_HEX >= 0x02020000)
2098 PyObject
*newraw
= data
->newraw
;
2100 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2102 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2103 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2104 if (dictptr
!= NULL
) {
2105 PyObject
*dict
= *dictptr
;
2107 dict
= PyDict_New();
2109 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2113 PyObject
*key
= SWIG_This();
2114 PyObject_SetAttr(inst
, key
, swig_this
);
2118 PyObject
*dict
= PyDict_New();
2119 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2120 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2125 #if (PY_VERSION_HEX >= 0x02010000)
2127 PyObject
*dict
= PyDict_New();
2128 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2129 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2131 return (PyObject
*) inst
;
2133 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2137 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2138 Py_INCREF(inst
->in_class
);
2139 inst
->in_dict
= PyDict_New();
2140 if (inst
->in_dict
== NULL
) {
2144 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2145 inst
->in_weakreflist
= NULL
;
2147 #ifdef Py_TPFLAGS_GC
2148 PyObject_GC_Init(inst
);
2150 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2151 return (PyObject
*) inst
;
2157 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2160 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2161 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2162 if (dictptr
!= NULL
) {
2165 dict
= PyDict_New();
2168 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2172 dict
= PyObject_GetAttrString(inst
, "__dict__");
2173 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2178 SWIGINTERN PyObject
*
2179 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2181 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2184 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2186 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2188 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2190 return SWIG_Py_Void();
2194 /* Create a new pointer object */
2196 SWIGRUNTIME PyObject
*
2197 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2199 return SWIG_Py_Void();
2201 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2202 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2203 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2204 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2205 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2215 /* Create a new packed object */
2217 SWIGRUNTIMEINLINE PyObject
*
2218 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2219 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2222 /* -----------------------------------------------------------------------------*
2224 * -----------------------------------------------------------------------------*/
2226 #ifdef SWIG_LINK_RUNTIME
2227 void *SWIG_ReturnGlobalTypeList(void *);
2230 SWIGRUNTIME swig_module_info
*
2231 SWIG_Python_GetModule(void) {
2232 static void *type_pointer
= (void *)0;
2233 /* first check if module already created */
2234 if (!type_pointer
) {
2235 #ifdef SWIG_LINK_RUNTIME
2236 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2238 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2239 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2240 if (PyErr_Occurred()) {
2242 type_pointer
= (void *)0;
2246 return (swig_module_info
*) type_pointer
;
2249 #if PY_MAJOR_VERSION < 2
2250 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2251 is copied out of Python/modsupport.c in python version 2.3.4 */
2253 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2256 if (!PyModule_Check(m
)) {
2257 PyErr_SetString(PyExc_TypeError
,
2258 "PyModule_AddObject() needs module as first arg");
2262 PyErr_SetString(PyExc_TypeError
,
2263 "PyModule_AddObject() needs non-NULL value");
2267 dict
= PyModule_GetDict(m
);
2269 /* Internal error -- modules must have a dict! */
2270 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2271 PyModule_GetName(m
));
2274 if (PyDict_SetItemString(dict
, name
, o
))
2282 SWIG_Python_DestroyModule(void *vptr
)
2284 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2285 swig_type_info
**types
= swig_module
->types
;
2287 for (i
=0; i
< swig_module
->size
; ++i
) {
2288 swig_type_info
*ty
= types
[i
];
2290 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2291 if (data
) PySwigClientData_Del(data
);
2294 Py_DECREF(SWIG_This());
2298 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2299 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2301 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2302 swig_empty_runtime_method_table
);
2303 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2304 if (pointer
&& module) {
2305 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2307 Py_XDECREF(pointer
);
2311 /* The python cached type query */
2312 SWIGRUNTIME PyObject
*
2313 SWIG_Python_TypeCache() {
2314 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2318 SWIGRUNTIME swig_type_info
*
2319 SWIG_Python_TypeQuery(const char *type
)
2321 PyObject
*cache
= SWIG_Python_TypeCache();
2322 PyObject
*key
= PyString_FromString(type
);
2323 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2324 swig_type_info
*descriptor
;
2326 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2328 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2329 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2331 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2332 PyDict_SetItem(cache
, key
, obj
);
2341 For backward compatibility only
2343 #define SWIG_POINTER_EXCEPTION 0
2344 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2345 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2348 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2350 if (PyErr_Occurred()) {
2352 PyObject
*value
= 0;
2353 PyObject
*traceback
= 0;
2354 PyErr_Fetch(&type
, &value
, &traceback
);
2356 PyObject
*old_str
= PyObject_Str(value
);
2360 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2362 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2373 SWIG_Python_ArgFail(int argnum
)
2375 if (PyErr_Occurred()) {
2376 /* add information about failing argument */
2378 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2379 return SWIG_Python_AddErrMesg(mesg
, 1);
2385 SWIGRUNTIMEINLINE
const char *
2386 PySwigObject_GetDesc(PyObject
*self
)
2388 PySwigObject
*v
= (PySwigObject
*)self
;
2389 swig_type_info
*ty
= v
? v
->ty
: 0;
2390 return ty
? ty
->str
: (char*)"";
2394 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2397 #if defined(SWIG_COBJECT_TYPES)
2398 if (obj
&& PySwigObject_Check(obj
)) {
2399 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2401 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2408 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2410 PyObject
*str
= PyObject_Str(obj
);
2411 const char *cstr
= str
? PyString_AsString(str
) : 0;
2413 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2416 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2423 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2425 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2430 /* Convert a pointer value, signal an exception on a type mismatch */
2432 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2434 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2436 if (flags
& SWIG_POINTER_EXCEPTION
) {
2437 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2438 SWIG_Python_ArgFail(argnum
);
2454 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2456 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2460 /* -------- TYPES TABLE (BEGIN) -------- */
2462 #define SWIGTYPE_p_char swig_types[0]
2463 #define SWIGTYPE_p_form_ops_t swig_types[1]
2464 #define SWIGTYPE_p_int swig_types[2]
2465 #define SWIGTYPE_p_unsigned_char swig_types[3]
2466 #define SWIGTYPE_p_unsigned_int swig_types[4]
2467 #define SWIGTYPE_p_unsigned_long swig_types[5]
2468 #define SWIGTYPE_p_void swig_types[6]
2469 #define SWIGTYPE_p_wxANIHandler swig_types[7]
2470 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8]
2471 #define SWIGTYPE_p_wxActivateEvent swig_types[9]
2472 #define SWIGTYPE_p_wxArrayString swig_types[10]
2473 #define SWIGTYPE_p_wxBMPHandler swig_types[11]
2474 #define SWIGTYPE_p_wxBitmap swig_types[12]
2475 #define SWIGTYPE_p_wxBitmapDataObject swig_types[13]
2476 #define SWIGTYPE_p_wxBoxSizer swig_types[14]
2477 #define SWIGTYPE_p_wxBusyCursor swig_types[15]
2478 #define SWIGTYPE_p_wxBusyInfo swig_types[16]
2479 #define SWIGTYPE_p_wxCURHandler swig_types[17]
2480 #define SWIGTYPE_p_wxCaret swig_types[18]
2481 #define SWIGTYPE_p_wxChar swig_types[19]
2482 #define SWIGTYPE_p_wxChildFocusEvent swig_types[20]
2483 #define SWIGTYPE_p_wxClipboard swig_types[21]
2484 #define SWIGTYPE_p_wxClipboardLocker swig_types[22]
2485 #define SWIGTYPE_p_wxCloseEvent swig_types[23]
2486 #define SWIGTYPE_p_wxColour swig_types[24]
2487 #define SWIGTYPE_p_wxCommandEvent swig_types[25]
2488 #define SWIGTYPE_p_wxConfig swig_types[26]
2489 #define SWIGTYPE_p_wxConfigBase swig_types[27]
2490 #define SWIGTYPE_p_wxConfigPathChanger swig_types[28]
2491 #define SWIGTYPE_p_wxContextMenuEvent swig_types[29]
2492 #define SWIGTYPE_p_wxControl swig_types[30]
2493 #define SWIGTYPE_p_wxControlWithItems swig_types[31]
2494 #define SWIGTYPE_p_wxCursor swig_types[32]
2495 #define SWIGTYPE_p_wxCustomDataObject swig_types[33]
2496 #define SWIGTYPE_p_wxDC swig_types[34]
2497 #define SWIGTYPE_p_wxDataFormat swig_types[35]
2498 #define SWIGTYPE_p_wxDataObject swig_types[36]
2499 #define SWIGTYPE_p_wxDataObjectComposite swig_types[37]
2500 #define SWIGTYPE_p_wxDataObjectSimple swig_types[38]
2501 #define SWIGTYPE_p_wxDateEvent swig_types[39]
2502 #define SWIGTYPE_p_wxDateSpan swig_types[40]
2503 #define SWIGTYPE_p_wxDateTime swig_types[41]
2504 #define SWIGTYPE_p_wxDateTime__TimeZone swig_types[42]
2505 #define SWIGTYPE_p_wxDisplay swig_types[43]
2506 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[44]
2507 #define SWIGTYPE_p_wxDropFilesEvent swig_types[45]
2508 #define SWIGTYPE_p_wxDuplexMode swig_types[46]
2509 #define SWIGTYPE_p_wxEraseEvent swig_types[47]
2510 #define SWIGTYPE_p_wxEvent swig_types[48]
2511 #define SWIGTYPE_p_wxEvtHandler swig_types[49]
2512 #define SWIGTYPE_p_wxFSFile swig_types[50]
2513 #define SWIGTYPE_p_wxFileConfig swig_types[51]
2514 #define SWIGTYPE_p_wxFileDataObject swig_types[52]
2515 #define SWIGTYPE_p_wxFileHistory swig_types[53]
2516 #define SWIGTYPE_p_wxFileSystem swig_types[54]
2517 #define SWIGTYPE_p_wxFileType swig_types[55]
2518 #define SWIGTYPE_p_wxFileTypeInfo swig_types[56]
2519 #define SWIGTYPE_p_wxFlexGridSizer swig_types[57]
2520 #define SWIGTYPE_p_wxFocusEvent swig_types[58]
2521 #define SWIGTYPE_p_wxFont swig_types[59]
2522 #define SWIGTYPE_p_wxFrame swig_types[60]
2523 #define SWIGTYPE_p_wxGBSizerItem swig_types[61]
2524 #define SWIGTYPE_p_wxGIFHandler swig_types[62]
2525 #define SWIGTYPE_p_wxGridBagSizer swig_types[63]
2526 #define SWIGTYPE_p_wxGridSizer swig_types[64]
2527 #define SWIGTYPE_p_wxICOHandler swig_types[65]
2528 #define SWIGTYPE_p_wxIcon swig_types[66]
2529 #define SWIGTYPE_p_wxIconizeEvent swig_types[67]
2530 #define SWIGTYPE_p_wxIdleEvent swig_types[68]
2531 #define SWIGTYPE_p_wxImage swig_types[69]
2532 #define SWIGTYPE_p_wxImageHandler swig_types[70]
2533 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[71]
2534 #define SWIGTYPE_p_wxInitDialogEvent swig_types[72]
2535 #define SWIGTYPE_p_wxJPEGHandler swig_types[73]
2536 #define SWIGTYPE_p_wxJoystick swig_types[74]
2537 #define SWIGTYPE_p_wxJoystickEvent swig_types[75]
2538 #define SWIGTYPE_p_wxKeyEvent swig_types[76]
2539 #define SWIGTYPE_p_wxKillError swig_types[77]
2540 #define SWIGTYPE_p_wxLayoutConstraints swig_types[78]
2541 #define SWIGTYPE_p_wxLog swig_types[79]
2542 #define SWIGTYPE_p_wxLogBuffer swig_types[80]
2543 #define SWIGTYPE_p_wxLogChain swig_types[81]
2544 #define SWIGTYPE_p_wxLogGui swig_types[82]
2545 #define SWIGTYPE_p_wxLogNull swig_types[83]
2546 #define SWIGTYPE_p_wxLogStderr swig_types[84]
2547 #define SWIGTYPE_p_wxLogTextCtrl swig_types[85]
2548 #define SWIGTYPE_p_wxLogWindow swig_types[86]
2549 #define SWIGTYPE_p_wxMaximizeEvent swig_types[87]
2550 #define SWIGTYPE_p_wxMemorySize swig_types[88]
2551 #define SWIGTYPE_p_wxMenu swig_types[89]
2552 #define SWIGTYPE_p_wxMenuBar swig_types[90]
2553 #define SWIGTYPE_p_wxMenuEvent swig_types[91]
2554 #define SWIGTYPE_p_wxMenuItem swig_types[92]
2555 #define SWIGTYPE_p_wxMetafileDataObject swig_types[93]
2556 #define SWIGTYPE_p_wxMimeTypesManager swig_types[94]
2557 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[95]
2558 #define SWIGTYPE_p_wxMouseEvent swig_types[96]
2559 #define SWIGTYPE_p_wxMouseState swig_types[97]
2560 #define SWIGTYPE_p_wxMoveEvent swig_types[98]
2561 #define SWIGTYPE_p_wxMutexGuiLocker swig_types[99]
2562 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[100]
2563 #define SWIGTYPE_p_wxNcPaintEvent swig_types[101]
2564 #define SWIGTYPE_p_wxNotifyEvent swig_types[102]
2565 #define SWIGTYPE_p_wxObject swig_types[103]
2566 #define SWIGTYPE_p_wxOutputStream swig_types[104]
2567 #define SWIGTYPE_p_wxPCXHandler swig_types[105]
2568 #define SWIGTYPE_p_wxPNGHandler swig_types[106]
2569 #define SWIGTYPE_p_wxPNMHandler swig_types[107]
2570 #define SWIGTYPE_p_wxPaintEvent swig_types[108]
2571 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[109]
2572 #define SWIGTYPE_p_wxPaperSize swig_types[110]
2573 #define SWIGTYPE_p_wxPoint swig_types[111]
2574 #define SWIGTYPE_p_wxProcessEvent swig_types[112]
2575 #define SWIGTYPE_p_wxPyApp swig_types[113]
2576 #define SWIGTYPE_p_wxPyArtProvider swig_types[114]
2577 #define SWIGTYPE_p_wxPyBitmapDataObject swig_types[115]
2578 #define SWIGTYPE_p_wxPyCommandEvent swig_types[116]
2579 #define SWIGTYPE_p_wxPyDataObjectSimple swig_types[117]
2580 #define SWIGTYPE_p_wxPyDropSource swig_types[118]
2581 #define SWIGTYPE_p_wxPyDropTarget swig_types[119]
2582 #define SWIGTYPE_p_wxPyEvent swig_types[120]
2583 #define SWIGTYPE_p_wxPyFileDropTarget swig_types[121]
2584 #define SWIGTYPE_p_wxPyImageHandler swig_types[122]
2585 #define SWIGTYPE_p_wxPyLog swig_types[123]
2586 #define SWIGTYPE_p_wxPyProcess swig_types[124]
2587 #define SWIGTYPE_p_wxPySizer swig_types[125]
2588 #define SWIGTYPE_p_wxPyTextDataObject swig_types[126]
2589 #define SWIGTYPE_p_wxPyTextDropTarget swig_types[127]
2590 #define SWIGTYPE_p_wxPyTimer swig_types[128]
2591 #define SWIGTYPE_p_wxPyTipProvider swig_types[129]
2592 #define SWIGTYPE_p_wxPyValidator swig_types[130]
2593 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[131]
2594 #define SWIGTYPE_p_wxRect swig_types[132]
2595 #define SWIGTYPE_p_wxScrollEvent swig_types[133]
2596 #define SWIGTYPE_p_wxScrollWinEvent swig_types[134]
2597 #define SWIGTYPE_p_wxSetCursorEvent swig_types[135]
2598 #define SWIGTYPE_p_wxShowEvent swig_types[136]
2599 #define SWIGTYPE_p_wxSingleInstanceChecker swig_types[137]
2600 #define SWIGTYPE_p_wxSize swig_types[138]
2601 #define SWIGTYPE_p_wxSizeEvent swig_types[139]
2602 #define SWIGTYPE_p_wxSizer swig_types[140]
2603 #define SWIGTYPE_p_wxSizerItem swig_types[141]
2604 #define SWIGTYPE_p_wxSound swig_types[142]
2605 #define SWIGTYPE_p_wxStandardPaths swig_types[143]
2606 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[144]
2607 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[145]
2608 #define SWIGTYPE_p_wxStopWatch swig_types[146]
2609 #define SWIGTYPE_p_wxString swig_types[147]
2610 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[148]
2611 #define SWIGTYPE_p_wxSystemOptions swig_types[149]
2612 #define SWIGTYPE_p_wxSystemSettings swig_types[150]
2613 #define SWIGTYPE_p_wxTIFFHandler swig_types[151]
2614 #define SWIGTYPE_p_wxTextCtrl swig_types[152]
2615 #define SWIGTYPE_p_wxTextDataObject swig_types[153]
2616 #define SWIGTYPE_p_wxTimeSpan swig_types[154]
2617 #define SWIGTYPE_p_wxTimer swig_types[155]
2618 #define SWIGTYPE_p_wxTimerEvent swig_types[156]
2619 #define SWIGTYPE_p_wxTimerRunner swig_types[157]
2620 #define SWIGTYPE_p_wxTipProvider swig_types[158]
2621 #define SWIGTYPE_p_wxToolTip swig_types[159]
2622 #define SWIGTYPE_p_wxURLDataObject swig_types[160]
2623 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[161]
2624 #define SWIGTYPE_p_wxValidator swig_types[162]
2625 #define SWIGTYPE_p_wxVideoMode swig_types[163]
2626 #define SWIGTYPE_p_wxWindow swig_types[164]
2627 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[165]
2628 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[166]
2629 #define SWIGTYPE_p_wxWindowDisabler swig_types[167]
2630 #define SWIGTYPE_p_wxXPMHandler swig_types[168]
2631 static swig_type_info
*swig_types
[170];
2632 static swig_module_info swig_module
= {swig_types
, 169, 0, 0, 0, 0};
2633 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2634 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2636 /* -------- TYPES TABLE (END) -------- */
2638 #if (PY_VERSION_HEX <= 0x02000000)
2639 # if !defined(SWIG_PYTHON_CLASSIC)
2640 # error "This python version requires to use swig with the '-classic' option"
2643 #if (PY_VERSION_HEX <= 0x02020000)
2644 # error "This python version requires to use swig with the '-nomodern' option"
2646 #if (PY_VERSION_HEX <= 0x02020000)
2647 # error "This python version requires to use swig with the '-nomodernargs' option"
2650 # error "This python version requires to use swig with the '-nofastunpack' option"
2653 /*-----------------------------------------------
2654 @(target):= _misc_.so
2655 ------------------------------------------------*/
2656 #define SWIG_init init_misc_
2658 #define SWIG_name "_misc_"
2660 #define SWIGVERSION 0x010329
2663 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2664 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2667 #include <stdexcept>
2671 class PyObject_ptr
{
2676 PyObject_ptr() :_obj(0)
2680 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2685 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2687 if (initial_ref
) Py_XINCREF(_obj
);
2690 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2692 Py_XINCREF(item
._obj
);
2703 operator PyObject
*() const
2708 PyObject
*operator->() const
2717 struct PyObject_var
: PyObject_ptr
{
2718 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2720 PyObject_var
& operator = (PyObject
* obj
)
2730 #include "wx/wxPython/wxPython.h"
2731 #include "wx/wxPython/pyclasses.h"
2732 #include "wx/wxPython/pyistream.h"
2734 static const wxString
wxPyEmptyString(wxEmptyString
);
2738 #define SWIG_From_long PyInt_FromLong
2741 SWIGINTERNINLINE PyObject
*
2742 SWIG_From_int (int value
)
2744 return SWIG_From_long (value
);
2750 # define LLONG_MIN LONG_LONG_MIN
2753 # define LLONG_MAX LONG_LONG_MAX
2756 # define ULLONG_MAX ULONG_LONG_MAX
2761 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2763 if (PyNumber_Check(obj
)) {
2764 if (val
) *val
= PyInt_AsLong(obj
);
2767 return SWIG_TypeError
;
2772 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2775 int res
= SWIG_AsVal_long (obj
, &v
);
2776 if (SWIG_IsOK(res
)) {
2777 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2778 return SWIG_OverflowError
;
2780 if (val
) *val
= static_cast< int >(v
);
2786 static const wxString
wxPyWINDOW_DEFAULT_VARIANT(wxWINDOW_DEFAULT_VARIANT
);
2788 #include <wx/stockitem.h>
2790 static const wxString
wxPyFileSelectorPromptStr(wxFileSelectorPromptStr
);
2791 static const wxString
wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr
);
2792 static const wxString
wxPyDirSelectorPromptStr(wxDirSelectorPromptStr
);
2795 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2797 if (obj
== Py_True
) {
2798 if (val
) *val
= true;
2800 } else if (obj
== Py_False
) {
2801 if (val
) *val
= false;
2805 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2806 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2812 wxMemorySize
wxGetFreeMemory()
2813 { wxPyRaiseNotImplemented(); return 0; }
2817 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2820 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2821 return SWIG_TypeError
;
2824 *val
= (unsigned long)v
;
2829 SWIGINTERNINLINE PyObject
*
2830 SWIG_From_unsigned_SS_long (unsigned long value
)
2832 return (value
> LONG_MAX
) ?
2833 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2837 void* wxGetXDisplay()
2840 return wxGetDisplay();
2847 wxWindow
* FindWindowAtPointer() {
2849 return wxFindWindowAtPointer(unused
);
2853 void wxWakeUpMainThread() {}
2856 bool wxThread_IsMain() {
2857 #ifdef WXP_WITH_THREAD
2858 return wxThread::IsMain();
2864 SWIGINTERN
void wxCaret_Destroy(wxCaret
*self
){
2868 #include <wx/snglinst.h>
2872 #include <wx/msw/private.h>
2873 #include <wx/dynload.h>
2878 bool wxDrawWindowOnDC(wxWindow
* window
, const wxDC
& dc
2889 // This one only partially works. Appears to be an undocumented
2890 // "standard" convention that not all widgets adhear to. For
2891 // example, for some widgets backgrounds or non-client areas may
2893 ::SendMessage(GetHwndOf(window
), WM_PAINT
, (long)GetHdcOf(dc
), 0);
2898 // This one works much better, nearly all widgets and their
2899 // children are captured correctly[**]. Prior to the big
2900 // background erase changes that Vadim did in 2004-2005 this
2901 // method failed badly on XP with Themes activated, most native
2902 // widgets draw only partially, if at all. Without themes it
2903 // worked just like on Win2k. After those changes this method
2906 // ** For example the radio buttons in a wxRadioBox are not its
2907 // children by default, but you can capture it via the panel
2908 // instead, or change RADIOBTN_PARENT_IS_RADIOBOX in radiobox.cpp.
2909 ::SendMessage(GetHwndOf(window
), WM_PRINT
, (long)GetHdcOf(dc
),
2910 PRF_CLIENT
| PRF_NONCLIENT
| PRF_CHILDREN
|
2911 PRF_ERASEBKGND
| PRF_OWNED
);
2917 // This one is only defined in the latest SDK and is only
2918 // available on XP. MSDN says it is similar to sending WM_PRINT
2919 // so I expect that it will work similar to the above. Since it
2920 // is avaialble only on XP, it can't be compiled like this and
2921 // will have to be loaded dynamically.
2922 // //::PrintWindow(GetHwndOf(window), GetHdcOf(dc), 0); //break;
2927 // Use PrintWindow if available, or fallback to WM_PRINT
2928 // otherwise. Unfortunately using PrintWindow is even worse than
2929 // WM_PRINT. For most native widgets nothing is drawn to the dc
2930 // at all, with or without Themes.
2931 typedef BOOL (WINAPI
*PrintWindow_t
)(HWND
, HDC
, UINT
);
2932 static bool s_triedToLoad
= false;
2933 static PrintWindow_t pfnPrintWindow
= NULL
;
2934 if ( !s_triedToLoad
)
2937 s_triedToLoad
= true;
2938 wxDynamicLibrary
dllUser32(_T("user32.dll"));
2939 if ( dllUser32
.IsLoaded() )
2941 wxLogNull nolog
; // Don't report errors here
2942 pfnPrintWindow
= (PrintWindow_t
)dllUser32
.GetSymbol(_T("PrintWindow"));
2947 //printf("Using PrintWindow\n");
2948 pfnPrintWindow(GetHwndOf(window
), GetHdcOf(dc
), 0);
2952 //printf("Using WM_PRINT\n");
2953 ::SendMessage(GetHwndOf(window
), WM_PRINT
, (long)GetHdcOf(dc
),
2954 PRF_CLIENT
| PRF_NONCLIENT
| PRF_CHILDREN
|
2955 PRF_ERASEBKGND
| PRF_OWNED
);
2966 #include <wx/tipdlg.h>
2969 SWIGINTERNINLINE PyObject
*
2970 SWIG_From_size_t (size_t value
)
2972 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2976 class wxPyTipProvider
: public wxTipProvider
{
2978 wxPyTipProvider(size_t currentTip
)
2979 : wxTipProvider(currentTip
) {}
2981 DEC_PYCALLBACK_STRING__pure(GetTip
);
2982 DEC_PYCALLBACK_STRING_STRING(PreprocessTip
);
2986 IMP_PYCALLBACK_STRING__pure( wxPyTipProvider
, wxTipProvider
, GetTip
);
2987 IMP_PYCALLBACK_STRING_STRING(wxPyTipProvider
, wxTipProvider
, PreprocessTip
);
2990 SWIGINTERNINLINE
int
2991 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2994 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2995 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
3000 IMP_PYCALLBACK__(wxPyTimer
, wxTimer
, Notify
);
3002 IMPLEMENT_ABSTRACT_CLASS(wxPyTimer
, wxTimer
);
3004 wxPyTimer::wxPyTimer(wxEvtHandler
*owner
, int id
)
3005 : wxTimer(owner
, id
)
3012 SWIGINTERN swig_type_info
*
3013 SWIG_pchar_descriptor()
3015 static int init
= 0;
3016 static swig_type_info
* info
= 0;
3018 info
= SWIG_TypeQuery("_p_char");
3025 SWIGINTERNINLINE PyObject
*
3026 SWIG_FromCharPtrAndSize(const char* carray
, size_t size
)
3029 if (size
> INT_MAX
) {
3030 swig_type_info
* pchar_descriptor
= SWIG_pchar_descriptor();
3031 return pchar_descriptor
?
3032 SWIG_NewPointerObj(const_cast< char * >(carray
), pchar_descriptor
, 0) : SWIG_Py_Void();
3034 return PyString_FromStringAndSize(carray
, static_cast< int >(size
));
3037 return SWIG_Py_Void();
3042 SWIGINTERNINLINE PyObject
*
3043 SWIG_FromCharPtr(const char *cptr
)
3045 return SWIG_FromCharPtrAndSize(cptr
, (cptr
? strlen(cptr
) : 0));
3050 SWIG_AsVal_unsigned_SS_int (PyObject
* obj
, unsigned int *val
)
3053 int res
= SWIG_AsVal_unsigned_SS_long (obj
, &v
);
3054 if (SWIG_IsOK(res
)) {
3055 if ((v
> UINT_MAX
)) {
3056 return SWIG_OverflowError
;
3058 if (val
) *val
= static_cast< unsigned int >(v
);
3064 SWIGINTERN wxString
wxLog_TimeStamp(){
3066 wxLog::TimeStamp(&msg
);
3069 SWIGINTERN
void wxLog_Destroy(wxLog
*self
){ delete self
; }
3070 // Make some wrappers that double any % signs so they are 'escaped'
3071 void wxPyLogFatalError(const wxString
& msg
)
3074 m
.Replace(wxT("%"), wxT("%%"));
3078 void wxPyLogError(const wxString
& msg
)
3081 m
.Replace(wxT("%"), wxT("%%"));
3085 void wxPyLogWarning(const wxString
& msg
)
3088 m
.Replace(wxT("%"), wxT("%%"));
3092 void wxPyLogMessage(const wxString
& msg
)
3095 m
.Replace(wxT("%"), wxT("%%"));
3099 void wxPyLogInfo(const wxString
& msg
)
3102 m
.Replace(wxT("%"), wxT("%%"));
3106 void wxPyLogDebug(const wxString
& msg
)
3109 m
.Replace(wxT("%"), wxT("%%"));
3113 void wxPyLogVerbose(const wxString
& msg
)
3116 m
.Replace(wxT("%"), wxT("%%"));
3120 void wxPyLogStatus(const wxString
& msg
)
3123 m
.Replace(wxT("%"), wxT("%%"));
3127 void wxPyLogStatusFrame(wxFrame
*pFrame
, const wxString
& msg
)
3130 m
.Replace(wxT("%"), wxT("%%"));
3131 wxLogStatus(pFrame
, m
);
3134 void wxPyLogSysError(const wxString
& msg
)
3137 m
.Replace(wxT("%"), wxT("%%"));
3141 void wxPyLogGeneric(unsigned long level
, const wxString
& msg
)
3144 m
.Replace(wxT("%"), wxT("%%"));
3145 wxLogGeneric(level
, m
);
3148 void wxPyLogTrace(unsigned long mask
, const wxString
& msg
)
3151 m
.Replace(wxT("%"), wxT("%%"));
3152 wxLogTrace(mask
, m
);
3155 void wxPyLogTrace(const wxString
& mask
, const wxString
& msg
)
3158 m
.Replace(wxT("%"), wxT("%%"));
3159 wxLogTrace(mask
, m
);
3164 // A wxLog class that can be derived from in wxPython
3165 class wxPyLog
: public wxLog
{
3167 wxPyLog() : wxLog() {}
3169 virtual void DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
) {
3171 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3172 if ((found
= wxPyCBH_findCallback(m_myInst
, "DoLog"))) {
3173 PyObject
* s
= wx2PyString(szString
);
3174 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(iOi)", level
, s
, t
));
3177 wxPyEndBlockThreads(blocked
);
3179 wxLog::DoLog(level
, szString
, t
);
3182 virtual void DoLogString(const wxChar
*szString
, time_t t
) {
3184 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3185 if ((found
= wxPyCBH_findCallback(m_myInst
, "DoLogString"))) {
3186 PyObject
* s
= wx2PyString(szString
);
3187 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(Oi)", s
, t
));
3190 wxPyEndBlockThreads(blocked
);
3192 wxLog::DoLogString(szString
, t
);
3195 DEC_PYCALLBACK_VOID_(Flush
);
3198 IMP_PYCALLBACK_VOID_(wxPyLog
, wxLog
, Flush
);
3203 IMP_PYCALLBACK_VOID_INTINT( wxPyProcess
, wxProcess
, OnTerminate
);
3206 #include <wx/joystick.h>
3209 #if !wxUSE_JOYSTICK && !defined(__WXMSW__)
3210 // A C++ stub class for wxJoystick for platforms that don't have it.
3211 class wxJoystick
: public wxObject
{
3213 wxJoystick(int joystick
= wxJOYSTICK1
) {
3214 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3215 PyErr_SetString(PyExc_NotImplementedError
,
3216 "wxJoystick is not available on this platform.");
3217 wxPyEndBlockThreads(blocked
);
3219 wxPoint
GetPosition() { return wxPoint(-1,-1); }
3220 int GetZPosition() { return -1; }
3221 int GetButtonState() { return -1; }
3222 int GetPOVPosition() { return -1; }
3223 int GetPOVCTSPosition() { return -1; }
3224 int GetRudderPosition() { return -1; }
3225 int GetUPosition() { return -1; }
3226 int GetVPosition() { return -1; }
3227 int GetMovementThreshold() { return -1; }
3228 void SetMovementThreshold(int threshold
) {}
3230 bool IsOk(void) { return false; }
3231 int GetNumberJoysticks() { return -1; }
3232 int GetManufacturerId() { return -1; }
3233 int GetProductId() { return -1; }
3234 wxString
GetProductName() { return wxEmptyString
; }
3235 int GetXMin() { return -1; }
3236 int GetYMin() { return -1; }
3237 int GetZMin() { return -1; }
3238 int GetXMax() { return -1; }
3239 int GetYMax() { return -1; }
3240 int GetZMax() { return -1; }
3241 int GetNumberButtons() { return -1; }
3242 int GetNumberAxes() { return -1; }
3243 int GetMaxButtons() { return -1; }
3244 int GetMaxAxes() { return -1; }
3245 int GetPollingMin() { return -1; }
3246 int GetPollingMax() { return -1; }
3247 int GetRudderMin() { return -1; }
3248 int GetRudderMax() { return -1; }
3249 int GetUMin() { return -1; }
3250 int GetUMax() { return -1; }
3251 int GetVMin() { return -1; }
3252 int GetVMax() { return -1; }
3254 bool HasRudder() { return false; }
3255 bool HasZ() { return false; }
3256 bool HasU() { return false; }
3257 bool HasV() { return false; }
3258 bool HasPOV() { return false; }
3259 bool HasPOV4Dir() { return false; }
3260 bool HasPOVCTS() { return false; }
3262 bool SetCapture(wxWindow
* win
, int pollingFreq
= 0) { return false; }
3263 bool ReleaseCapture() { return false; }
3268 #include <wx/sound.h>
3272 // A C++ stub class for wxWave for platforms that don't have it.
3273 class wxSound
: public wxObject
3277 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3278 PyErr_SetString(PyExc_NotImplementedError
,
3279 "wxSound is not available on this platform.");
3280 wxPyEndBlockThreads(blocked
);
3282 wxSound(const wxString
&/*, bool*/) {
3283 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3284 PyErr_SetString(PyExc_NotImplementedError
,
3285 "wxSound is not available on this platform.");
3286 wxPyEndBlockThreads(blocked
);
3288 wxSound(int, const wxByte
*) {
3289 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3290 PyErr_SetString(PyExc_NotImplementedError
,
3291 "wxSound is not available on this platform.");
3292 wxPyEndBlockThreads(blocked
);
3297 bool Create(const wxString
&/*, bool*/) { return false; }
3298 bool Create(int, const wxByte
*) { return false; };
3299 bool IsOk() { return false; };
3300 bool Play(unsigned) const { return false; }
3301 static bool Play(const wxString
&, unsigned) { return false; }
3302 static void Stop() {}
3307 SWIGINTERN wxSound
*new_wxSound(wxString
const &fileName
=wxPyEmptyString
){
3308 if (fileName
.Length() == 0)
3311 return new wxSound(fileName
);
3313 SWIGINTERN wxSound
*new_wxSound(PyObject
*data
){
3314 unsigned char* buffer
; int size
;
3315 wxSound
*sound
= NULL
;
3317 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3318 if (!PyArg_Parse(data
, "t#", &buffer
, &size
))
3320 sound
= new wxSound(size
, buffer
);
3322 wxPyEndBlockThreads(blocked
);
3325 SWIGINTERN
bool wxSound_CreateFromData(wxSound
*self
,PyObject
*data
){
3327 unsigned char* buffer
;
3331 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3332 if (!PyArg_Parse(data
, "t#", &buffer
, &size
))
3334 rv
= self
->Create(size
, buffer
);
3336 wxPyEndBlockThreads(blocked
);
3339 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3340 PyErr_SetString(PyExc_NotImplementedError
,
3341 "Create from data is not available on this platform.");
3342 wxPyEndBlockThreads(blocked
);
3347 #include <wx/mimetype.h>
3349 SWIGINTERN PyObject
*wxFileType_GetMimeType(wxFileType
*self
){
3351 if (self
->GetMimeType(&str
))
3352 return wx2PyString(str
);
3356 SWIGINTERN PyObject
*wxFileType_GetMimeTypes(wxFileType
*self
){
3358 if (self
->GetMimeTypes(arr
))
3359 return wxArrayString2PyList_helper(arr
);
3363 SWIGINTERN PyObject
*wxFileType_GetExtensions(wxFileType
*self
){
3365 if (self
->GetExtensions(arr
))
3366 return wxArrayString2PyList_helper(arr
);
3370 SWIGINTERN wxIcon
*wxFileType_GetIcon(wxFileType
*self
){
3372 if (self
->GetIcon(&loc
))
3373 return new wxIcon(loc
);
3377 SWIGINTERN PyObject
*wxFileType_GetIconInfo(wxFileType
*self
){
3379 if (self
->GetIcon(&loc
)) {
3380 wxString iconFile
= loc
.GetFileName();
3385 // Make a tuple and put the values in it
3386 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3387 PyObject
* tuple
= PyTuple_New(3);
3388 PyTuple_SetItem(tuple
, 0, wxPyConstructObject(new wxIcon(loc
),
3389 wxT("wxIcon"), true));
3390 PyTuple_SetItem(tuple
, 1, wx2PyString(iconFile
));
3391 PyTuple_SetItem(tuple
, 2, PyInt_FromLong(iconIndex
));
3392 wxPyEndBlockThreads(blocked
);
3398 SWIGINTERN PyObject
*wxFileType_GetDescription(wxFileType
*self
){
3400 if (self
->GetDescription(&str
))
3401 return wx2PyString(str
);
3405 SWIGINTERN PyObject
*wxFileType_GetOpenCommand(wxFileType
*self
,wxString
const &filename
,wxString
const &mimetype
=wxPyEmptyString
){
3407 if (self
->GetOpenCommand(&str
, wxFileType::MessageParameters(filename
, mimetype
)))
3408 return wx2PyString(str
);
3412 SWIGINTERN PyObject
*wxFileType_GetPrintCommand(wxFileType
*self
,wxString
const &filename
,wxString
const &mimetype
=wxPyEmptyString
){
3414 if (self
->GetPrintCommand(&str
, wxFileType::MessageParameters(filename
, mimetype
)))
3415 return wx2PyString(str
);
3419 SWIGINTERN PyObject
*wxFileType_GetAllCommands(wxFileType
*self
,wxString
const &filename
,wxString
const &mimetype
=wxPyEmptyString
){
3420 wxArrayString verbs
;
3421 wxArrayString commands
;
3422 if (self
->GetAllCommands(&verbs
, &commands
,
3423 wxFileType::MessageParameters(filename
, mimetype
))) {
3424 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3425 PyObject
* tuple
= PyTuple_New(2);
3426 PyTuple_SetItem(tuple
, 0, wxArrayString2PyList_helper(verbs
));
3427 PyTuple_SetItem(tuple
, 1, wxArrayString2PyList_helper(commands
));
3428 wxPyEndBlockThreads(blocked
);
3434 SWIGINTERN wxString
wxFileType_ExpandCommand(wxString
const &command
,wxString
const &filename
,wxString
const &mimetype
=wxPyEmptyString
){
3435 return wxFileType::ExpandCommand(command
,
3436 wxFileType::MessageParameters(filename
, mimetype
));
3438 SWIGINTERN PyObject
*wxMimeTypesManager_EnumAllFileTypes(wxMimeTypesManager
*self
){
3440 self
->EnumAllFileTypes(arr
);
3441 return wxArrayString2PyList_helper(arr
);
3444 #include <wx/artprov.h>
3446 static const wxString
wxPyART_TOOLBAR(wxART_TOOLBAR
);
3447 static const wxString
wxPyART_MENU(wxART_MENU
);
3448 static const wxString
wxPyART_FRAME_ICON(wxART_FRAME_ICON
);
3449 static const wxString
wxPyART_CMN_DIALOG(wxART_CMN_DIALOG
);
3450 static const wxString
wxPyART_HELP_BROWSER(wxART_HELP_BROWSER
);
3451 static const wxString
wxPyART_MESSAGE_BOX(wxART_MESSAGE_BOX
);
3452 static const wxString
wxPyART_BUTTON(wxART_BUTTON
);
3453 static const wxString
wxPyART_OTHER(wxART_OTHER
);
3454 static const wxString
wxPyART_ADD_BOOKMARK(wxART_ADD_BOOKMARK
);
3455 static const wxString
wxPyART_DEL_BOOKMARK(wxART_DEL_BOOKMARK
);
3456 static const wxString
wxPyART_HELP_SIDE_PANEL(wxART_HELP_SIDE_PANEL
);
3457 static const wxString
wxPyART_HELP_SETTINGS(wxART_HELP_SETTINGS
);
3458 static const wxString
wxPyART_HELP_BOOK(wxART_HELP_BOOK
);
3459 static const wxString
wxPyART_HELP_FOLDER(wxART_HELP_FOLDER
);
3460 static const wxString
wxPyART_HELP_PAGE(wxART_HELP_PAGE
);
3461 static const wxString
wxPyART_GO_BACK(wxART_GO_BACK
);
3462 static const wxString
wxPyART_GO_FORWARD(wxART_GO_FORWARD
);
3463 static const wxString
wxPyART_GO_UP(wxART_GO_UP
);
3464 static const wxString
wxPyART_GO_DOWN(wxART_GO_DOWN
);
3465 static const wxString
wxPyART_GO_TO_PARENT(wxART_GO_TO_PARENT
);
3466 static const wxString
wxPyART_GO_HOME(wxART_GO_HOME
);
3467 static const wxString
wxPyART_FILE_OPEN(wxART_FILE_OPEN
);
3468 static const wxString
wxPyART_FILE_SAVE(wxART_FILE_SAVE
);
3469 static const wxString
wxPyART_FILE_SAVE_AS(wxART_FILE_SAVE_AS
);
3470 static const wxString
wxPyART_PRINT(wxART_PRINT
);
3471 static const wxString
wxPyART_HELP(wxART_HELP
);
3472 static const wxString
wxPyART_TIP(wxART_TIP
);
3473 static const wxString
wxPyART_REPORT_VIEW(wxART_REPORT_VIEW
);
3474 static const wxString
wxPyART_LIST_VIEW(wxART_LIST_VIEW
);
3475 static const wxString
wxPyART_NEW_DIR(wxART_NEW_DIR
);
3476 static const wxString
wxPyART_HARDDISK(wxART_HARDDISK
);
3477 static const wxString
wxPyART_FLOPPY(wxART_FLOPPY
);
3478 static const wxString
wxPyART_CDROM(wxART_CDROM
);
3479 static const wxString
wxPyART_REMOVABLE(wxART_REMOVABLE
);
3480 static const wxString
wxPyART_FOLDER(wxART_FOLDER
);
3481 static const wxString
wxPyART_FOLDER_OPEN(wxART_FOLDER_OPEN
);
3482 static const wxString
wxPyART_GO_DIR_UP(wxART_GO_DIR_UP
);
3483 static const wxString
wxPyART_EXECUTABLE_FILE(wxART_EXECUTABLE_FILE
);
3484 static const wxString
wxPyART_NORMAL_FILE(wxART_NORMAL_FILE
);
3485 static const wxString
wxPyART_TICK_MARK(wxART_TICK_MARK
);
3486 static const wxString
wxPyART_CROSS_MARK(wxART_CROSS_MARK
);
3487 static const wxString
wxPyART_ERROR(wxART_ERROR
);
3488 static const wxString
wxPyART_QUESTION(wxART_QUESTION
);
3489 static const wxString
wxPyART_WARNING(wxART_WARNING
);
3490 static const wxString
wxPyART_INFORMATION(wxART_INFORMATION
);
3491 static const wxString
wxPyART_MISSING_IMAGE(wxART_MISSING_IMAGE
);
3492 static const wxString
wxPyART_COPY(wxART_COPY
);
3493 static const wxString
wxPyART_CUT(wxART_CUT
);
3494 static const wxString
wxPyART_PASTE(wxART_PASTE
);
3495 static const wxString
wxPyART_DELETE(wxART_DELETE
);
3496 static const wxString
wxPyART_NEW(wxART_NEW
);
3497 static const wxString
wxPyART_UNDO(wxART_UNDO
);
3498 static const wxString
wxPyART_REDO(wxART_REDO
);
3499 static const wxString
wxPyART_QUIT(wxART_QUIT
);
3500 static const wxString
wxPyART_FIND(wxART_FIND
);
3501 static const wxString
wxPyART_FIND_AND_REPLACE(wxART_FIND_AND_REPLACE
);
3502 // Python aware wxArtProvider
3503 class wxPyArtProvider
: public wxArtProvider
{
3506 virtual wxBitmap
CreateBitmap(const wxArtID
& id
,
3507 const wxArtClient
& client
,
3508 const wxSize
& size
) {
3509 wxBitmap rval
= wxNullBitmap
;
3510 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3511 if ((wxPyCBH_findCallback(m_myInst
, "CreateBitmap"))) {
3512 PyObject
* so
= wxPyConstructObject((void*)&size
, wxT("wxSize"), 0);
3516 s1
= wx2PyString(id
);
3517 s2
= wx2PyString(client
);
3518 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOO)", s1
, s2
, so
));
3523 if (wxPyConvertSwigPtr(ro
, (void**)&ptr
, wxT("wxBitmap")))
3528 wxPyEndBlockThreads(blocked
);
3535 SWIGINTERN
void wxPyArtProvider_Destroy(wxPyArtProvider
*self
){ delete self
; }
3539 static PyObject
* __EnumerationHelper(bool flag
, wxString
& str
, long index
) {
3540 PyObject
* ret
= PyTuple_New(3);
3542 PyTuple_SET_ITEM(ret
, 0, PyInt_FromLong(flag
));
3543 PyTuple_SET_ITEM(ret
, 1, wx2PyString(str
));
3544 PyTuple_SET_ITEM(ret
, 2, PyInt_FromLong(index
));
3549 SWIGINTERN PyObject
*wxConfigBase_GetFirstGroup(wxConfigBase
*self
){
3554 cont
= self
->GetFirstGroup(value
, index
);
3555 return __EnumerationHelper(cont
, value
, index
);
3557 SWIGINTERN PyObject
*wxConfigBase_GetNextGroup(wxConfigBase
*self
,long index
){
3561 cont
= self
->GetNextGroup(value
, index
);
3562 return __EnumerationHelper(cont
, value
, index
);
3564 SWIGINTERN PyObject
*wxConfigBase_GetFirstEntry(wxConfigBase
*self
){
3569 cont
= self
->GetFirstEntry(value
, index
);
3570 return __EnumerationHelper(cont
, value
, index
);
3572 SWIGINTERN PyObject
*wxConfigBase_GetNextEntry(wxConfigBase
*self
,long index
){
3576 cont
= self
->GetNextEntry(value
, index
);
3577 return __EnumerationHelper(cont
, value
, index
);
3579 SWIGINTERN
long wxConfigBase_ReadInt(wxConfigBase
*self
,wxString
const &key
,long defaultVal
=0){
3581 self
->Read(key
, &rv
, defaultVal
);
3586 SWIG_AsVal_double (PyObject
*obj
, double* val
)
3588 if (PyNumber_Check(obj
)) {
3589 if (val
) *val
= PyFloat_AsDouble(obj
);
3592 return SWIG_TypeError
;
3595 SWIGINTERN
double wxConfigBase_ReadFloat(wxConfigBase
*self
,wxString
const &key
,double defaultVal
=0.0){
3597 self
->Read(key
, &rv
, defaultVal
);
3601 #define SWIG_From_double PyFloat_FromDouble
3603 SWIGINTERN
bool wxConfigBase_ReadBool(wxConfigBase
*self
,wxString
const &key
,bool defaultVal
=false){
3605 self
->Read(key
, &rv
, defaultVal
);
3609 #include <wx/datetime.h>
3611 static const wxString
wxPyDefaultDateTimeFormat(wxDefaultDateTimeFormat
);
3612 static const wxString
wxPyDefaultTimeSpanFormat(wxDefaultTimeSpanFormat
);
3614 #define LOCAL_TZ wxDateTime::Local
3616 SWIGINTERN PyObject
*wxDateTime_GetAmPmStrings(){
3619 wxDateTime::GetAmPmStrings(&am
, &pm
);
3620 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3621 PyObject
* tup
= PyTuple_New(2);
3622 PyTuple_SET_ITEM(tup
, 0, wx2PyString(am
));
3623 PyTuple_SET_ITEM(tup
, 1, wx2PyString(pm
));
3624 wxPyEndBlockThreads(blocked
);
3628 SWIGINTERNINLINE PyObject
*
3629 SWIG_From_unsigned_SS_int (unsigned int value
)
3631 return SWIG_From_unsigned_SS_long (value
);
3634 SWIGINTERN wxDateTime
wxDateTime___add____SWIG_0(wxDateTime
*self
,wxTimeSpan
const &other
){ return *self
+ other
; }
3635 SWIGINTERN wxDateTime
wxDateTime___add____SWIG_1(wxDateTime
*self
,wxDateSpan
const &other
){ return *self
+ other
; }
3636 SWIGINTERN wxTimeSpan
wxDateTime___sub____SWIG_0(wxDateTime
*self
,wxDateTime
const &other
){ return *self
- other
; }
3637 SWIGINTERN wxDateTime
wxDateTime___sub____SWIG_1(wxDateTime
*self
,wxTimeSpan
const &other
){ return *self
- other
; }
3638 SWIGINTERN wxDateTime
wxDateTime___sub____SWIG_2(wxDateTime
*self
,wxDateSpan
const &other
){ return *self
- other
; }
3639 SWIGINTERN
bool wxDateTime___lt__(wxDateTime
*self
,wxDateTime
const *other
){
3640 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
< other
;
3641 return (*self
< *other
);
3643 SWIGINTERN
bool wxDateTime___le__(wxDateTime
*self
,wxDateTime
const *other
){
3644 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
<= other
;
3645 return (*self
<= *other
);
3647 SWIGINTERN
bool wxDateTime___gt__(wxDateTime
*self
,wxDateTime
const *other
){
3648 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
> other
;
3649 return (*self
> *other
);
3651 SWIGINTERN
bool wxDateTime___ge__(wxDateTime
*self
,wxDateTime
const *other
){
3652 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
>= other
;
3653 return (*self
>= *other
);
3655 SWIGINTERN
bool wxDateTime___eq__(wxDateTime
*self
,wxDateTime
const *other
){
3656 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
== other
;
3657 return (*self
== *other
);
3659 SWIGINTERN
bool wxDateTime___ne__(wxDateTime
*self
,wxDateTime
const *other
){
3660 if (!other
|| !self
->IsValid() || !other
->IsValid()) return self
!= other
;
3661 return (*self
!= *other
);
3663 SWIGINTERN
int wxDateTime_ParseRfc822Date(wxDateTime
*self
,wxString
const &date
){
3665 const wxChar
* _date
= date
;
3666 rv
= self
->ParseRfc822Date(_date
);
3667 if (rv
== NULL
) return -1;
3670 SWIGINTERN
int wxDateTime_ParseFormat(wxDateTime
*self
,wxString
const &date
,wxString
const &format
=wxPyDefaultDateTimeFormat
,wxDateTime
const &dateDef
=wxDefaultDateTime
){
3672 const wxChar
* _date
= date
;
3673 rv
= self
->ParseFormat(_date
, format
, dateDef
);
3674 if (rv
== NULL
) return -1;
3677 SWIGINTERN
int wxDateTime_ParseDateTime(wxDateTime
*self
,wxString
const &datetime
){
3679 const wxChar
* _datetime
= datetime
;
3680 rv
= self
->ParseDateTime(_datetime
);
3681 if (rv
== NULL
) return -1;
3682 return rv
- _datetime
;
3684 SWIGINTERN
int wxDateTime_ParseDate(wxDateTime
*self
,wxString
const &date
){
3686 const wxChar
* _date
= date
;
3687 rv
= self
->ParseDate(_date
);
3688 if (rv
== NULL
) return -1;
3691 SWIGINTERN
int wxDateTime_ParseTime(wxDateTime
*self
,wxString
const &time
){
3693 const wxChar
* _time
= time
;
3694 rv
= self
->ParseTime(_time
);
3695 if (rv
== NULL
) return -1;
3698 SWIGINTERN wxTimeSpan
wxTimeSpan___add__(wxTimeSpan
*self
,wxTimeSpan
const &other
){ return *self
+ other
; }
3699 SWIGINTERN wxTimeSpan
wxTimeSpan___sub__(wxTimeSpan
*self
,wxTimeSpan
const &other
){ return *self
- other
; }
3700 SWIGINTERN wxTimeSpan
wxTimeSpan___mul__(wxTimeSpan
*self
,int n
){ return *self
* n
; }
3701 SWIGINTERN wxTimeSpan
wxTimeSpan___rmul__(wxTimeSpan
*self
,int n
){ return n
* *self
; }
3702 SWIGINTERN
bool wxTimeSpan___lt__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
< *other
) : false; }
3703 SWIGINTERN
bool wxTimeSpan___le__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
<= *other
) : false; }
3704 SWIGINTERN
bool wxTimeSpan___gt__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
> *other
) : true; }
3705 SWIGINTERN
bool wxTimeSpan___ge__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
>= *other
) : true; }
3706 SWIGINTERN
bool wxTimeSpan___eq__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
== *other
) : false; }
3707 SWIGINTERN
bool wxTimeSpan___ne__(wxTimeSpan
*self
,wxTimeSpan
const *other
){ return other
? (*self
!= *other
) : true; }
3708 SWIGINTERN wxDateSpan
wxDateSpan___add__(wxDateSpan
*self
,wxDateSpan
const &other
){ return *self
+ other
; }
3709 SWIGINTERN wxDateSpan
wxDateSpan___sub__(wxDateSpan
*self
,wxDateSpan
const &other
){ return *self
- other
; }
3710 SWIGINTERN wxDateSpan
wxDateSpan___mul__(wxDateSpan
*self
,int n
){ return *self
* n
; }
3711 SWIGINTERN wxDateSpan
wxDateSpan___rmul__(wxDateSpan
*self
,int n
){ return n
* *self
; }
3712 SWIGINTERN
bool wxDateSpan___eq__(wxDateSpan
*self
,wxDateSpan
const *other
){ return other
? (*self
== *other
) : false; }
3713 SWIGINTERN
bool wxDateSpan___ne__(wxDateSpan
*self
,wxDateSpan
const *other
){ return other
? (*self
!= *other
) : true; }
3715 #include <wx/dataobj.h>
3717 SWIGINTERN PyObject
*wxDataObject_GetAllFormats(wxDataObject
*self
,wxDataObject::Direction dir
=wxDataObject::Get
){
3718 size_t count
= self
->GetFormatCount(dir
);
3719 wxDataFormat
* formats
= new wxDataFormat
[count
];
3720 self
->GetAllFormats(formats
, dir
);
3722 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3723 PyObject
* list
= PyList_New(count
);
3724 for (size_t i
=0; i
<count
; i
++) {
3725 wxDataFormat
* format
= new wxDataFormat(formats
[i
]);
3726 PyObject
* obj
= wxPyConstructObject((void*)format
, wxT("wxDataFormat"), true);
3727 PyList_SET_ITEM(list
, i
, obj
); // PyList_SET_ITEM steals a reference
3729 wxPyEndBlockThreads(blocked
);
3733 SWIGINTERN PyObject
*wxDataObject_GetDataHere(wxDataObject
*self
,wxDataFormat
const &format
){
3734 PyObject
* rval
= NULL
;
3735 size_t size
= self
->GetDataSize(format
);
3736 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3738 char* buf
= new char[size
];
3739 if (self
->GetDataHere(format
, buf
))
3740 rval
= PyString_FromStringAndSize(buf
, size
);
3747 wxPyEndBlockThreads(blocked
);
3750 SWIGINTERN
bool wxDataObject_SetData(wxDataObject
*self
,wxDataFormat
const &format
,PyObject
*data
){
3752 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3753 if (PyString_Check(data
)) {
3754 rval
= self
->SetData(format
, PyString_Size(data
), PyString_AsString(data
));
3757 // raise a TypeError if not a string
3758 PyErr_SetString(PyExc_TypeError
, "String expected.");
3761 wxPyEndBlockThreads(blocked
);
3764 SWIGINTERN PyObject
*wxDataObjectSimple_GetDataHere(wxDataObjectSimple
*self
){
3765 PyObject
* rval
= NULL
;
3766 size_t size
= self
->GetDataSize();
3767 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3769 char* buf
= new char[size
];
3770 if (self
->GetDataHere(buf
))
3771 rval
= PyString_FromStringAndSize(buf
, size
);
3778 wxPyEndBlockThreads(blocked
);
3781 SWIGINTERN
bool wxDataObjectSimple_SetData(wxDataObjectSimple
*self
,PyObject
*data
){
3783 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3784 if (PyString_Check(data
)) {
3785 rval
= self
->SetData(PyString_Size(data
), PyString_AsString(data
));
3788 // raise a TypeError if not a string
3789 PyErr_SetString(PyExc_TypeError
, "String expected.");
3792 wxPyEndBlockThreads(blocked
);
3795 // Create a new class for wxPython to use
3796 class wxPyDataObjectSimple
: public wxDataObjectSimple
{
3798 wxPyDataObjectSimple(const wxDataFormat
& format
= wxFormatInvalid
)
3799 : wxDataObjectSimple(format
) {}
3801 DEC_PYCALLBACK_SIZET__const(GetDataSize
);
3802 bool GetDataHere(void *buf
) const;
3803 bool SetData(size_t len
, const void *buf
) const;
3807 IMP_PYCALLBACK_SIZET__const(wxPyDataObjectSimple
, wxDataObjectSimple
, GetDataSize
);
3809 bool wxPyDataObjectSimple::GetDataHere(void *buf
) const {
3810 // We need to get the data for this object and write it to buf. I think
3811 // the best way to do this for wxPython is to have the Python method
3812 // return either a string or None and then act appropriately with the
3816 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3817 if (wxPyCBH_findCallback(m_myInst
, "GetDataHere")) {
3819 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3821 rval
= (ro
!= Py_None
&& PyString_Check(ro
));
3823 memcpy(buf
, PyString_AsString(ro
), PyString_Size(ro
));
3827 wxPyEndBlockThreads(blocked
);
3831 bool wxPyDataObjectSimple::SetData(size_t len
, const void *buf
) const{
3832 // For this one we simply need to make a string from buf and len
3833 // and send it to the Python method.
3835 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3836 if (wxPyCBH_findCallback(m_myInst
, "SetData")) {
3837 PyObject
* data
= PyString_FromStringAndSize((char*)buf
, len
);
3838 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", data
));
3841 wxPyEndBlockThreads(blocked
);
3845 // Create a new class for wxPython to use
3846 class wxPyTextDataObject
: public wxTextDataObject
{
3848 wxPyTextDataObject(const wxString
& text
= wxPyEmptyString
)
3849 : wxTextDataObject(text
) {}
3851 DEC_PYCALLBACK_SIZET__const(GetTextLength
);
3852 DEC_PYCALLBACK_STRING__const(GetText
);
3853 DEC_PYCALLBACK__STRING(SetText
);
3857 IMP_PYCALLBACK_SIZET__const(wxPyTextDataObject
, wxTextDataObject
, GetTextLength
);
3858 IMP_PYCALLBACK_STRING__const(wxPyTextDataObject
, wxTextDataObject
, GetText
);
3859 IMP_PYCALLBACK__STRING(wxPyTextDataObject
, wxTextDataObject
, SetText
);
3862 // Create a new class for wxPython to use
3863 class wxPyBitmapDataObject
: public wxBitmapDataObject
{
3865 wxPyBitmapDataObject(const wxBitmap
& bitmap
= wxNullBitmap
)
3866 : wxBitmapDataObject(bitmap
) {}
3868 wxBitmap
GetBitmap() const;
3869 void SetBitmap(const wxBitmap
& bitmap
);
3873 wxBitmap
wxPyBitmapDataObject::GetBitmap() const {
3874 wxBitmap
* rval
= &wxNullBitmap
;
3875 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3876 if (wxPyCBH_findCallback(m_myInst
, "GetBitmap")) {
3879 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3881 if (wxPyConvertSwigPtr(ro
, (void **)&ptr
, wxT("wxBitmap")))
3886 wxPyEndBlockThreads(blocked
);
3890 void wxPyBitmapDataObject::SetBitmap(const wxBitmap
& bitmap
) {
3891 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3892 if (wxPyCBH_findCallback(m_myInst
, "SetBitmap")) {
3893 PyObject
* bo
= wxPyConstructObject((void*)&bitmap
, wxT("wxBitmap"), false);
3894 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", bo
));
3897 wxPyEndBlockThreads(blocked
);
3900 SWIGINTERN wxCustomDataObject
*new_wxCustomDataObject__SWIG_1(wxString
const &formatName
){
3901 return new wxCustomDataObject(wxDataFormat(formatName
));
3903 SWIGINTERN
bool wxCustomDataObject_SetData(wxCustomDataObject
*self
,PyObject
*data
){
3905 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3906 if (PyString_Check(data
)) {
3907 rval
= self
->SetData(PyString_Size(data
), PyString_AsString(data
));
3910 // raise a TypeError if not a string
3911 PyErr_SetString(PyExc_TypeError
, "String expected.");
3914 wxPyEndBlockThreads(blocked
);
3917 SWIGINTERN PyObject
*wxCustomDataObject_GetData(wxCustomDataObject
*self
){
3919 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3920 obj
= PyString_FromStringAndSize((char*)self
->GetData(), self
->GetSize());
3921 wxPyEndBlockThreads(blocked
);
3925 class wxMetafileDataObject
: public wxDataObjectSimple
3928 wxMetafileDataObject() { wxPyRaiseNotImplemented(); }
3932 IMP_PYCALLBACK_BOOL_DR(wxPyDropSource
, wxDropSource
, GiveFeedback
);
3935 IMP_PYCALLBACK__(wxPyDropTarget
, wxDropTarget
, OnLeave
);
3936 IMP_PYCALLBACK_DR_2WXCDR(wxPyDropTarget
, wxDropTarget
, OnEnter
);
3937 IMP_PYCALLBACK_DR_2WXCDR(wxPyDropTarget
, wxDropTarget
, OnDragOver
);
3938 IMP_PYCALLBACK_DR_2WXCDR_pure(wxPyDropTarget
, wxDropTarget
, OnData
);
3939 IMP_PYCALLBACK_BOOL_INTINT(wxPyDropTarget
, wxDropTarget
, OnDrop
);
3942 class wxPyTextDropTarget
: public wxTextDropTarget
{
3944 wxPyTextDropTarget() {}
3946 DEC_PYCALLBACK_BOOL_INTINTSTR_pure(OnDropText
);
3948 DEC_PYCALLBACK__(OnLeave
);
3949 DEC_PYCALLBACK_DR_2WXCDR(OnEnter
);
3950 DEC_PYCALLBACK_DR_2WXCDR(OnDragOver
);
3951 DEC_PYCALLBACK_DR_2WXCDR(OnData
);
3952 DEC_PYCALLBACK_BOOL_INTINT(OnDrop
);
3957 IMP_PYCALLBACK_BOOL_INTINTSTR_pure(wxPyTextDropTarget
, wxTextDropTarget
, OnDropText
);
3958 IMP_PYCALLBACK__(wxPyTextDropTarget
, wxTextDropTarget
, OnLeave
);
3959 IMP_PYCALLBACK_DR_2WXCDR(wxPyTextDropTarget
, wxTextDropTarget
, OnEnter
);
3960 IMP_PYCALLBACK_DR_2WXCDR(wxPyTextDropTarget
, wxTextDropTarget
, OnDragOver
);
3961 IMP_PYCALLBACK_DR_2WXCDR(wxPyTextDropTarget
, wxTextDropTarget
, OnData
);
3962 IMP_PYCALLBACK_BOOL_INTINT(wxPyTextDropTarget
, wxTextDropTarget
, OnDrop
);
3966 class wxPyFileDropTarget
: public wxFileDropTarget
{
3968 wxPyFileDropTarget() {}
3970 virtual bool OnDropFiles(wxCoord x
, wxCoord y
, const wxArrayString
& filenames
);
3972 DEC_PYCALLBACK__(OnLeave
);
3973 DEC_PYCALLBACK_DR_2WXCDR(OnEnter
);
3974 DEC_PYCALLBACK_DR_2WXCDR(OnDragOver
);
3975 DEC_PYCALLBACK_DR_2WXCDR(OnData
);
3976 DEC_PYCALLBACK_BOOL_INTINT(OnDrop
);
3981 bool wxPyFileDropTarget::OnDropFiles(wxCoord x
, wxCoord y
,
3982 const wxArrayString
& filenames
) {
3984 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3985 if (wxPyCBH_findCallback(m_myInst
, "OnDropFiles")) {
3986 PyObject
* list
= wxArrayString2PyList_helper(filenames
);
3987 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(iiO)",x
,y
,list
));
3990 wxPyEndBlockThreads(blocked
);
3996 IMP_PYCALLBACK__(wxPyFileDropTarget
, wxFileDropTarget
, OnLeave
);
3997 IMP_PYCALLBACK_DR_2WXCDR(wxPyFileDropTarget
, wxFileDropTarget
, OnEnter
);
3998 IMP_PYCALLBACK_DR_2WXCDR(wxPyFileDropTarget
, wxFileDropTarget
, OnDragOver
);
3999 IMP_PYCALLBACK_DR_2WXCDR(wxPyFileDropTarget
, wxFileDropTarget
, OnData
);
4000 IMP_PYCALLBACK_BOOL_INTINT(wxPyFileDropTarget
, wxFileDropTarget
, OnDrop
);
4005 SWIGINTERN
bool wxClipboardLocker___nonzero__(wxClipboardLocker
*self
){ return !!(*self
); }
4007 #include <wx/display.h>
4009 SWIGINTERN
bool wxVideoMode___eq__(wxVideoMode
*self
,wxVideoMode
const *other
){ return other
? (*self
== *other
) : false; }
4010 SWIGINTERN
bool wxVideoMode___ne__(wxVideoMode
*self
,wxVideoMode
const *other
){ return other
? (*self
!= *other
) : true; }
4013 const wxVideoMode wxDefaultVideoMode
;
4016 SWIGINTERN PyObject
*wxDisplay_GetModes(wxDisplay
*self
,wxVideoMode
const &mode
=wxDefaultVideoMode
){
4018 PyObject
* pyList
= NULL
;
4019 wxArrayVideoModes arr
= self
->GetModes(mode
);
4020 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
4021 pyList
= PyList_New(0);
4022 for (size_t i
=0; i
< arr
.GetCount(); i
++)
4024 wxVideoMode
* m
= new wxVideoMode(arr
.Item(i
));
4025 PyObject
* pyObj
= wxPyConstructObject(m
, wxT("wxVideoMode"), true);
4026 PyList_Append(pyList
, pyObj
);
4029 wxPyEndBlockThreads(blocked
);
4032 wxPyRaiseNotImplemented();
4036 SWIGINTERN wxVideoMode
wxDisplay_GetCurrentMode(wxDisplay
const *self
){
4038 return self
->GetCurrentMode();
4040 wxPyRaiseNotImplemented();
4041 return wxDefaultVideoMode
;
4044 SWIGINTERN
bool wxDisplay_ChangeMode(wxDisplay
*self
,wxVideoMode
const &mode
=wxDefaultVideoMode
){
4046 return self
->ChangeMode(mode
);
4048 wxPyRaiseNotImplemented();
4052 SWIGINTERN
void wxDisplay_ResetMode(wxDisplay
*self
){
4056 wxPyRaiseNotImplemented();
4060 #include <wx/stdpaths.h>
4062 SWIGINTERN wxStandardPaths
*wxStandardPaths_Get(){
4063 return (wxStandardPaths
*) &wxStandardPaths::Get();
4068 SWIGINTERN PyObject
*_wrap_SystemSettings_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4069 PyObject
*resultobj
= 0;
4070 wxSystemColour arg1
;
4074 PyObject
* obj0
= 0 ;
4075 char * kwnames
[] = {
4076 (char *) "index", NULL
4079 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemSettings_GetColour",kwnames
,&obj0
)) SWIG_fail
;
4080 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4081 if (!SWIG_IsOK(ecode1
)) {
4082 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SystemSettings_GetColour" "', expected argument " "1"" of type '" "wxSystemColour""'");
4084 arg1
= static_cast< wxSystemColour
>(val1
);
4086 if (!wxPyCheckForApp()) SWIG_fail
;
4087 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4088 result
= wxSystemSettings::GetColour(arg1
);
4089 wxPyEndAllowThreads(__tstate
);
4090 if (PyErr_Occurred()) SWIG_fail
;
4092 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
4099 SWIGINTERN PyObject
*_wrap_SystemSettings_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4100 PyObject
*resultobj
= 0;
4105 PyObject
* obj0
= 0 ;
4106 char * kwnames
[] = {
4107 (char *) "index", NULL
4110 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemSettings_GetFont",kwnames
,&obj0
)) SWIG_fail
;
4111 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4112 if (!SWIG_IsOK(ecode1
)) {
4113 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SystemSettings_GetFont" "', expected argument " "1"" of type '" "wxSystemFont""'");
4115 arg1
= static_cast< wxSystemFont
>(val1
);
4117 if (!wxPyCheckForApp()) SWIG_fail
;
4118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4119 result
= wxSystemSettings::GetFont(arg1
);
4120 wxPyEndAllowThreads(__tstate
);
4121 if (PyErr_Occurred()) SWIG_fail
;
4123 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
4130 SWIGINTERN PyObject
*_wrap_SystemSettings_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4131 PyObject
*resultobj
= 0;
4132 wxSystemMetric arg1
;
4133 wxWindow
*arg2
= (wxWindow
*) NULL
;
4139 PyObject
* obj0
= 0 ;
4140 PyObject
* obj1
= 0 ;
4141 char * kwnames
[] = {
4142 (char *) "index",(char *) "win", NULL
4145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:SystemSettings_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4146 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4147 if (!SWIG_IsOK(ecode1
)) {
4148 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SystemSettings_GetMetric" "', expected argument " "1"" of type '" "wxSystemMetric""'");
4150 arg1
= static_cast< wxSystemMetric
>(val1
);
4152 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4153 if (!SWIG_IsOK(res2
)) {
4154 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SystemSettings_GetMetric" "', expected argument " "2"" of type '" "wxWindow *""'");
4156 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4159 if (!wxPyCheckForApp()) SWIG_fail
;
4160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4161 result
= (int)wxSystemSettings::GetMetric(arg1
,arg2
);
4162 wxPyEndAllowThreads(__tstate
);
4163 if (PyErr_Occurred()) SWIG_fail
;
4165 resultobj
= SWIG_From_int(static_cast< int >(result
));
4172 SWIGINTERN PyObject
*_wrap_SystemSettings_HasFeature(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4173 PyObject
*resultobj
= 0;
4174 wxSystemFeature arg1
;
4178 PyObject
* obj0
= 0 ;
4179 char * kwnames
[] = {
4180 (char *) "index", NULL
4183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemSettings_HasFeature",kwnames
,&obj0
)) SWIG_fail
;
4184 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4185 if (!SWIG_IsOK(ecode1
)) {
4186 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SystemSettings_HasFeature" "', expected argument " "1"" of type '" "wxSystemFeature""'");
4188 arg1
= static_cast< wxSystemFeature
>(val1
);
4190 if (!wxPyCheckForApp()) SWIG_fail
;
4191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4192 result
= (bool)wxSystemSettings::HasFeature(arg1
);
4193 wxPyEndAllowThreads(__tstate
);
4194 if (PyErr_Occurred()) SWIG_fail
;
4197 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4205 SWIGINTERN PyObject
*_wrap_SystemSettings_GetScreenType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4206 PyObject
*resultobj
= 0;
4207 wxSystemScreenType result
;
4209 if (!SWIG_Python_UnpackTuple(args
,"SystemSettings_GetScreenType",0,0,0)) SWIG_fail
;
4211 if (!wxPyCheckForApp()) SWIG_fail
;
4212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4213 result
= (wxSystemScreenType
)wxSystemSettings::GetScreenType();
4214 wxPyEndAllowThreads(__tstate
);
4215 if (PyErr_Occurred()) SWIG_fail
;
4217 resultobj
= SWIG_From_int(static_cast< int >(result
));
4224 SWIGINTERN PyObject
*_wrap_SystemSettings_SetScreenType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4225 PyObject
*resultobj
= 0;
4226 wxSystemScreenType arg1
;
4229 PyObject
* obj0
= 0 ;
4230 char * kwnames
[] = {
4231 (char *) "screen", NULL
4234 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemSettings_SetScreenType",kwnames
,&obj0
)) SWIG_fail
;
4235 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4236 if (!SWIG_IsOK(ecode1
)) {
4237 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SystemSettings_SetScreenType" "', expected argument " "1"" of type '" "wxSystemScreenType""'");
4239 arg1
= static_cast< wxSystemScreenType
>(val1
);
4241 if (!wxPyCheckForApp()) SWIG_fail
;
4242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4243 wxSystemSettings::SetScreenType(arg1
);
4244 wxPyEndAllowThreads(__tstate
);
4245 if (PyErr_Occurred()) SWIG_fail
;
4247 resultobj
= SWIG_Py_Void();
4254 SWIGINTERN PyObject
*SystemSettings_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4256 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4257 SWIG_TypeNewClientData(SWIGTYPE_p_wxSystemSettings
, SWIG_NewClientData(obj
));
4258 return SWIG_Py_Void();
4261 SWIGINTERN
int WINDOW_DEFAULT_VARIANT_set(PyObject
*) {
4262 SWIG_Error(SWIG_AttributeError
,"Variable WINDOW_DEFAULT_VARIANT is read-only.");
4267 SWIGINTERN PyObject
*WINDOW_DEFAULT_VARIANT_get(void) {
4268 PyObject
*pyobj
= 0;
4272 pyobj
= PyUnicode_FromWideChar((&wxPyWINDOW_DEFAULT_VARIANT
)->c_str(), (&wxPyWINDOW_DEFAULT_VARIANT
)->Len());
4274 pyobj
= PyString_FromStringAndSize((&wxPyWINDOW_DEFAULT_VARIANT
)->c_str(), (&wxPyWINDOW_DEFAULT_VARIANT
)->Len());
4281 SWIGINTERN PyObject
*_wrap_new_SystemOptions(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4282 PyObject
*resultobj
= 0;
4283 wxSystemOptions
*result
= 0 ;
4285 if (!SWIG_Python_UnpackTuple(args
,"new_SystemOptions",0,0,0)) SWIG_fail
;
4287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4288 result
= (wxSystemOptions
*)new wxSystemOptions();
4289 wxPyEndAllowThreads(__tstate
);
4290 if (PyErr_Occurred()) SWIG_fail
;
4292 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSystemOptions
, SWIG_POINTER_NEW
| 0 );
4299 SWIGINTERN PyObject
*_wrap_SystemOptions_SetOption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4300 PyObject
*resultobj
= 0;
4301 wxString
*arg1
= 0 ;
4302 wxString
*arg2
= 0 ;
4303 bool temp1
= false ;
4304 bool temp2
= false ;
4305 PyObject
* obj0
= 0 ;
4306 PyObject
* obj1
= 0 ;
4307 char * kwnames
[] = {
4308 (char *) "name",(char *) "value", NULL
4311 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SystemOptions_SetOption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4313 arg1
= wxString_in_helper(obj0
);
4314 if (arg1
== NULL
) SWIG_fail
;
4318 arg2
= wxString_in_helper(obj1
);
4319 if (arg2
== NULL
) SWIG_fail
;
4323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4324 wxSystemOptions::SetOption((wxString
const &)*arg1
,(wxString
const &)*arg2
);
4325 wxPyEndAllowThreads(__tstate
);
4326 if (PyErr_Occurred()) SWIG_fail
;
4328 resultobj
= SWIG_Py_Void();
4351 SWIGINTERN PyObject
*_wrap_SystemOptions_SetOptionInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4352 PyObject
*resultobj
= 0;
4353 wxString
*arg1
= 0 ;
4355 bool temp1
= false ;
4358 PyObject
* obj0
= 0 ;
4359 PyObject
* obj1
= 0 ;
4360 char * kwnames
[] = {
4361 (char *) "name",(char *) "value", NULL
4364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SystemOptions_SetOptionInt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4366 arg1
= wxString_in_helper(obj0
);
4367 if (arg1
== NULL
) SWIG_fail
;
4370 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4371 if (!SWIG_IsOK(ecode2
)) {
4372 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SystemOptions_SetOptionInt" "', expected argument " "2"" of type '" "int""'");
4374 arg2
= static_cast< int >(val2
);
4376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4377 wxSystemOptions::SetOption((wxString
const &)*arg1
,arg2
);
4378 wxPyEndAllowThreads(__tstate
);
4379 if (PyErr_Occurred()) SWIG_fail
;
4381 resultobj
= SWIG_Py_Void();
4396 SWIGINTERN PyObject
*_wrap_SystemOptions_GetOption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4397 PyObject
*resultobj
= 0;
4398 wxString
*arg1
= 0 ;
4400 bool temp1
= false ;
4401 PyObject
* obj0
= 0 ;
4402 char * kwnames
[] = {
4403 (char *) "name", NULL
4406 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemOptions_GetOption",kwnames
,&obj0
)) SWIG_fail
;
4408 arg1
= wxString_in_helper(obj0
);
4409 if (arg1
== NULL
) SWIG_fail
;
4413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4414 result
= wxSystemOptions::GetOption((wxString
const &)*arg1
);
4415 wxPyEndAllowThreads(__tstate
);
4416 if (PyErr_Occurred()) SWIG_fail
;
4420 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4422 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4439 SWIGINTERN PyObject
*_wrap_SystemOptions_GetOptionInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4440 PyObject
*resultobj
= 0;
4441 wxString
*arg1
= 0 ;
4443 bool temp1
= false ;
4444 PyObject
* obj0
= 0 ;
4445 char * kwnames
[] = {
4446 (char *) "name", NULL
4449 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemOptions_GetOptionInt",kwnames
,&obj0
)) SWIG_fail
;
4451 arg1
= wxString_in_helper(obj0
);
4452 if (arg1
== NULL
) SWIG_fail
;
4456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4457 result
= (int)wxSystemOptions::GetOptionInt((wxString
const &)*arg1
);
4458 wxPyEndAllowThreads(__tstate
);
4459 if (PyErr_Occurred()) SWIG_fail
;
4461 resultobj
= SWIG_From_int(static_cast< int >(result
));
4476 SWIGINTERN PyObject
*_wrap_SystemOptions_HasOption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4477 PyObject
*resultobj
= 0;
4478 wxString
*arg1
= 0 ;
4480 bool temp1
= false ;
4481 PyObject
* obj0
= 0 ;
4482 char * kwnames
[] = {
4483 (char *) "name", NULL
4486 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemOptions_HasOption",kwnames
,&obj0
)) SWIG_fail
;
4488 arg1
= wxString_in_helper(obj0
);
4489 if (arg1
== NULL
) SWIG_fail
;
4493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4494 result
= (bool)wxSystemOptions::HasOption((wxString
const &)*arg1
);
4495 wxPyEndAllowThreads(__tstate
);
4496 if (PyErr_Occurred()) SWIG_fail
;
4499 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4515 SWIGINTERN PyObject
*_wrap_SystemOptions_IsFalse(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4516 PyObject
*resultobj
= 0;
4517 wxString
*arg1
= 0 ;
4519 bool temp1
= false ;
4520 PyObject
* obj0
= 0 ;
4521 char * kwnames
[] = {
4522 (char *) "name", NULL
4525 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SystemOptions_IsFalse",kwnames
,&obj0
)) SWIG_fail
;
4527 arg1
= wxString_in_helper(obj0
);
4528 if (arg1
== NULL
) SWIG_fail
;
4532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4533 result
= (bool)wxSystemOptions::IsFalse((wxString
const &)*arg1
);
4534 wxPyEndAllowThreads(__tstate
);
4535 if (PyErr_Occurred()) SWIG_fail
;
4538 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4554 SWIGINTERN PyObject
*SystemOptions_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4556 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4557 SWIG_TypeNewClientData(SWIGTYPE_p_wxSystemOptions
, SWIG_NewClientData(obj
));
4558 return SWIG_Py_Void();
4561 SWIGINTERN PyObject
*SystemOptions_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4562 return SWIG_Python_InitShadowInstance(args
);
4565 SWIGINTERN
int FileSelectorPromptStr_set(PyObject
*) {
4566 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorPromptStr is read-only.");
4571 SWIGINTERN PyObject
*FileSelectorPromptStr_get(void) {
4572 PyObject
*pyobj
= 0;
4576 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
4578 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
4585 SWIGINTERN
int FileSelectorDefaultWildcardStr_set(PyObject
*) {
4586 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorDefaultWildcardStr is read-only.");
4591 SWIGINTERN PyObject
*FileSelectorDefaultWildcardStr_get(void) {
4592 PyObject
*pyobj
= 0;
4596 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
4598 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
4605 SWIGINTERN
int DirSelectorPromptStr_set(PyObject
*) {
4606 SWIG_Error(SWIG_AttributeError
,"Variable DirSelectorPromptStr is read-only.");
4611 SWIGINTERN PyObject
*DirSelectorPromptStr_get(void) {
4612 PyObject
*pyobj
= 0;
4616 pyobj
= PyUnicode_FromWideChar((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
4618 pyobj
= PyString_FromStringAndSize((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
4625 SWIGINTERN PyObject
*_wrap_NewId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4626 PyObject
*resultobj
= 0;
4629 if (!SWIG_Python_UnpackTuple(args
,"NewId",0,0,0)) SWIG_fail
;
4631 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4632 result
= (long)wxNewId();
4633 wxPyEndAllowThreads(__tstate
);
4634 if (PyErr_Occurred()) SWIG_fail
;
4636 resultobj
= SWIG_From_long(static_cast< long >(result
));
4643 SWIGINTERN PyObject
*_wrap_RegisterId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4644 PyObject
*resultobj
= 0;
4648 PyObject
* obj0
= 0 ;
4649 char * kwnames
[] = {
4653 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RegisterId",kwnames
,&obj0
)) SWIG_fail
;
4654 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
4655 if (!SWIG_IsOK(ecode1
)) {
4656 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "RegisterId" "', expected argument " "1"" of type '" "long""'");
4658 arg1
= static_cast< long >(val1
);
4660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4662 wxPyEndAllowThreads(__tstate
);
4663 if (PyErr_Occurred()) SWIG_fail
;
4665 resultobj
= SWIG_Py_Void();
4672 SWIGINTERN PyObject
*_wrap_GetCurrentId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4673 PyObject
*resultobj
= 0;
4676 if (!SWIG_Python_UnpackTuple(args
,"GetCurrentId",0,0,0)) SWIG_fail
;
4678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4679 result
= (long)wxGetCurrentId();
4680 wxPyEndAllowThreads(__tstate
);
4681 if (PyErr_Occurred()) SWIG_fail
;
4683 resultobj
= SWIG_From_long(static_cast< long >(result
));
4690 SWIGINTERN PyObject
*_wrap_IsStockID(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4691 PyObject
*resultobj
= 0;
4696 PyObject
* obj0
= 0 ;
4697 char * kwnames
[] = {
4701 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:IsStockID",kwnames
,&obj0
)) SWIG_fail
;
4702 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4703 if (!SWIG_IsOK(ecode1
)) {
4704 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "IsStockID" "', expected argument " "1"" of type '" "int""'");
4706 arg1
= static_cast< int >(val1
);
4708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4709 result
= (bool)wxIsStockID(arg1
);
4710 wxPyEndAllowThreads(__tstate
);
4711 if (PyErr_Occurred()) SWIG_fail
;
4714 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4722 SWIGINTERN PyObject
*_wrap_IsStockLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4723 PyObject
*resultobj
= 0;
4725 wxString
*arg2
= 0 ;
4729 bool temp2
= false ;
4730 PyObject
* obj0
= 0 ;
4731 PyObject
* obj1
= 0 ;
4732 char * kwnames
[] = {
4733 (char *) "id",(char *) "label", NULL
4736 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IsStockLabel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4737 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4738 if (!SWIG_IsOK(ecode1
)) {
4739 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "IsStockLabel" "', expected argument " "1"" of type '" "int""'");
4741 arg1
= static_cast< int >(val1
);
4743 arg2
= wxString_in_helper(obj1
);
4744 if (arg2
== NULL
) SWIG_fail
;
4748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4749 result
= (bool)wxIsStockLabel(arg1
,(wxString
const &)*arg2
);
4750 wxPyEndAllowThreads(__tstate
);
4751 if (PyErr_Occurred()) SWIG_fail
;
4754 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4770 SWIGINTERN PyObject
*_wrap_GetStockLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4771 PyObject
*resultobj
= 0;
4773 bool arg2
= (bool) true ;
4774 wxString arg3
= (wxString
) wxPyEmptyString
;
4780 PyObject
* obj0
= 0 ;
4781 PyObject
* obj1
= 0 ;
4782 PyObject
* obj2
= 0 ;
4783 char * kwnames
[] = {
4784 (char *) "id",(char *) "withCodes",(char *) "accelerator", NULL
4787 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:GetStockLabel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4788 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4789 if (!SWIG_IsOK(ecode1
)) {
4790 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "GetStockLabel" "', expected argument " "1"" of type '" "int""'");
4792 arg1
= static_cast< int >(val1
);
4794 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4795 if (!SWIG_IsOK(ecode2
)) {
4796 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GetStockLabel" "', expected argument " "2"" of type '" "bool""'");
4798 arg2
= static_cast< bool >(val2
);
4802 wxString
* sptr
= wxString_in_helper(obj2
);
4803 if (sptr
== NULL
) SWIG_fail
;
4809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4810 result
= wxGetStockLabel(arg1
,arg2
,arg3
);
4811 wxPyEndAllowThreads(__tstate
);
4812 if (PyErr_Occurred()) SWIG_fail
;
4816 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4818 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4827 SWIGINTERN PyObject
*_wrap_Bell(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4828 PyObject
*resultobj
= 0;
4830 if (!SWIG_Python_UnpackTuple(args
,"Bell",0,0,0)) SWIG_fail
;
4832 if (!wxPyCheckForApp()) SWIG_fail
;
4833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4835 wxPyEndAllowThreads(__tstate
);
4836 if (PyErr_Occurred()) SWIG_fail
;
4838 resultobj
= SWIG_Py_Void();
4845 SWIGINTERN PyObject
*_wrap_EndBusyCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4846 PyObject
*resultobj
= 0;
4848 if (!SWIG_Python_UnpackTuple(args
,"EndBusyCursor",0,0,0)) SWIG_fail
;
4850 if (!wxPyCheckForApp()) SWIG_fail
;
4851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4853 wxPyEndAllowThreads(__tstate
);
4854 if (PyErr_Occurred()) SWIG_fail
;
4856 resultobj
= SWIG_Py_Void();
4863 SWIGINTERN PyObject
*_wrap_GetElapsedTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4864 PyObject
*resultobj
= 0;
4865 bool arg1
= (bool) true ;
4869 PyObject
* obj0
= 0 ;
4870 char * kwnames
[] = {
4871 (char *) "resetTimer", NULL
4874 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:GetElapsedTime",kwnames
,&obj0
)) SWIG_fail
;
4876 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
4877 if (!SWIG_IsOK(ecode1
)) {
4878 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "GetElapsedTime" "', expected argument " "1"" of type '" "bool""'");
4880 arg1
= static_cast< bool >(val1
);
4883 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4884 result
= (long)wxGetElapsedTime(arg1
);
4885 wxPyEndAllowThreads(__tstate
);
4886 if (PyErr_Occurred()) SWIG_fail
;
4888 resultobj
= SWIG_From_long(static_cast< long >(result
));
4895 SWIGINTERN PyObject
*_wrap_IsBusy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4896 PyObject
*resultobj
= 0;
4899 if (!SWIG_Python_UnpackTuple(args
,"IsBusy",0,0,0)) SWIG_fail
;
4901 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4902 result
= (bool)wxIsBusy();
4903 wxPyEndAllowThreads(__tstate
);
4904 if (PyErr_Occurred()) SWIG_fail
;
4907 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4915 SWIGINTERN PyObject
*_wrap_Now(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4916 PyObject
*resultobj
= 0;
4919 if (!SWIG_Python_UnpackTuple(args
,"Now",0,0,0)) SWIG_fail
;
4921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4923 wxPyEndAllowThreads(__tstate
);
4924 if (PyErr_Occurred()) SWIG_fail
;
4928 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4930 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4939 SWIGINTERN PyObject
*_wrap_Shell(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4940 PyObject
*resultobj
= 0;
4941 wxString
const &arg1_defvalue
= wxPyEmptyString
;
4942 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
4944 bool temp1
= false ;
4945 PyObject
* obj0
= 0 ;
4946 char * kwnames
[] = {
4947 (char *) "command", NULL
4950 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Shell",kwnames
,&obj0
)) SWIG_fail
;
4953 arg1
= wxString_in_helper(obj0
);
4954 if (arg1
== NULL
) SWIG_fail
;
4959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4960 result
= (bool)wxShell((wxString
const &)*arg1
);
4961 wxPyEndAllowThreads(__tstate
);
4962 if (PyErr_Occurred()) SWIG_fail
;
4965 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4981 SWIGINTERN PyObject
*_wrap_StartTimer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4982 PyObject
*resultobj
= 0;
4984 if (!SWIG_Python_UnpackTuple(args
,"StartTimer",0,0,0)) SWIG_fail
;
4986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4988 wxPyEndAllowThreads(__tstate
);
4989 if (PyErr_Occurred()) SWIG_fail
;
4991 resultobj
= SWIG_Py_Void();
4998 SWIGINTERN PyObject
*_wrap_GetOsVersion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4999 PyObject
*resultobj
= 0;
5000 int *arg1
= (int *) 0 ;
5001 int *arg2
= (int *) 0 ;
5004 int res1
= SWIG_TMPOBJ
;
5006 int res2
= SWIG_TMPOBJ
;
5010 if (!SWIG_Python_UnpackTuple(args
,"GetOsVersion",0,0,0)) SWIG_fail
;
5012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5013 result
= (int)wxGetOsVersion(arg1
,arg2
);
5014 wxPyEndAllowThreads(__tstate
);
5015 if (PyErr_Occurred()) SWIG_fail
;
5017 resultobj
= SWIG_From_int(static_cast< int >(result
));
5018 if (SWIG_IsTmpObj(res1
)) {
5019 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg1
)));
5021 int new_flags
= SWIG_IsNewObj(res1
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
5022 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg1
), SWIGTYPE_p_int
, new_flags
));
5024 if (SWIG_IsTmpObj(res2
)) {
5025 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
5027 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
5028 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
5036 SWIGINTERN PyObject
*_wrap_GetOsDescription(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5037 PyObject
*resultobj
= 0;
5040 if (!SWIG_Python_UnpackTuple(args
,"GetOsDescription",0,0,0)) SWIG_fail
;
5042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5043 result
= wxGetOsDescription();
5044 wxPyEndAllowThreads(__tstate
);
5045 if (PyErr_Occurred()) SWIG_fail
;
5049 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5051 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5060 SWIGINTERN PyObject
*_wrap_GetFreeMemory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5061 PyObject
*resultobj
= 0;
5062 wxMemorySize result
;
5064 if (!SWIG_Python_UnpackTuple(args
,"GetFreeMemory",0,0,0)) SWIG_fail
;
5066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5067 result
= wxGetFreeMemory();
5068 wxPyEndAllowThreads(__tstate
);
5069 if (PyErr_Occurred()) SWIG_fail
;
5071 resultobj
= SWIG_NewPointerObj((new wxMemorySize(static_cast< const wxMemorySize
& >(result
))), SWIGTYPE_p_wxMemorySize
, SWIG_POINTER_OWN
| 0 );
5078 SWIGINTERN PyObject
*_wrap_Shutdown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5079 PyObject
*resultobj
= 0;
5080 wxShutdownFlags arg1
;
5084 PyObject
* obj0
= 0 ;
5085 char * kwnames
[] = {
5086 (char *) "wFlags", NULL
5089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Shutdown",kwnames
,&obj0
)) SWIG_fail
;
5090 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
5091 if (!SWIG_IsOK(ecode1
)) {
5092 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Shutdown" "', expected argument " "1"" of type '" "wxShutdownFlags""'");
5094 arg1
= static_cast< wxShutdownFlags
>(val1
);
5096 if (!wxPyCheckForApp()) SWIG_fail
;
5097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5098 result
= (bool)wxShutdown(arg1
);
5099 wxPyEndAllowThreads(__tstate
);
5100 if (PyErr_Occurred()) SWIG_fail
;
5103 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5111 SWIGINTERN PyObject
*_wrap_Sleep(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5112 PyObject
*resultobj
= 0;
5116 PyObject
* obj0
= 0 ;
5117 char * kwnames
[] = {
5118 (char *) "secs", NULL
5121 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Sleep",kwnames
,&obj0
)) SWIG_fail
;
5122 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
5123 if (!SWIG_IsOK(ecode1
)) {
5124 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Sleep" "', expected argument " "1"" of type '" "int""'");
5126 arg1
= static_cast< int >(val1
);
5128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5130 wxPyEndAllowThreads(__tstate
);
5131 if (PyErr_Occurred()) SWIG_fail
;
5133 resultobj
= SWIG_Py_Void();
5140 SWIGINTERN PyObject
*_wrap_MilliSleep(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5141 PyObject
*resultobj
= 0;
5142 unsigned long arg1
;
5143 unsigned long val1
;
5145 PyObject
* obj0
= 0 ;
5146 char * kwnames
[] = {
5147 (char *) "milliseconds", NULL
5150 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MilliSleep",kwnames
,&obj0
)) SWIG_fail
;
5151 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
5152 if (!SWIG_IsOK(ecode1
)) {
5153 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "MilliSleep" "', expected argument " "1"" of type '" "unsigned long""'");
5155 arg1
= static_cast< unsigned long >(val1
);
5157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5159 wxPyEndAllowThreads(__tstate
);
5160 if (PyErr_Occurred()) SWIG_fail
;
5162 resultobj
= SWIG_Py_Void();
5169 SWIGINTERN PyObject
*_wrap_MicroSleep(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5170 PyObject
*resultobj
= 0;
5171 unsigned long arg1
;
5172 unsigned long val1
;
5174 PyObject
* obj0
= 0 ;
5175 char * kwnames
[] = {
5176 (char *) "microseconds", NULL
5179 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MicroSleep",kwnames
,&obj0
)) SWIG_fail
;
5180 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
5181 if (!SWIG_IsOK(ecode1
)) {
5182 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "MicroSleep" "', expected argument " "1"" of type '" "unsigned long""'");
5184 arg1
= static_cast< unsigned long >(val1
);
5186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5188 wxPyEndAllowThreads(__tstate
);
5189 if (PyErr_Occurred()) SWIG_fail
;
5191 resultobj
= SWIG_Py_Void();
5198 SWIGINTERN PyObject
*_wrap_EnableTopLevelWindows(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5199 PyObject
*resultobj
= 0;
5203 PyObject
* obj0
= 0 ;
5204 char * kwnames
[] = {
5205 (char *) "enable", NULL
5208 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:EnableTopLevelWindows",kwnames
,&obj0
)) SWIG_fail
;
5209 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
5210 if (!SWIG_IsOK(ecode1
)) {
5211 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "EnableTopLevelWindows" "', expected argument " "1"" of type '" "bool""'");
5213 arg1
= static_cast< bool >(val1
);
5215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5216 wxEnableTopLevelWindows(arg1
);
5217 wxPyEndAllowThreads(__tstate
);
5218 if (PyErr_Occurred()) SWIG_fail
;
5220 resultobj
= SWIG_Py_Void();
5227 SWIGINTERN PyObject
*_wrap_StripMenuCodes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5228 PyObject
*resultobj
= 0;
5229 wxString
*arg1
= 0 ;
5231 bool temp1
= false ;
5232 PyObject
* obj0
= 0 ;
5233 char * kwnames
[] = {
5234 (char *) "_in", NULL
5237 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StripMenuCodes",kwnames
,&obj0
)) SWIG_fail
;
5239 arg1
= wxString_in_helper(obj0
);
5240 if (arg1
== NULL
) SWIG_fail
;
5244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5245 result
= wxStripMenuCodes((wxString
const &)*arg1
);
5246 wxPyEndAllowThreads(__tstate
);
5247 if (PyErr_Occurred()) SWIG_fail
;
5251 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5253 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5270 SWIGINTERN PyObject
*_wrap_GetEmailAddress(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5271 PyObject
*resultobj
= 0;
5274 if (!SWIG_Python_UnpackTuple(args
,"GetEmailAddress",0,0,0)) SWIG_fail
;
5276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5277 result
= wxGetEmailAddress();
5278 wxPyEndAllowThreads(__tstate
);
5279 if (PyErr_Occurred()) SWIG_fail
;
5283 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5285 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5294 SWIGINTERN PyObject
*_wrap_GetHostName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5295 PyObject
*resultobj
= 0;
5298 if (!SWIG_Python_UnpackTuple(args
,"GetHostName",0,0,0)) SWIG_fail
;
5300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5301 result
= wxGetHostName();
5302 wxPyEndAllowThreads(__tstate
);
5303 if (PyErr_Occurred()) SWIG_fail
;
5307 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5309 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5318 SWIGINTERN PyObject
*_wrap_GetFullHostName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5319 PyObject
*resultobj
= 0;
5322 if (!SWIG_Python_UnpackTuple(args
,"GetFullHostName",0,0,0)) SWIG_fail
;
5324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5325 result
= wxGetFullHostName();
5326 wxPyEndAllowThreads(__tstate
);
5327 if (PyErr_Occurred()) SWIG_fail
;
5331 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5333 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5342 SWIGINTERN PyObject
*_wrap_GetUserId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5343 PyObject
*resultobj
= 0;
5346 if (!SWIG_Python_UnpackTuple(args
,"GetUserId",0,0,0)) SWIG_fail
;
5348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5349 result
= wxGetUserId();
5350 wxPyEndAllowThreads(__tstate
);
5351 if (PyErr_Occurred()) SWIG_fail
;
5355 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5357 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5366 SWIGINTERN PyObject
*_wrap_GetUserName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5367 PyObject
*resultobj
= 0;
5370 if (!SWIG_Python_UnpackTuple(args
,"GetUserName",0,0,0)) SWIG_fail
;
5372 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5373 result
= wxGetUserName();
5374 wxPyEndAllowThreads(__tstate
);
5375 if (PyErr_Occurred()) SWIG_fail
;
5379 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5381 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5390 SWIGINTERN PyObject
*_wrap_GetHomeDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5391 PyObject
*resultobj
= 0;
5394 if (!SWIG_Python_UnpackTuple(args
,"GetHomeDir",0,0,0)) SWIG_fail
;
5396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5397 result
= wxGetHomeDir();
5398 wxPyEndAllowThreads(__tstate
);
5399 if (PyErr_Occurred()) SWIG_fail
;
5403 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5405 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5414 SWIGINTERN PyObject
*_wrap_GetUserHome(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5415 PyObject
*resultobj
= 0;
5416 wxString
const &arg1_defvalue
= wxPyEmptyString
;
5417 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
5419 bool temp1
= false ;
5420 PyObject
* obj0
= 0 ;
5421 char * kwnames
[] = {
5422 (char *) "user", NULL
5425 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:GetUserHome",kwnames
,&obj0
)) SWIG_fail
;
5428 arg1
= wxString_in_helper(obj0
);
5429 if (arg1
== NULL
) SWIG_fail
;
5434 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5435 result
= wxGetUserHome((wxString
const &)*arg1
);
5436 wxPyEndAllowThreads(__tstate
);
5437 if (PyErr_Occurred()) SWIG_fail
;
5441 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5443 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5460 SWIGINTERN PyObject
*_wrap_GetProcessId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5461 PyObject
*resultobj
= 0;
5462 unsigned long result
;
5464 if (!SWIG_Python_UnpackTuple(args
,"GetProcessId",0,0,0)) SWIG_fail
;
5466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5467 result
= (unsigned long)wxGetProcessId();
5468 wxPyEndAllowThreads(__tstate
);
5469 if (PyErr_Occurred()) SWIG_fail
;
5471 resultobj
= SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result
));
5478 SWIGINTERN PyObject
*_wrap_Trap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5479 PyObject
*resultobj
= 0;
5481 if (!SWIG_Python_UnpackTuple(args
,"Trap",0,0,0)) SWIG_fail
;
5483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5485 wxPyEndAllowThreads(__tstate
);
5486 if (PyErr_Occurred()) SWIG_fail
;
5488 resultobj
= SWIG_Py_Void();
5495 SWIGINTERN PyObject
*_wrap_FileSelector(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5496 PyObject
*resultobj
= 0;
5497 wxString
const &arg1_defvalue
= wxPyFileSelectorPromptStr
;
5498 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
5499 wxString
const &arg2_defvalue
= wxPyEmptyString
;
5500 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
5501 wxString
const &arg3_defvalue
= wxPyEmptyString
;
5502 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
5503 wxString
const &arg4_defvalue
= wxPyEmptyString
;
5504 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
5505 wxString
const &arg5_defvalue
= wxPyFileSelectorDefaultWildcardStr
;
5506 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
5507 int arg6
= (int) 0 ;
5508 wxWindow
*arg7
= (wxWindow
*) NULL
;
5509 int arg8
= (int) -1 ;
5510 int arg9
= (int) -1 ;
5512 bool temp1
= false ;
5513 bool temp2
= false ;
5514 bool temp3
= false ;
5515 bool temp4
= false ;
5516 bool temp5
= false ;
5525 PyObject
* obj0
= 0 ;
5526 PyObject
* obj1
= 0 ;
5527 PyObject
* obj2
= 0 ;
5528 PyObject
* obj3
= 0 ;
5529 PyObject
* obj4
= 0 ;
5530 PyObject
* obj5
= 0 ;
5531 PyObject
* obj6
= 0 ;
5532 PyObject
* obj7
= 0 ;
5533 PyObject
* obj8
= 0 ;
5534 char * kwnames
[] = {
5535 (char *) "message",(char *) "default_path",(char *) "default_filename",(char *) "default_extension",(char *) "wildcard",(char *) "flags",(char *) "parent",(char *) "x",(char *) "y", NULL
5538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOOOOOOO:FileSelector",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
5541 arg1
= wxString_in_helper(obj0
);
5542 if (arg1
== NULL
) SWIG_fail
;
5548 arg2
= wxString_in_helper(obj1
);
5549 if (arg2
== NULL
) SWIG_fail
;
5555 arg3
= wxString_in_helper(obj2
);
5556 if (arg3
== NULL
) SWIG_fail
;
5562 arg4
= wxString_in_helper(obj3
);
5563 if (arg4
== NULL
) SWIG_fail
;
5569 arg5
= wxString_in_helper(obj4
);
5570 if (arg5
== NULL
) SWIG_fail
;
5575 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
5576 if (!SWIG_IsOK(ecode6
)) {
5577 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "FileSelector" "', expected argument " "6"" of type '" "int""'");
5579 arg6
= static_cast< int >(val6
);
5582 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5583 if (!SWIG_IsOK(res7
)) {
5584 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "FileSelector" "', expected argument " "7"" of type '" "wxWindow *""'");
5586 arg7
= reinterpret_cast< wxWindow
* >(argp7
);
5589 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
5590 if (!SWIG_IsOK(ecode8
)) {
5591 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "FileSelector" "', expected argument " "8"" of type '" "int""'");
5593 arg8
= static_cast< int >(val8
);
5596 ecode9
= SWIG_AsVal_int(obj8
, &val9
);
5597 if (!SWIG_IsOK(ecode9
)) {
5598 SWIG_exception_fail(SWIG_ArgError(ecode9
), "in method '" "FileSelector" "', expected argument " "9"" of type '" "int""'");
5600 arg9
= static_cast< int >(val9
);
5603 if (!wxPyCheckForApp()) SWIG_fail
;
5604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5605 result
= wxFileSelector((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,(wxString
const &)*arg5
,arg6
,arg7
,arg8
,arg9
);
5606 wxPyEndAllowThreads(__tstate
);
5607 if (PyErr_Occurred()) SWIG_fail
;
5611 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5613 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5662 SWIGINTERN PyObject
*_wrap_LoadFileSelector(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5663 PyObject
*resultobj
= 0;
5664 wxString
*arg1
= 0 ;
5665 wxString
*arg2
= 0 ;
5666 wxString
const &arg3_defvalue
= wxPyEmptyString
;
5667 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
5668 wxWindow
*arg4
= (wxWindow
*) NULL
;
5670 bool temp1
= false ;
5671 bool temp2
= false ;
5672 bool temp3
= false ;
5675 PyObject
* obj0
= 0 ;
5676 PyObject
* obj1
= 0 ;
5677 PyObject
* obj2
= 0 ;
5678 PyObject
* obj3
= 0 ;
5679 char * kwnames
[] = {
5680 (char *) "what",(char *) "extension",(char *) "default_name",(char *) "parent", NULL
5683 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:LoadFileSelector",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
5685 arg1
= wxString_in_helper(obj0
);
5686 if (arg1
== NULL
) SWIG_fail
;
5690 arg2
= wxString_in_helper(obj1
);
5691 if (arg2
== NULL
) SWIG_fail
;
5696 arg3
= wxString_in_helper(obj2
);
5697 if (arg3
== NULL
) SWIG_fail
;
5702 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5703 if (!SWIG_IsOK(res4
)) {
5704 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "LoadFileSelector" "', expected argument " "4"" of type '" "wxWindow *""'");
5706 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
5709 if (!wxPyCheckForApp()) SWIG_fail
;
5710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5711 result
= wxLoadFileSelector((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
);
5712 wxPyEndAllowThreads(__tstate
);
5713 if (PyErr_Occurred()) SWIG_fail
;
5717 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5719 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5752 SWIGINTERN PyObject
*_wrap_SaveFileSelector(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5753 PyObject
*resultobj
= 0;
5754 wxString
*arg1
= 0 ;
5755 wxString
*arg2
= 0 ;
5756 wxString
const &arg3_defvalue
= wxPyEmptyString
;
5757 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
5758 wxWindow
*arg4
= (wxWindow
*) NULL
;
5760 bool temp1
= false ;
5761 bool temp2
= false ;
5762 bool temp3
= false ;
5765 PyObject
* obj0
= 0 ;
5766 PyObject
* obj1
= 0 ;
5767 PyObject
* obj2
= 0 ;
5768 PyObject
* obj3
= 0 ;
5769 char * kwnames
[] = {
5770 (char *) "what",(char *) "extension",(char *) "default_name",(char *) "parent", NULL
5773 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:SaveFileSelector",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
5775 arg1
= wxString_in_helper(obj0
);
5776 if (arg1
== NULL
) SWIG_fail
;
5780 arg2
= wxString_in_helper(obj1
);
5781 if (arg2
== NULL
) SWIG_fail
;
5786 arg3
= wxString_in_helper(obj2
);
5787 if (arg3
== NULL
) SWIG_fail
;
5792 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5793 if (!SWIG_IsOK(res4
)) {
5794 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "SaveFileSelector" "', expected argument " "4"" of type '" "wxWindow *""'");
5796 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
5799 if (!wxPyCheckForApp()) SWIG_fail
;
5800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5801 result
= wxSaveFileSelector((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
);
5802 wxPyEndAllowThreads(__tstate
);
5803 if (PyErr_Occurred()) SWIG_fail
;
5807 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5809 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5842 SWIGINTERN PyObject
*_wrap_DirSelector(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5843 PyObject
*resultobj
= 0;
5844 wxString
const &arg1_defvalue
= wxPyDirSelectorPromptStr
;
5845 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
5846 wxString
const &arg2_defvalue
= wxPyEmptyString
;
5847 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
5848 long arg3
= (long) wxDD_DEFAULT_STYLE
;
5849 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
5850 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
5851 wxWindow
*arg5
= (wxWindow
*) NULL
;
5853 bool temp1
= false ;
5854 bool temp2
= false ;
5860 PyObject
* obj0
= 0 ;
5861 PyObject
* obj1
= 0 ;
5862 PyObject
* obj2
= 0 ;
5863 PyObject
* obj3
= 0 ;
5864 PyObject
* obj4
= 0 ;
5865 char * kwnames
[] = {
5866 (char *) "message",(char *) "defaultPath",(char *) "style",(char *) "pos",(char *) "parent", NULL
5869 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOOO:DirSelector",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
5872 arg1
= wxString_in_helper(obj0
);
5873 if (arg1
== NULL
) SWIG_fail
;
5879 arg2
= wxString_in_helper(obj1
);
5880 if (arg2
== NULL
) SWIG_fail
;
5885 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
5886 if (!SWIG_IsOK(ecode3
)) {
5887 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DirSelector" "', expected argument " "3"" of type '" "long""'");
5889 arg3
= static_cast< long >(val3
);
5894 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
5898 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5899 if (!SWIG_IsOK(res5
)) {
5900 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DirSelector" "', expected argument " "5"" of type '" "wxWindow *""'");
5902 arg5
= reinterpret_cast< wxWindow
* >(argp5
);
5905 if (!wxPyCheckForApp()) SWIG_fail
;
5906 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5907 result
= wxDirSelector((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,(wxPoint
const &)*arg4
,arg5
);
5908 wxPyEndAllowThreads(__tstate
);
5909 if (PyErr_Occurred()) SWIG_fail
;
5913 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5915 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5940 SWIGINTERN PyObject
*_wrap_GetTextFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5941 PyObject
*resultobj
= 0;
5942 wxString
*arg1
= 0 ;
5943 wxString
const &arg2_defvalue
= wxPyEmptyString
;
5944 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
5945 wxString
const &arg3_defvalue
= wxPyEmptyString
;
5946 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
5947 wxWindow
*arg4
= (wxWindow
*) NULL
;
5948 int arg5
= (int) -1 ;
5949 int arg6
= (int) -1 ;
5950 bool arg7
= (bool) true ;
5952 bool temp1
= false ;
5953 bool temp2
= false ;
5954 bool temp3
= false ;
5963 PyObject
* obj0
= 0 ;
5964 PyObject
* obj1
= 0 ;
5965 PyObject
* obj2
= 0 ;
5966 PyObject
* obj3
= 0 ;
5967 PyObject
* obj4
= 0 ;
5968 PyObject
* obj5
= 0 ;
5969 PyObject
* obj6
= 0 ;
5970 char * kwnames
[] = {
5971 (char *) "message",(char *) "caption",(char *) "default_value",(char *) "parent",(char *) "x",(char *) "y",(char *) "centre", NULL
5974 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:GetTextFromUser",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
5976 arg1
= wxString_in_helper(obj0
);
5977 if (arg1
== NULL
) SWIG_fail
;
5982 arg2
= wxString_in_helper(obj1
);
5983 if (arg2
== NULL
) SWIG_fail
;
5989 arg3
= wxString_in_helper(obj2
);
5990 if (arg3
== NULL
) SWIG_fail
;
5995 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5996 if (!SWIG_IsOK(res4
)) {
5997 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "GetTextFromUser" "', expected argument " "4"" of type '" "wxWindow *""'");
5999 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
6002 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
6003 if (!SWIG_IsOK(ecode5
)) {
6004 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GetTextFromUser" "', expected argument " "5"" of type '" "int""'");
6006 arg5
= static_cast< int >(val5
);
6009 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
6010 if (!SWIG_IsOK(ecode6
)) {
6011 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GetTextFromUser" "', expected argument " "6"" of type '" "int""'");
6013 arg6
= static_cast< int >(val6
);
6016 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
6017 if (!SWIG_IsOK(ecode7
)) {
6018 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "GetTextFromUser" "', expected argument " "7"" of type '" "bool""'");
6020 arg7
= static_cast< bool >(val7
);
6023 if (!wxPyCheckForApp()) SWIG_fail
;
6024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6025 result
= wxGetTextFromUser((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
,arg7
);
6026 wxPyEndAllowThreads(__tstate
);
6027 if (PyErr_Occurred()) SWIG_fail
;
6031 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
6033 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
6066 SWIGINTERN PyObject
*_wrap_GetPasswordFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6067 PyObject
*resultobj
= 0;
6068 wxString
*arg1
= 0 ;
6069 wxString
const &arg2_defvalue
= wxPyEmptyString
;
6070 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
6071 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6072 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6073 wxWindow
*arg4
= (wxWindow
*) NULL
;
6075 bool temp1
= false ;
6076 bool temp2
= false ;
6077 bool temp3
= false ;
6080 PyObject
* obj0
= 0 ;
6081 PyObject
* obj1
= 0 ;
6082 PyObject
* obj2
= 0 ;
6083 PyObject
* obj3
= 0 ;
6084 char * kwnames
[] = {
6085 (char *) "message",(char *) "caption",(char *) "default_value",(char *) "parent", NULL
6088 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:GetPasswordFromUser",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6090 arg1
= wxString_in_helper(obj0
);
6091 if (arg1
== NULL
) SWIG_fail
;
6096 arg2
= wxString_in_helper(obj1
);
6097 if (arg2
== NULL
) SWIG_fail
;
6103 arg3
= wxString_in_helper(obj2
);
6104 if (arg3
== NULL
) SWIG_fail
;
6109 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6110 if (!SWIG_IsOK(res4
)) {
6111 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "GetPasswordFromUser" "', expected argument " "4"" of type '" "wxWindow *""'");
6113 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
6116 if (!wxPyCheckForApp()) SWIG_fail
;
6117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6118 result
= wxGetPasswordFromUser((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
);
6119 wxPyEndAllowThreads(__tstate
);
6120 if (PyErr_Occurred()) SWIG_fail
;
6124 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
6126 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
6159 SWIGINTERN PyObject
*_wrap_GetSingleChoice(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6160 PyObject
*resultobj
= 0;
6161 wxString
*arg1
= 0 ;
6162 wxString
*arg2
= 0 ;
6164 wxString
*arg4
= (wxString
*) 0 ;
6165 wxWindow
*arg5
= (wxWindow
*) NULL
;
6166 int arg6
= (int) -1 ;
6167 int arg7
= (int) -1 ;
6168 bool arg8
= (bool) true ;
6169 int arg9
= (int) 150 ;
6170 int arg10
= (int) 200 ;
6172 bool temp1
= false ;
6173 bool temp2
= false ;
6186 PyObject
* obj0
= 0 ;
6187 PyObject
* obj1
= 0 ;
6188 PyObject
* obj2
= 0 ;
6189 PyObject
* obj3
= 0 ;
6190 PyObject
* obj4
= 0 ;
6191 PyObject
* obj5
= 0 ;
6192 PyObject
* obj6
= 0 ;
6193 PyObject
* obj7
= 0 ;
6194 PyObject
* obj8
= 0 ;
6195 char * kwnames
[] = {
6196 (char *) "message",(char *) "caption",(char *) "choices",(char *) "parent",(char *) "x",(char *) "y",(char *) "centre",(char *) "width",(char *) "height", NULL
6199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOOOO:GetSingleChoice",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
6201 arg1
= wxString_in_helper(obj0
);
6202 if (arg1
== NULL
) SWIG_fail
;
6206 arg2
= wxString_in_helper(obj1
);
6207 if (arg2
== NULL
) SWIG_fail
;
6211 arg3
= PyList_Size(obj2
);
6212 arg4
= wxString_LIST_helper(obj2
);
6213 if (arg4
== NULL
) SWIG_fail
;
6216 res5
= SWIG_ConvertPtr(obj3
, &argp5
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6217 if (!SWIG_IsOK(res5
)) {
6218 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "GetSingleChoice" "', expected argument " "5"" of type '" "wxWindow *""'");
6220 arg5
= reinterpret_cast< wxWindow
* >(argp5
);
6223 ecode6
= SWIG_AsVal_int(obj4
, &val6
);
6224 if (!SWIG_IsOK(ecode6
)) {
6225 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GetSingleChoice" "', expected argument " "6"" of type '" "int""'");
6227 arg6
= static_cast< int >(val6
);
6230 ecode7
= SWIG_AsVal_int(obj5
, &val7
);
6231 if (!SWIG_IsOK(ecode7
)) {
6232 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "GetSingleChoice" "', expected argument " "7"" of type '" "int""'");
6234 arg7
= static_cast< int >(val7
);
6237 ecode8
= SWIG_AsVal_bool(obj6
, &val8
);
6238 if (!SWIG_IsOK(ecode8
)) {
6239 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "GetSingleChoice" "', expected argument " "8"" of type '" "bool""'");
6241 arg8
= static_cast< bool >(val8
);
6244 ecode9
= SWIG_AsVal_int(obj7
, &val9
);
6245 if (!SWIG_IsOK(ecode9
)) {
6246 SWIG_exception_fail(SWIG_ArgError(ecode9
), "in method '" "GetSingleChoice" "', expected argument " "9"" of type '" "int""'");
6248 arg9
= static_cast< int >(val9
);
6251 ecode10
= SWIG_AsVal_int(obj8
, &val10
);
6252 if (!SWIG_IsOK(ecode10
)) {
6253 SWIG_exception_fail(SWIG_ArgError(ecode10
), "in method '" "GetSingleChoice" "', expected argument " "10"" of type '" "int""'");
6255 arg10
= static_cast< int >(val10
);
6258 if (!wxPyCheckForApp()) SWIG_fail
;
6259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6260 result
= wxGetSingleChoice((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
6261 wxPyEndAllowThreads(__tstate
);
6262 if (PyErr_Occurred()) SWIG_fail
;
6266 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
6268 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
6280 if (arg4
) delete [] arg4
;
6293 if (arg4
) delete [] arg4
;
6299 SWIGINTERN PyObject
*_wrap_GetSingleChoiceIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6300 PyObject
*resultobj
= 0;
6301 wxString
*arg1
= 0 ;
6302 wxString
*arg2
= 0 ;
6304 wxString
*arg4
= (wxString
*) 0 ;
6305 wxWindow
*arg5
= (wxWindow
*) NULL
;
6306 int arg6
= (int) -1 ;
6307 int arg7
= (int) -1 ;
6308 bool arg8
= (bool) true ;
6309 int arg9
= (int) 150 ;
6310 int arg10
= (int) 200 ;
6312 bool temp1
= false ;
6313 bool temp2
= false ;
6326 PyObject
* obj0
= 0 ;
6327 PyObject
* obj1
= 0 ;
6328 PyObject
* obj2
= 0 ;
6329 PyObject
* obj3
= 0 ;
6330 PyObject
* obj4
= 0 ;
6331 PyObject
* obj5
= 0 ;
6332 PyObject
* obj6
= 0 ;
6333 PyObject
* obj7
= 0 ;
6334 PyObject
* obj8
= 0 ;
6335 char * kwnames
[] = {
6336 (char *) "message",(char *) "caption",(char *) "choices",(char *) "parent",(char *) "x",(char *) "y",(char *) "centre",(char *) "width",(char *) "height", NULL
6339 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOOOO:GetSingleChoiceIndex",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
6341 arg1
= wxString_in_helper(obj0
);
6342 if (arg1
== NULL
) SWIG_fail
;
6346 arg2
= wxString_in_helper(obj1
);
6347 if (arg2
== NULL
) SWIG_fail
;
6351 arg3
= PyList_Size(obj2
);
6352 arg4
= wxString_LIST_helper(obj2
);
6353 if (arg4
== NULL
) SWIG_fail
;
6356 res5
= SWIG_ConvertPtr(obj3
, &argp5
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6357 if (!SWIG_IsOK(res5
)) {
6358 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "GetSingleChoiceIndex" "', expected argument " "5"" of type '" "wxWindow *""'");
6360 arg5
= reinterpret_cast< wxWindow
* >(argp5
);
6363 ecode6
= SWIG_AsVal_int(obj4
, &val6
);
6364 if (!SWIG_IsOK(ecode6
)) {
6365 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GetSingleChoiceIndex" "', expected argument " "6"" of type '" "int""'");
6367 arg6
= static_cast< int >(val6
);
6370 ecode7
= SWIG_AsVal_int(obj5
, &val7
);
6371 if (!SWIG_IsOK(ecode7
)) {
6372 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "GetSingleChoiceIndex" "', expected argument " "7"" of type '" "int""'");
6374 arg7
= static_cast< int >(val7
);
6377 ecode8
= SWIG_AsVal_bool(obj6
, &val8
);
6378 if (!SWIG_IsOK(ecode8
)) {
6379 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "GetSingleChoiceIndex" "', expected argument " "8"" of type '" "bool""'");
6381 arg8
= static_cast< bool >(val8
);
6384 ecode9
= SWIG_AsVal_int(obj7
, &val9
);
6385 if (!SWIG_IsOK(ecode9
)) {
6386 SWIG_exception_fail(SWIG_ArgError(ecode9
), "in method '" "GetSingleChoiceIndex" "', expected argument " "9"" of type '" "int""'");
6388 arg9
= static_cast< int >(val9
);
6391 ecode10
= SWIG_AsVal_int(obj8
, &val10
);
6392 if (!SWIG_IsOK(ecode10
)) {
6393 SWIG_exception_fail(SWIG_ArgError(ecode10
), "in method '" "GetSingleChoiceIndex" "', expected argument " "10"" of type '" "int""'");
6395 arg10
= static_cast< int >(val10
);
6398 if (!wxPyCheckForApp()) SWIG_fail
;
6399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6400 result
= (int)wxGetSingleChoiceIndex((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
6401 wxPyEndAllowThreads(__tstate
);
6402 if (PyErr_Occurred()) SWIG_fail
;
6404 resultobj
= SWIG_From_int(static_cast< int >(result
));
6414 if (arg4
) delete [] arg4
;
6427 if (arg4
) delete [] arg4
;
6433 SWIGINTERN PyObject
*_wrap_MessageBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6434 PyObject
*resultobj
= 0;
6435 wxString
*arg1
= 0 ;
6436 wxString
const &arg2_defvalue
= wxPyEmptyString
;
6437 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
6438 int arg3
= (int) wxOK
|wxCENTRE
;
6439 wxWindow
*arg4
= (wxWindow
*) NULL
;
6440 int arg5
= (int) -1 ;
6441 int arg6
= (int) -1 ;
6443 bool temp1
= false ;
6444 bool temp2
= false ;
6453 PyObject
* obj0
= 0 ;
6454 PyObject
* obj1
= 0 ;
6455 PyObject
* obj2
= 0 ;
6456 PyObject
* obj3
= 0 ;
6457 PyObject
* obj4
= 0 ;
6458 PyObject
* obj5
= 0 ;
6459 char * kwnames
[] = {
6460 (char *) "message",(char *) "caption",(char *) "style",(char *) "parent",(char *) "x",(char *) "y", NULL
6463 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:MessageBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
6465 arg1
= wxString_in_helper(obj0
);
6466 if (arg1
== NULL
) SWIG_fail
;
6471 arg2
= wxString_in_helper(obj1
);
6472 if (arg2
== NULL
) SWIG_fail
;
6477 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6478 if (!SWIG_IsOK(ecode3
)) {
6479 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MessageBox" "', expected argument " "3"" of type '" "int""'");
6481 arg3
= static_cast< int >(val3
);
6484 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6485 if (!SWIG_IsOK(res4
)) {
6486 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "MessageBox" "', expected argument " "4"" of type '" "wxWindow *""'");
6488 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
6491 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
6492 if (!SWIG_IsOK(ecode5
)) {
6493 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "MessageBox" "', expected argument " "5"" of type '" "int""'");
6495 arg5
= static_cast< int >(val5
);
6498 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
6499 if (!SWIG_IsOK(ecode6
)) {
6500 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "MessageBox" "', expected argument " "6"" of type '" "int""'");
6502 arg6
= static_cast< int >(val6
);
6505 if (!wxPyCheckForApp()) SWIG_fail
;
6506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6507 result
= (int)wxMessageBox((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
);
6508 wxPyEndAllowThreads(__tstate
);
6509 if (PyErr_Occurred()) SWIG_fail
;
6511 resultobj
= SWIG_From_int(static_cast< int >(result
));
6534 SWIGINTERN PyObject
*_wrap_ColourDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6535 PyObject
*resultobj
= 0;
6538 if (!SWIG_Python_UnpackTuple(args
,"ColourDisplay",0,0,0)) SWIG_fail
;
6540 if (!wxPyCheckForApp()) SWIG_fail
;
6541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6542 result
= (bool)wxColourDisplay();
6543 wxPyEndAllowThreads(__tstate
);
6544 if (PyErr_Occurred()) SWIG_fail
;
6547 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6555 SWIGINTERN PyObject
*_wrap_DisplayDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6556 PyObject
*resultobj
= 0;
6559 if (!SWIG_Python_UnpackTuple(args
,"DisplayDepth",0,0,0)) SWIG_fail
;
6561 if (!wxPyCheckForApp()) SWIG_fail
;
6562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6563 result
= (int)wxDisplayDepth();
6564 wxPyEndAllowThreads(__tstate
);
6565 if (PyErr_Occurred()) SWIG_fail
;
6567 resultobj
= SWIG_From_int(static_cast< int >(result
));
6574 SWIGINTERN PyObject
*_wrap_GetDisplayDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6575 PyObject
*resultobj
= 0;
6578 if (!SWIG_Python_UnpackTuple(args
,"GetDisplayDepth",0,0,0)) SWIG_fail
;
6580 if (!wxPyCheckForApp()) SWIG_fail
;
6581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6582 result
= (int)wxGetDisplayDepth();
6583 wxPyEndAllowThreads(__tstate
);
6584 if (PyErr_Occurred()) SWIG_fail
;
6586 resultobj
= SWIG_From_int(static_cast< int >(result
));
6593 SWIGINTERN PyObject
*_wrap_DisplaySize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6594 PyObject
*resultobj
= 0;
6595 int *arg1
= (int *) 0 ;
6596 int *arg2
= (int *) 0 ;
6598 int res1
= SWIG_TMPOBJ
;
6600 int res2
= SWIG_TMPOBJ
;
6604 if (!SWIG_Python_UnpackTuple(args
,"DisplaySize",0,0,0)) SWIG_fail
;
6606 if (!wxPyCheckForApp()) SWIG_fail
;
6607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6608 wxDisplaySize(arg1
,arg2
);
6609 wxPyEndAllowThreads(__tstate
);
6610 if (PyErr_Occurred()) SWIG_fail
;
6612 resultobj
= SWIG_Py_Void();
6613 if (SWIG_IsTmpObj(res1
)) {
6614 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg1
)));
6616 int new_flags
= SWIG_IsNewObj(res1
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6617 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg1
), SWIGTYPE_p_int
, new_flags
));
6619 if (SWIG_IsTmpObj(res2
)) {
6620 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
6622 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6623 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
6631 SWIGINTERN PyObject
*_wrap_GetDisplaySize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6632 PyObject
*resultobj
= 0;
6635 if (!SWIG_Python_UnpackTuple(args
,"GetDisplaySize",0,0,0)) SWIG_fail
;
6637 if (!wxPyCheckForApp()) SWIG_fail
;
6638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6639 result
= wxGetDisplaySize();
6640 wxPyEndAllowThreads(__tstate
);
6641 if (PyErr_Occurred()) SWIG_fail
;
6643 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
6650 SWIGINTERN PyObject
*_wrap_DisplaySizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6651 PyObject
*resultobj
= 0;
6652 int *arg1
= (int *) 0 ;
6653 int *arg2
= (int *) 0 ;
6655 int res1
= SWIG_TMPOBJ
;
6657 int res2
= SWIG_TMPOBJ
;
6661 if (!SWIG_Python_UnpackTuple(args
,"DisplaySizeMM",0,0,0)) SWIG_fail
;
6663 if (!wxPyCheckForApp()) SWIG_fail
;
6664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6665 wxDisplaySizeMM(arg1
,arg2
);
6666 wxPyEndAllowThreads(__tstate
);
6667 if (PyErr_Occurred()) SWIG_fail
;
6669 resultobj
= SWIG_Py_Void();
6670 if (SWIG_IsTmpObj(res1
)) {
6671 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg1
)));
6673 int new_flags
= SWIG_IsNewObj(res1
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6674 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg1
), SWIGTYPE_p_int
, new_flags
));
6676 if (SWIG_IsTmpObj(res2
)) {
6677 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
6679 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6680 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
6688 SWIGINTERN PyObject
*_wrap_GetDisplaySizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6689 PyObject
*resultobj
= 0;
6692 if (!SWIG_Python_UnpackTuple(args
,"GetDisplaySizeMM",0,0,0)) SWIG_fail
;
6694 if (!wxPyCheckForApp()) SWIG_fail
;
6695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6696 result
= wxGetDisplaySizeMM();
6697 wxPyEndAllowThreads(__tstate
);
6698 if (PyErr_Occurred()) SWIG_fail
;
6700 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
6707 SWIGINTERN PyObject
*_wrap_ClientDisplayRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6708 PyObject
*resultobj
= 0;
6709 int *arg1
= (int *) 0 ;
6710 int *arg2
= (int *) 0 ;
6711 int *arg3
= (int *) 0 ;
6712 int *arg4
= (int *) 0 ;
6714 int res1
= SWIG_TMPOBJ
;
6716 int res2
= SWIG_TMPOBJ
;
6718 int res3
= SWIG_TMPOBJ
;
6720 int res4
= SWIG_TMPOBJ
;
6726 if (!SWIG_Python_UnpackTuple(args
,"ClientDisplayRect",0,0,0)) SWIG_fail
;
6728 if (!wxPyCheckForApp()) SWIG_fail
;
6729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6730 wxClientDisplayRect(arg1
,arg2
,arg3
,arg4
);
6731 wxPyEndAllowThreads(__tstate
);
6732 if (PyErr_Occurred()) SWIG_fail
;
6734 resultobj
= SWIG_Py_Void();
6735 if (SWIG_IsTmpObj(res1
)) {
6736 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg1
)));
6738 int new_flags
= SWIG_IsNewObj(res1
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6739 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg1
), SWIGTYPE_p_int
, new_flags
));
6741 if (SWIG_IsTmpObj(res2
)) {
6742 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
6744 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6745 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
6747 if (SWIG_IsTmpObj(res3
)) {
6748 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
6750 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6751 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
6753 if (SWIG_IsTmpObj(res4
)) {
6754 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
6756 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
6757 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
6765 SWIGINTERN PyObject
*_wrap_GetClientDisplayRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6766 PyObject
*resultobj
= 0;
6769 if (!SWIG_Python_UnpackTuple(args
,"GetClientDisplayRect",0,0,0)) SWIG_fail
;
6771 if (!wxPyCheckForApp()) SWIG_fail
;
6772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6773 result
= wxGetClientDisplayRect();
6774 wxPyEndAllowThreads(__tstate
);
6775 if (PyErr_Occurred()) SWIG_fail
;
6777 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
6784 SWIGINTERN PyObject
*_wrap_SetCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6785 PyObject
*resultobj
= 0;
6786 wxCursor
*arg1
= 0 ;
6789 PyObject
* obj0
= 0 ;
6790 char * kwnames
[] = {
6791 (char *) "cursor", NULL
6794 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SetCursor",kwnames
,&obj0
)) SWIG_fail
;
6795 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxCursor
, 0 );
6796 if (!SWIG_IsOK(res1
)) {
6797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SetCursor" "', expected argument " "1"" of type '" "wxCursor &""'");
6800 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "SetCursor" "', expected argument " "1"" of type '" "wxCursor &""'");
6802 arg1
= reinterpret_cast< wxCursor
* >(argp1
);
6804 if (!wxPyCheckForApp()) SWIG_fail
;
6805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6807 wxPyEndAllowThreads(__tstate
);
6808 if (PyErr_Occurred()) SWIG_fail
;
6810 resultobj
= SWIG_Py_Void();
6817 SWIGINTERN PyObject
*_wrap_GetXDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6818 PyObject
*resultobj
= 0;
6821 if (!SWIG_Python_UnpackTuple(args
,"GetXDisplay",0,0,0)) SWIG_fail
;
6823 if (!wxPyCheckForApp()) SWIG_fail
;
6824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6825 result
= (void *)wxGetXDisplay();
6826 wxPyEndAllowThreads(__tstate
);
6827 if (PyErr_Occurred()) SWIG_fail
;
6829 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
6836 SWIGINTERN PyObject
*_wrap_BeginBusyCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6837 PyObject
*resultobj
= 0;
6838 wxCursor
*arg1
= (wxCursor
*) wxHOURGLASS_CURSOR
;
6841 PyObject
* obj0
= 0 ;
6842 char * kwnames
[] = {
6843 (char *) "cursor", NULL
6846 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:BeginBusyCursor",kwnames
,&obj0
)) SWIG_fail
;
6848 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCursor
, 0 | 0 );
6849 if (!SWIG_IsOK(res1
)) {
6850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BeginBusyCursor" "', expected argument " "1"" of type '" "wxCursor *""'");
6852 arg1
= reinterpret_cast< wxCursor
* >(argp1
);
6855 if (!wxPyCheckForApp()) SWIG_fail
;
6856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6857 wxBeginBusyCursor(arg1
);
6858 wxPyEndAllowThreads(__tstate
);
6859 if (PyErr_Occurred()) SWIG_fail
;
6861 resultobj
= SWIG_Py_Void();
6868 SWIGINTERN PyObject
*_wrap_GetMousePosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6869 PyObject
*resultobj
= 0;
6872 if (!SWIG_Python_UnpackTuple(args
,"GetMousePosition",0,0,0)) SWIG_fail
;
6874 if (!wxPyCheckForApp()) SWIG_fail
;
6875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6876 result
= wxGetMousePosition();
6877 wxPyEndAllowThreads(__tstate
);
6878 if (PyErr_Occurred()) SWIG_fail
;
6880 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
6887 SWIGINTERN PyObject
*_wrap_FindWindowAtPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6888 PyObject
*resultobj
= 0;
6889 wxWindow
*result
= 0 ;
6891 if (!SWIG_Python_UnpackTuple(args
,"FindWindowAtPointer",0,0,0)) SWIG_fail
;
6893 if (!wxPyCheckForApp()) SWIG_fail
;
6894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6895 result
= (wxWindow
*)FindWindowAtPointer();
6896 wxPyEndAllowThreads(__tstate
);
6897 if (PyErr_Occurred()) SWIG_fail
;
6900 resultobj
= wxPyMake_wxObject(result
, 0);
6908 SWIGINTERN PyObject
*_wrap_GetActiveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6909 PyObject
*resultobj
= 0;
6910 wxWindow
*result
= 0 ;
6912 if (!SWIG_Python_UnpackTuple(args
,"GetActiveWindow",0,0,0)) SWIG_fail
;
6914 if (!wxPyCheckForApp()) SWIG_fail
;
6915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6916 result
= (wxWindow
*)wxGetActiveWindow();
6917 wxPyEndAllowThreads(__tstate
);
6918 if (PyErr_Occurred()) SWIG_fail
;
6921 resultobj
= wxPyMake_wxObject(result
, 0);
6929 SWIGINTERN PyObject
*_wrap_GenericFindWindowAtPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6930 PyObject
*resultobj
= 0;
6932 wxWindow
*result
= 0 ;
6934 PyObject
* obj0
= 0 ;
6935 char * kwnames
[] = {
6939 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericFindWindowAtPoint",kwnames
,&obj0
)) SWIG_fail
;
6942 if ( ! wxPoint_helper(obj0
, &arg1
)) SWIG_fail
;
6945 if (!wxPyCheckForApp()) SWIG_fail
;
6946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6947 result
= (wxWindow
*)wxGenericFindWindowAtPoint((wxPoint
const &)*arg1
);
6948 wxPyEndAllowThreads(__tstate
);
6949 if (PyErr_Occurred()) SWIG_fail
;
6952 resultobj
= wxPyMake_wxObject(result
, 0);
6960 SWIGINTERN PyObject
*_wrap_FindWindowAtPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6961 PyObject
*resultobj
= 0;
6963 wxWindow
*result
= 0 ;
6965 PyObject
* obj0
= 0 ;
6966 char * kwnames
[] = {
6970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindWindowAtPoint",kwnames
,&obj0
)) SWIG_fail
;
6973 if ( ! wxPoint_helper(obj0
, &arg1
)) SWIG_fail
;
6976 if (!wxPyCheckForApp()) SWIG_fail
;
6977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6978 result
= (wxWindow
*)wxFindWindowAtPoint((wxPoint
const &)*arg1
);
6979 wxPyEndAllowThreads(__tstate
);
6980 if (PyErr_Occurred()) SWIG_fail
;
6983 resultobj
= wxPyMake_wxObject(result
, 0);
6991 SWIGINTERN PyObject
*_wrap_GetTopLevelParent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6992 PyObject
*resultobj
= 0;
6993 wxWindow
*arg1
= (wxWindow
*) 0 ;
6994 wxWindow
*result
= 0 ;
6997 PyObject
* obj0
= 0 ;
6998 char * kwnames
[] = {
6999 (char *) "win", NULL
7002 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GetTopLevelParent",kwnames
,&obj0
)) SWIG_fail
;
7003 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7004 if (!SWIG_IsOK(res1
)) {
7005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GetTopLevelParent" "', expected argument " "1"" of type '" "wxWindow *""'");
7007 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7009 if (!wxPyCheckForApp()) SWIG_fail
;
7010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7011 result
= (wxWindow
*)wxGetTopLevelParent(arg1
);
7012 wxPyEndAllowThreads(__tstate
);
7013 if (PyErr_Occurred()) SWIG_fail
;
7016 resultobj
= wxPyMake_wxObject(result
, 0);
7024 SWIGINTERN PyObject
*_wrap_LaunchDefaultBrowser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7025 PyObject
*resultobj
= 0;
7026 wxString
*arg1
= 0 ;
7028 bool temp1
= false ;
7029 PyObject
* obj0
= 0 ;
7030 char * kwnames
[] = {
7031 (char *) "url", NULL
7034 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LaunchDefaultBrowser",kwnames
,&obj0
)) SWIG_fail
;
7036 arg1
= wxString_in_helper(obj0
);
7037 if (arg1
== NULL
) SWIG_fail
;
7041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7042 result
= (bool)wxLaunchDefaultBrowser((wxString
const &)*arg1
);
7043 wxPyEndAllowThreads(__tstate
);
7044 if (PyErr_Occurred()) SWIG_fail
;
7047 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7063 SWIGINTERN PyObject
*_wrap_GetKeyState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7064 PyObject
*resultobj
= 0;
7069 PyObject
* obj0
= 0 ;
7070 char * kwnames
[] = {
7071 (char *) "key", NULL
7074 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GetKeyState",kwnames
,&obj0
)) SWIG_fail
;
7075 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7076 if (!SWIG_IsOK(ecode1
)) {
7077 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "GetKeyState" "', expected argument " "1"" of type '" "wxKeyCode""'");
7079 arg1
= static_cast< wxKeyCode
>(val1
);
7081 if (!wxPyCheckForApp()) SWIG_fail
;
7082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7083 result
= (bool)wxGetKeyState(arg1
);
7084 wxPyEndAllowThreads(__tstate
);
7085 if (PyErr_Occurred()) SWIG_fail
;
7088 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7096 SWIGINTERN PyObject
*_wrap_new_MouseState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7097 PyObject
*resultobj
= 0;
7098 wxMouseState
*result
= 0 ;
7100 if (!SWIG_Python_UnpackTuple(args
,"new_MouseState",0,0,0)) SWIG_fail
;
7102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7103 result
= (wxMouseState
*)new wxMouseState();
7104 wxPyEndAllowThreads(__tstate
);
7105 if (PyErr_Occurred()) SWIG_fail
;
7107 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMouseState
, SWIG_POINTER_NEW
| 0 );
7114 SWIGINTERN PyObject
*_wrap_delete_MouseState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7115 PyObject
*resultobj
= 0;
7116 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7119 PyObject
*swig_obj
[1] ;
7121 if (!args
) SWIG_fail
;
7123 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, SWIG_POINTER_DISOWN
| 0 );
7124 if (!SWIG_IsOK(res1
)) {
7125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_MouseState" "', expected argument " "1"" of type '" "wxMouseState *""'");
7127 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7132 wxPyEndAllowThreads(__tstate
);
7133 if (PyErr_Occurred()) SWIG_fail
;
7135 resultobj
= SWIG_Py_Void();
7142 SWIGINTERN PyObject
*_wrap_MouseState_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7143 PyObject
*resultobj
= 0;
7144 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7148 PyObject
*swig_obj
[1] ;
7150 if (!args
) SWIG_fail
;
7152 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7153 if (!SWIG_IsOK(res1
)) {
7154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_GetX" "', expected argument " "1"" of type '" "wxMouseState *""'");
7156 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7159 result
= (int)(arg1
)->GetX();
7160 wxPyEndAllowThreads(__tstate
);
7161 if (PyErr_Occurred()) SWIG_fail
;
7163 resultobj
= SWIG_From_int(static_cast< int >(result
));
7170 SWIGINTERN PyObject
*_wrap_MouseState_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7171 PyObject
*resultobj
= 0;
7172 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7176 PyObject
*swig_obj
[1] ;
7178 if (!args
) SWIG_fail
;
7180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7181 if (!SWIG_IsOK(res1
)) {
7182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_GetY" "', expected argument " "1"" of type '" "wxMouseState *""'");
7184 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7187 result
= (int)(arg1
)->GetY();
7188 wxPyEndAllowThreads(__tstate
);
7189 if (PyErr_Occurred()) SWIG_fail
;
7191 resultobj
= SWIG_From_int(static_cast< int >(result
));
7198 SWIGINTERN PyObject
*_wrap_MouseState_LeftDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7199 PyObject
*resultobj
= 0;
7200 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7204 PyObject
*swig_obj
[1] ;
7206 if (!args
) SWIG_fail
;
7208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7209 if (!SWIG_IsOK(res1
)) {
7210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_LeftDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7212 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7215 result
= (bool)(arg1
)->LeftDown();
7216 wxPyEndAllowThreads(__tstate
);
7217 if (PyErr_Occurred()) SWIG_fail
;
7220 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7228 SWIGINTERN PyObject
*_wrap_MouseState_MiddleDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7229 PyObject
*resultobj
= 0;
7230 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7234 PyObject
*swig_obj
[1] ;
7236 if (!args
) SWIG_fail
;
7238 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7239 if (!SWIG_IsOK(res1
)) {
7240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_MiddleDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7242 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7245 result
= (bool)(arg1
)->MiddleDown();
7246 wxPyEndAllowThreads(__tstate
);
7247 if (PyErr_Occurred()) SWIG_fail
;
7250 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7258 SWIGINTERN PyObject
*_wrap_MouseState_RightDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7259 PyObject
*resultobj
= 0;
7260 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7264 PyObject
*swig_obj
[1] ;
7266 if (!args
) SWIG_fail
;
7268 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7269 if (!SWIG_IsOK(res1
)) {
7270 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_RightDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7272 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7275 result
= (bool)(arg1
)->RightDown();
7276 wxPyEndAllowThreads(__tstate
);
7277 if (PyErr_Occurred()) SWIG_fail
;
7280 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7288 SWIGINTERN PyObject
*_wrap_MouseState_ControlDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7289 PyObject
*resultobj
= 0;
7290 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7294 PyObject
*swig_obj
[1] ;
7296 if (!args
) SWIG_fail
;
7298 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7299 if (!SWIG_IsOK(res1
)) {
7300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_ControlDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7302 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7305 result
= (bool)(arg1
)->ControlDown();
7306 wxPyEndAllowThreads(__tstate
);
7307 if (PyErr_Occurred()) SWIG_fail
;
7310 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7318 SWIGINTERN PyObject
*_wrap_MouseState_ShiftDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7319 PyObject
*resultobj
= 0;
7320 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7324 PyObject
*swig_obj
[1] ;
7326 if (!args
) SWIG_fail
;
7328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7329 if (!SWIG_IsOK(res1
)) {
7330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_ShiftDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7332 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7335 result
= (bool)(arg1
)->ShiftDown();
7336 wxPyEndAllowThreads(__tstate
);
7337 if (PyErr_Occurred()) SWIG_fail
;
7340 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7348 SWIGINTERN PyObject
*_wrap_MouseState_AltDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7349 PyObject
*resultobj
= 0;
7350 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7354 PyObject
*swig_obj
[1] ;
7356 if (!args
) SWIG_fail
;
7358 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7359 if (!SWIG_IsOK(res1
)) {
7360 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_AltDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7362 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7365 result
= (bool)(arg1
)->AltDown();
7366 wxPyEndAllowThreads(__tstate
);
7367 if (PyErr_Occurred()) SWIG_fail
;
7370 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7378 SWIGINTERN PyObject
*_wrap_MouseState_MetaDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7379 PyObject
*resultobj
= 0;
7380 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7384 PyObject
*swig_obj
[1] ;
7386 if (!args
) SWIG_fail
;
7388 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7389 if (!SWIG_IsOK(res1
)) {
7390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_MetaDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7392 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7395 result
= (bool)(arg1
)->MetaDown();
7396 wxPyEndAllowThreads(__tstate
);
7397 if (PyErr_Occurred()) SWIG_fail
;
7400 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7408 SWIGINTERN PyObject
*_wrap_MouseState_CmdDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7409 PyObject
*resultobj
= 0;
7410 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7414 PyObject
*swig_obj
[1] ;
7416 if (!args
) SWIG_fail
;
7418 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7419 if (!SWIG_IsOK(res1
)) {
7420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_CmdDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7422 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7425 result
= (bool)(arg1
)->CmdDown();
7426 wxPyEndAllowThreads(__tstate
);
7427 if (PyErr_Occurred()) SWIG_fail
;
7430 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7438 SWIGINTERN PyObject
*_wrap_MouseState_SetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7439 PyObject
*resultobj
= 0;
7440 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7446 PyObject
* obj0
= 0 ;
7447 PyObject
* obj1
= 0 ;
7448 char * kwnames
[] = {
7449 (char *) "self",(char *) "x", NULL
7452 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7453 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7454 if (!SWIG_IsOK(res1
)) {
7455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetX" "', expected argument " "1"" of type '" "wxMouseState *""'");
7457 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7458 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7459 if (!SWIG_IsOK(ecode2
)) {
7460 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetX" "', expected argument " "2"" of type '" "int""'");
7462 arg2
= static_cast< int >(val2
);
7464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7466 wxPyEndAllowThreads(__tstate
);
7467 if (PyErr_Occurred()) SWIG_fail
;
7469 resultobj
= SWIG_Py_Void();
7476 SWIGINTERN PyObject
*_wrap_MouseState_SetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7477 PyObject
*resultobj
= 0;
7478 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7484 PyObject
* obj0
= 0 ;
7485 PyObject
* obj1
= 0 ;
7486 char * kwnames
[] = {
7487 (char *) "self",(char *) "y", NULL
7490 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7491 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7492 if (!SWIG_IsOK(res1
)) {
7493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetY" "', expected argument " "1"" of type '" "wxMouseState *""'");
7495 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7496 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7497 if (!SWIG_IsOK(ecode2
)) {
7498 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetY" "', expected argument " "2"" of type '" "int""'");
7500 arg2
= static_cast< int >(val2
);
7502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7504 wxPyEndAllowThreads(__tstate
);
7505 if (PyErr_Occurred()) SWIG_fail
;
7507 resultobj
= SWIG_Py_Void();
7514 SWIGINTERN PyObject
*_wrap_MouseState_SetLeftDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7515 PyObject
*resultobj
= 0;
7516 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7522 PyObject
* obj0
= 0 ;
7523 PyObject
* obj1
= 0 ;
7524 char * kwnames
[] = {
7525 (char *) "self",(char *) "down", NULL
7528 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetLeftDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7529 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7530 if (!SWIG_IsOK(res1
)) {
7531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetLeftDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7533 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7534 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7535 if (!SWIG_IsOK(ecode2
)) {
7536 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetLeftDown" "', expected argument " "2"" of type '" "bool""'");
7538 arg2
= static_cast< bool >(val2
);
7540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7541 (arg1
)->SetLeftDown(arg2
);
7542 wxPyEndAllowThreads(__tstate
);
7543 if (PyErr_Occurred()) SWIG_fail
;
7545 resultobj
= SWIG_Py_Void();
7552 SWIGINTERN PyObject
*_wrap_MouseState_SetMiddleDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7553 PyObject
*resultobj
= 0;
7554 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7560 PyObject
* obj0
= 0 ;
7561 PyObject
* obj1
= 0 ;
7562 char * kwnames
[] = {
7563 (char *) "self",(char *) "down", NULL
7566 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetMiddleDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7567 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7568 if (!SWIG_IsOK(res1
)) {
7569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetMiddleDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7571 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7572 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7573 if (!SWIG_IsOK(ecode2
)) {
7574 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetMiddleDown" "', expected argument " "2"" of type '" "bool""'");
7576 arg2
= static_cast< bool >(val2
);
7578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7579 (arg1
)->SetMiddleDown(arg2
);
7580 wxPyEndAllowThreads(__tstate
);
7581 if (PyErr_Occurred()) SWIG_fail
;
7583 resultobj
= SWIG_Py_Void();
7590 SWIGINTERN PyObject
*_wrap_MouseState_SetRightDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7591 PyObject
*resultobj
= 0;
7592 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7598 PyObject
* obj0
= 0 ;
7599 PyObject
* obj1
= 0 ;
7600 char * kwnames
[] = {
7601 (char *) "self",(char *) "down", NULL
7604 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetRightDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7605 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7606 if (!SWIG_IsOK(res1
)) {
7607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetRightDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7609 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7610 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7611 if (!SWIG_IsOK(ecode2
)) {
7612 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetRightDown" "', expected argument " "2"" of type '" "bool""'");
7614 arg2
= static_cast< bool >(val2
);
7616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7617 (arg1
)->SetRightDown(arg2
);
7618 wxPyEndAllowThreads(__tstate
);
7619 if (PyErr_Occurred()) SWIG_fail
;
7621 resultobj
= SWIG_Py_Void();
7628 SWIGINTERN PyObject
*_wrap_MouseState_SetControlDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7629 PyObject
*resultobj
= 0;
7630 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7636 PyObject
* obj0
= 0 ;
7637 PyObject
* obj1
= 0 ;
7638 char * kwnames
[] = {
7639 (char *) "self",(char *) "down", NULL
7642 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetControlDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7643 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7644 if (!SWIG_IsOK(res1
)) {
7645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetControlDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7647 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7648 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7649 if (!SWIG_IsOK(ecode2
)) {
7650 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetControlDown" "', expected argument " "2"" of type '" "bool""'");
7652 arg2
= static_cast< bool >(val2
);
7654 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7655 (arg1
)->SetControlDown(arg2
);
7656 wxPyEndAllowThreads(__tstate
);
7657 if (PyErr_Occurred()) SWIG_fail
;
7659 resultobj
= SWIG_Py_Void();
7666 SWIGINTERN PyObject
*_wrap_MouseState_SetShiftDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7667 PyObject
*resultobj
= 0;
7668 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7674 PyObject
* obj0
= 0 ;
7675 PyObject
* obj1
= 0 ;
7676 char * kwnames
[] = {
7677 (char *) "self",(char *) "down", NULL
7680 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetShiftDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7681 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7682 if (!SWIG_IsOK(res1
)) {
7683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetShiftDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7685 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7686 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7687 if (!SWIG_IsOK(ecode2
)) {
7688 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetShiftDown" "', expected argument " "2"" of type '" "bool""'");
7690 arg2
= static_cast< bool >(val2
);
7692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7693 (arg1
)->SetShiftDown(arg2
);
7694 wxPyEndAllowThreads(__tstate
);
7695 if (PyErr_Occurred()) SWIG_fail
;
7697 resultobj
= SWIG_Py_Void();
7704 SWIGINTERN PyObject
*_wrap_MouseState_SetAltDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7705 PyObject
*resultobj
= 0;
7706 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7712 PyObject
* obj0
= 0 ;
7713 PyObject
* obj1
= 0 ;
7714 char * kwnames
[] = {
7715 (char *) "self",(char *) "down", NULL
7718 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetAltDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7719 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7720 if (!SWIG_IsOK(res1
)) {
7721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetAltDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7723 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7724 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7725 if (!SWIG_IsOK(ecode2
)) {
7726 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetAltDown" "', expected argument " "2"" of type '" "bool""'");
7728 arg2
= static_cast< bool >(val2
);
7730 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7731 (arg1
)->SetAltDown(arg2
);
7732 wxPyEndAllowThreads(__tstate
);
7733 if (PyErr_Occurred()) SWIG_fail
;
7735 resultobj
= SWIG_Py_Void();
7742 SWIGINTERN PyObject
*_wrap_MouseState_SetMetaDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7743 PyObject
*resultobj
= 0;
7744 wxMouseState
*arg1
= (wxMouseState
*) 0 ;
7750 PyObject
* obj0
= 0 ;
7751 PyObject
* obj1
= 0 ;
7752 char * kwnames
[] = {
7753 (char *) "self",(char *) "down", NULL
7756 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MouseState_SetMetaDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7757 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMouseState
, 0 | 0 );
7758 if (!SWIG_IsOK(res1
)) {
7759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MouseState_SetMetaDown" "', expected argument " "1"" of type '" "wxMouseState *""'");
7761 arg1
= reinterpret_cast< wxMouseState
* >(argp1
);
7762 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7763 if (!SWIG_IsOK(ecode2
)) {
7764 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MouseState_SetMetaDown" "', expected argument " "2"" of type '" "bool""'");
7766 arg2
= static_cast< bool >(val2
);
7768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7769 (arg1
)->SetMetaDown(arg2
);
7770 wxPyEndAllowThreads(__tstate
);
7771 if (PyErr_Occurred()) SWIG_fail
;
7773 resultobj
= SWIG_Py_Void();
7780 SWIGINTERN PyObject
*MouseState_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7782 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7783 SWIG_TypeNewClientData(SWIGTYPE_p_wxMouseState
, SWIG_NewClientData(obj
));
7784 return SWIG_Py_Void();
7787 SWIGINTERN PyObject
*MouseState_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7788 return SWIG_Python_InitShadowInstance(args
);
7791 SWIGINTERN PyObject
*_wrap_GetMouseState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7792 PyObject
*resultobj
= 0;
7793 wxMouseState result
;
7795 if (!SWIG_Python_UnpackTuple(args
,"GetMouseState",0,0,0)) SWIG_fail
;
7797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7798 result
= wxGetMouseState();
7799 wxPyEndAllowThreads(__tstate
);
7800 if (PyErr_Occurred()) SWIG_fail
;
7802 resultobj
= SWIG_NewPointerObj((new wxMouseState(static_cast< const wxMouseState
& >(result
))), SWIGTYPE_p_wxMouseState
, SWIG_POINTER_OWN
| 0 );
7809 SWIGINTERN PyObject
*_wrap_WakeUpMainThread(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7810 PyObject
*resultobj
= 0;
7812 if (!SWIG_Python_UnpackTuple(args
,"WakeUpMainThread",0,0,0)) SWIG_fail
;
7814 if (!wxPyCheckForApp()) SWIG_fail
;
7815 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7816 wxWakeUpMainThread();
7817 wxPyEndAllowThreads(__tstate
);
7818 if (PyErr_Occurred()) SWIG_fail
;
7820 resultobj
= SWIG_Py_Void();
7827 SWIGINTERN PyObject
*_wrap_MutexGuiEnter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7828 PyObject
*resultobj
= 0;
7830 if (!SWIG_Python_UnpackTuple(args
,"MutexGuiEnter",0,0,0)) SWIG_fail
;
7832 if (!wxPyCheckForApp()) SWIG_fail
;
7833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7835 wxPyEndAllowThreads(__tstate
);
7836 if (PyErr_Occurred()) SWIG_fail
;
7838 resultobj
= SWIG_Py_Void();
7845 SWIGINTERN PyObject
*_wrap_MutexGuiLeave(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7846 PyObject
*resultobj
= 0;
7848 if (!SWIG_Python_UnpackTuple(args
,"MutexGuiLeave",0,0,0)) SWIG_fail
;
7850 if (!wxPyCheckForApp()) SWIG_fail
;
7851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7853 wxPyEndAllowThreads(__tstate
);
7854 if (PyErr_Occurred()) SWIG_fail
;
7856 resultobj
= SWIG_Py_Void();
7863 SWIGINTERN PyObject
*_wrap_new_MutexGuiLocker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7864 PyObject
*resultobj
= 0;
7865 wxMutexGuiLocker
*result
= 0 ;
7867 if (!SWIG_Python_UnpackTuple(args
,"new_MutexGuiLocker",0,0,0)) SWIG_fail
;
7869 if (!wxPyCheckForApp()) SWIG_fail
;
7870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7871 result
= (wxMutexGuiLocker
*)new wxMutexGuiLocker();
7872 wxPyEndAllowThreads(__tstate
);
7873 if (PyErr_Occurred()) SWIG_fail
;
7875 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMutexGuiLocker
, SWIG_POINTER_NEW
| 0 );
7882 SWIGINTERN PyObject
*_wrap_delete_MutexGuiLocker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7883 PyObject
*resultobj
= 0;
7884 wxMutexGuiLocker
*arg1
= (wxMutexGuiLocker
*) 0 ;
7887 PyObject
*swig_obj
[1] ;
7889 if (!args
) SWIG_fail
;
7891 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMutexGuiLocker
, SWIG_POINTER_DISOWN
| 0 );
7892 if (!SWIG_IsOK(res1
)) {
7893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_MutexGuiLocker" "', expected argument " "1"" of type '" "wxMutexGuiLocker *""'");
7895 arg1
= reinterpret_cast< wxMutexGuiLocker
* >(argp1
);
7897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7900 wxPyEndAllowThreads(__tstate
);
7901 if (PyErr_Occurred()) SWIG_fail
;
7903 resultobj
= SWIG_Py_Void();
7910 SWIGINTERN PyObject
*MutexGuiLocker_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7912 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7913 SWIG_TypeNewClientData(SWIGTYPE_p_wxMutexGuiLocker
, SWIG_NewClientData(obj
));
7914 return SWIG_Py_Void();
7917 SWIGINTERN PyObject
*MutexGuiLocker_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7918 return SWIG_Python_InitShadowInstance(args
);
7921 SWIGINTERN PyObject
*_wrap_Thread_IsMain(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7922 PyObject
*resultobj
= 0;
7925 if (!SWIG_Python_UnpackTuple(args
,"Thread_IsMain",0,0,0)) SWIG_fail
;
7927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7928 result
= (bool)wxThread_IsMain();
7929 wxPyEndAllowThreads(__tstate
);
7930 if (PyErr_Occurred()) SWIG_fail
;
7933 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7941 SWIGINTERN PyObject
*_wrap_new_ToolTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7942 PyObject
*resultobj
= 0;
7943 wxString
*arg1
= 0 ;
7944 wxToolTip
*result
= 0 ;
7945 bool temp1
= false ;
7946 PyObject
* obj0
= 0 ;
7947 char * kwnames
[] = {
7948 (char *) "tip", NULL
7951 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_ToolTip",kwnames
,&obj0
)) SWIG_fail
;
7953 arg1
= wxString_in_helper(obj0
);
7954 if (arg1
== NULL
) SWIG_fail
;
7958 if (!wxPyCheckForApp()) SWIG_fail
;
7959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7960 result
= (wxToolTip
*)new wxToolTip((wxString
const &)*arg1
);
7961 wxPyEndAllowThreads(__tstate
);
7962 if (PyErr_Occurred()) SWIG_fail
;
7964 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxToolTip
, SWIG_POINTER_NEW
| 0 );
7979 SWIGINTERN PyObject
*_wrap_delete_ToolTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7980 PyObject
*resultobj
= 0;
7981 wxToolTip
*arg1
= (wxToolTip
*) 0 ;
7984 PyObject
*swig_obj
[1] ;
7986 if (!args
) SWIG_fail
;
7988 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxToolTip
, SWIG_POINTER_DISOWN
| 0 );
7989 if (!SWIG_IsOK(res1
)) {
7990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ToolTip" "', expected argument " "1"" of type '" "wxToolTip *""'");
7992 arg1
= reinterpret_cast< wxToolTip
* >(argp1
);
7994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7997 wxPyEndAllowThreads(__tstate
);
7998 if (PyErr_Occurred()) SWIG_fail
;
8000 resultobj
= SWIG_Py_Void();
8007 SWIGINTERN PyObject
*_wrap_ToolTip_SetTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8008 PyObject
*resultobj
= 0;
8009 wxToolTip
*arg1
= (wxToolTip
*) 0 ;
8010 wxString
*arg2
= 0 ;
8013 bool temp2
= false ;
8014 PyObject
* obj0
= 0 ;
8015 PyObject
* obj1
= 0 ;
8016 char * kwnames
[] = {
8017 (char *) "self",(char *) "tip", NULL
8020 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolTip_SetTip",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8021 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxToolTip
, 0 | 0 );
8022 if (!SWIG_IsOK(res1
)) {
8023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ToolTip_SetTip" "', expected argument " "1"" of type '" "wxToolTip *""'");
8025 arg1
= reinterpret_cast< wxToolTip
* >(argp1
);
8027 arg2
= wxString_in_helper(obj1
);
8028 if (arg2
== NULL
) SWIG_fail
;
8032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8033 (arg1
)->SetTip((wxString
const &)*arg2
);
8034 wxPyEndAllowThreads(__tstate
);
8035 if (PyErr_Occurred()) SWIG_fail
;
8037 resultobj
= SWIG_Py_Void();
8052 SWIGINTERN PyObject
*_wrap_ToolTip_GetTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8053 PyObject
*resultobj
= 0;
8054 wxToolTip
*arg1
= (wxToolTip
*) 0 ;
8058 PyObject
*swig_obj
[1] ;
8060 if (!args
) SWIG_fail
;
8062 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxToolTip
, 0 | 0 );
8063 if (!SWIG_IsOK(res1
)) {
8064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ToolTip_GetTip" "', expected argument " "1"" of type '" "wxToolTip *""'");
8066 arg1
= reinterpret_cast< wxToolTip
* >(argp1
);
8068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8069 result
= (arg1
)->GetTip();
8070 wxPyEndAllowThreads(__tstate
);
8071 if (PyErr_Occurred()) SWIG_fail
;
8075 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8077 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8086 SWIGINTERN PyObject
*_wrap_ToolTip_GetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8087 PyObject
*resultobj
= 0;
8088 wxToolTip
*arg1
= (wxToolTip
*) 0 ;
8089 wxWindow
*result
= 0 ;
8092 PyObject
*swig_obj
[1] ;
8094 if (!args
) SWIG_fail
;
8096 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxToolTip
, 0 | 0 );
8097 if (!SWIG_IsOK(res1
)) {
8098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ToolTip_GetWindow" "', expected argument " "1"" of type '" "wxToolTip *""'");
8100 arg1
= reinterpret_cast< wxToolTip
* >(argp1
);
8102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8103 result
= (wxWindow
*)(arg1
)->GetWindow();
8104 wxPyEndAllowThreads(__tstate
);
8105 if (PyErr_Occurred()) SWIG_fail
;
8108 resultobj
= wxPyMake_wxObject(result
, 0);
8116 SWIGINTERN PyObject
*_wrap_ToolTip_Enable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8117 PyObject
*resultobj
= 0;
8121 PyObject
* obj0
= 0 ;
8122 char * kwnames
[] = {
8123 (char *) "flag", NULL
8126 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolTip_Enable",kwnames
,&obj0
)) SWIG_fail
;
8127 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
8128 if (!SWIG_IsOK(ecode1
)) {
8129 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "ToolTip_Enable" "', expected argument " "1"" of type '" "bool""'");
8131 arg1
= static_cast< bool >(val1
);
8133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8134 wxToolTip::Enable(arg1
);
8135 wxPyEndAllowThreads(__tstate
);
8136 if (PyErr_Occurred()) SWIG_fail
;
8138 resultobj
= SWIG_Py_Void();
8145 SWIGINTERN PyObject
*_wrap_ToolTip_SetDelay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8146 PyObject
*resultobj
= 0;
8150 PyObject
* obj0
= 0 ;
8151 char * kwnames
[] = {
8152 (char *) "milliseconds", NULL
8155 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolTip_SetDelay",kwnames
,&obj0
)) SWIG_fail
;
8156 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
8157 if (!SWIG_IsOK(ecode1
)) {
8158 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "ToolTip_SetDelay" "', expected argument " "1"" of type '" "long""'");
8160 arg1
= static_cast< long >(val1
);
8162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8163 wxToolTip::SetDelay(arg1
);
8164 wxPyEndAllowThreads(__tstate
);
8165 if (PyErr_Occurred()) SWIG_fail
;
8167 resultobj
= SWIG_Py_Void();
8174 SWIGINTERN PyObject
*ToolTip_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8176 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8177 SWIG_TypeNewClientData(SWIGTYPE_p_wxToolTip
, SWIG_NewClientData(obj
));
8178 return SWIG_Py_Void();
8181 SWIGINTERN PyObject
*ToolTip_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8182 return SWIG_Python_InitShadowInstance(args
);
8185 SWIGINTERN PyObject
*_wrap_new_Caret(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8186 PyObject
*resultobj
= 0;
8187 wxWindow
*arg1
= (wxWindow
*) 0 ;
8189 wxCaret
*result
= 0 ;
8193 PyObject
* obj0
= 0 ;
8194 PyObject
* obj1
= 0 ;
8195 char * kwnames
[] = {
8196 (char *) "window",(char *) "size", NULL
8199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_Caret",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8201 if (!SWIG_IsOK(res1
)) {
8202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Caret" "', expected argument " "1"" of type '" "wxWindow *""'");
8204 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
8207 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
8210 if (!wxPyCheckForApp()) SWIG_fail
;
8211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8212 result
= (wxCaret
*)new wxCaret(arg1
,(wxSize
const &)*arg2
);
8213 wxPyEndAllowThreads(__tstate
);
8214 if (PyErr_Occurred()) SWIG_fail
;
8216 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCaret
, SWIG_POINTER_NEW
| 0 );
8223 SWIGINTERN PyObject
*_wrap_delete_Caret(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8224 PyObject
*resultobj
= 0;
8225 wxCaret
*arg1
= (wxCaret
*) 0 ;
8228 PyObject
*swig_obj
[1] ;
8230 if (!args
) SWIG_fail
;
8232 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, SWIG_POINTER_DISOWN
| 0 );
8233 if (!SWIG_IsOK(res1
)) {
8234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Caret" "', expected argument " "1"" of type '" "wxCaret *""'");
8236 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8241 wxPyEndAllowThreads(__tstate
);
8242 if (PyErr_Occurred()) SWIG_fail
;
8244 resultobj
= SWIG_Py_Void();
8251 SWIGINTERN PyObject
*_wrap_Caret_Destroy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8252 PyObject
*resultobj
= 0;
8253 wxCaret
*arg1
= (wxCaret
*) 0 ;
8256 PyObject
*swig_obj
[1] ;
8258 if (!args
) SWIG_fail
;
8260 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8261 if (!SWIG_IsOK(res1
)) {
8262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_Destroy" "', expected argument " "1"" of type '" "wxCaret *""'");
8264 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8267 wxCaret_Destroy(arg1
);
8268 wxPyEndAllowThreads(__tstate
);
8269 if (PyErr_Occurred()) SWIG_fail
;
8271 resultobj
= SWIG_Py_Void();
8278 SWIGINTERN PyObject
*_wrap_Caret_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8279 PyObject
*resultobj
= 0;
8280 wxCaret
*arg1
= (wxCaret
*) 0 ;
8284 PyObject
*swig_obj
[1] ;
8286 if (!args
) SWIG_fail
;
8288 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8289 if (!SWIG_IsOK(res1
)) {
8290 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_IsOk" "', expected argument " "1"" of type '" "wxCaret *""'");
8292 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8295 result
= (bool)(arg1
)->IsOk();
8296 wxPyEndAllowThreads(__tstate
);
8297 if (PyErr_Occurred()) SWIG_fail
;
8300 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8308 SWIGINTERN PyObject
*_wrap_Caret_IsVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8309 PyObject
*resultobj
= 0;
8310 wxCaret
*arg1
= (wxCaret
*) 0 ;
8314 PyObject
*swig_obj
[1] ;
8316 if (!args
) SWIG_fail
;
8318 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8319 if (!SWIG_IsOK(res1
)) {
8320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_IsVisible" "', expected argument " "1"" of type '" "wxCaret *""'");
8322 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8325 result
= (bool)(arg1
)->IsVisible();
8326 wxPyEndAllowThreads(__tstate
);
8327 if (PyErr_Occurred()) SWIG_fail
;
8330 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8338 SWIGINTERN PyObject
*_wrap_Caret_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8339 PyObject
*resultobj
= 0;
8340 wxCaret
*arg1
= (wxCaret
*) 0 ;
8344 PyObject
*swig_obj
[1] ;
8346 if (!args
) SWIG_fail
;
8348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8349 if (!SWIG_IsOK(res1
)) {
8350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_GetPosition" "', expected argument " "1"" of type '" "wxCaret *""'");
8352 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8355 result
= (arg1
)->GetPosition();
8356 wxPyEndAllowThreads(__tstate
);
8357 if (PyErr_Occurred()) SWIG_fail
;
8359 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
8366 SWIGINTERN PyObject
*_wrap_Caret_GetPositionTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8367 PyObject
*resultobj
= 0;
8368 wxCaret
*arg1
= (wxCaret
*) 0 ;
8369 int *arg2
= (int *) 0 ;
8370 int *arg3
= (int *) 0 ;
8374 int res2
= SWIG_TMPOBJ
;
8376 int res3
= SWIG_TMPOBJ
;
8377 PyObject
*swig_obj
[1] ;
8381 if (!args
) SWIG_fail
;
8383 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8384 if (!SWIG_IsOK(res1
)) {
8385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_GetPositionTuple" "', expected argument " "1"" of type '" "wxCaret *""'");
8387 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8390 (arg1
)->GetPosition(arg2
,arg3
);
8391 wxPyEndAllowThreads(__tstate
);
8392 if (PyErr_Occurred()) SWIG_fail
;
8394 resultobj
= SWIG_Py_Void();
8395 if (SWIG_IsTmpObj(res2
)) {
8396 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
8398 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
8399 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
8401 if (SWIG_IsTmpObj(res3
)) {
8402 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
8404 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
8405 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
8413 SWIGINTERN PyObject
*_wrap_Caret_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8414 PyObject
*resultobj
= 0;
8415 wxCaret
*arg1
= (wxCaret
*) 0 ;
8419 PyObject
*swig_obj
[1] ;
8421 if (!args
) SWIG_fail
;
8423 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8424 if (!SWIG_IsOK(res1
)) {
8425 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_GetSize" "', expected argument " "1"" of type '" "wxCaret *""'");
8427 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8429 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8430 result
= (arg1
)->GetSize();
8431 wxPyEndAllowThreads(__tstate
);
8432 if (PyErr_Occurred()) SWIG_fail
;
8434 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
8441 SWIGINTERN PyObject
*_wrap_Caret_GetSizeTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8442 PyObject
*resultobj
= 0;
8443 wxCaret
*arg1
= (wxCaret
*) 0 ;
8444 int *arg2
= (int *) 0 ;
8445 int *arg3
= (int *) 0 ;
8449 int res2
= SWIG_TMPOBJ
;
8451 int res3
= SWIG_TMPOBJ
;
8452 PyObject
*swig_obj
[1] ;
8456 if (!args
) SWIG_fail
;
8458 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8459 if (!SWIG_IsOK(res1
)) {
8460 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_GetSizeTuple" "', expected argument " "1"" of type '" "wxCaret *""'");
8462 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8465 (arg1
)->GetSize(arg2
,arg3
);
8466 wxPyEndAllowThreads(__tstate
);
8467 if (PyErr_Occurred()) SWIG_fail
;
8469 resultobj
= SWIG_Py_Void();
8470 if (SWIG_IsTmpObj(res2
)) {
8471 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
8473 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
8474 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
8476 if (SWIG_IsTmpObj(res3
)) {
8477 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
8479 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
8480 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
8488 SWIGINTERN PyObject
*_wrap_Caret_GetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8489 PyObject
*resultobj
= 0;
8490 wxCaret
*arg1
= (wxCaret
*) 0 ;
8491 wxWindow
*result
= 0 ;
8494 PyObject
*swig_obj
[1] ;
8496 if (!args
) SWIG_fail
;
8498 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8499 if (!SWIG_IsOK(res1
)) {
8500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_GetWindow" "', expected argument " "1"" of type '" "wxCaret *""'");
8502 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8505 result
= (wxWindow
*)(arg1
)->GetWindow();
8506 wxPyEndAllowThreads(__tstate
);
8507 if (PyErr_Occurred()) SWIG_fail
;
8510 resultobj
= wxPyMake_wxObject(result
, 0);
8518 SWIGINTERN PyObject
*_wrap_Caret_MoveXY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8519 PyObject
*resultobj
= 0;
8520 wxCaret
*arg1
= (wxCaret
*) 0 ;
8529 PyObject
* obj0
= 0 ;
8530 PyObject
* obj1
= 0 ;
8531 PyObject
* obj2
= 0 ;
8532 char * kwnames
[] = {
8533 (char *) "self",(char *) "x",(char *) "y", NULL
8536 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Caret_MoveXY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8537 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8538 if (!SWIG_IsOK(res1
)) {
8539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_MoveXY" "', expected argument " "1"" of type '" "wxCaret *""'");
8541 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8542 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8543 if (!SWIG_IsOK(ecode2
)) {
8544 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Caret_MoveXY" "', expected argument " "2"" of type '" "int""'");
8546 arg2
= static_cast< int >(val2
);
8547 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8548 if (!SWIG_IsOK(ecode3
)) {
8549 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Caret_MoveXY" "', expected argument " "3"" of type '" "int""'");
8551 arg3
= static_cast< int >(val3
);
8553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8554 (arg1
)->Move(arg2
,arg3
);
8555 wxPyEndAllowThreads(__tstate
);
8556 if (PyErr_Occurred()) SWIG_fail
;
8558 resultobj
= SWIG_Py_Void();
8565 SWIGINTERN PyObject
*_wrap_Caret_Move(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8566 PyObject
*resultobj
= 0;
8567 wxCaret
*arg1
= (wxCaret
*) 0 ;
8572 PyObject
* obj0
= 0 ;
8573 PyObject
* obj1
= 0 ;
8574 char * kwnames
[] = {
8575 (char *) "self",(char *) "pt", NULL
8578 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Caret_Move",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8579 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8580 if (!SWIG_IsOK(res1
)) {
8581 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_Move" "', expected argument " "1"" of type '" "wxCaret *""'");
8583 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8586 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
8589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8590 (arg1
)->Move((wxPoint
const &)*arg2
);
8591 wxPyEndAllowThreads(__tstate
);
8592 if (PyErr_Occurred()) SWIG_fail
;
8594 resultobj
= SWIG_Py_Void();
8601 SWIGINTERN PyObject
*_wrap_Caret_SetSizeWH(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8602 PyObject
*resultobj
= 0;
8603 wxCaret
*arg1
= (wxCaret
*) 0 ;
8612 PyObject
* obj0
= 0 ;
8613 PyObject
* obj1
= 0 ;
8614 PyObject
* obj2
= 0 ;
8615 char * kwnames
[] = {
8616 (char *) "self",(char *) "width",(char *) "height", NULL
8619 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Caret_SetSizeWH",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8620 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8621 if (!SWIG_IsOK(res1
)) {
8622 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_SetSizeWH" "', expected argument " "1"" of type '" "wxCaret *""'");
8624 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8625 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8626 if (!SWIG_IsOK(ecode2
)) {
8627 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Caret_SetSizeWH" "', expected argument " "2"" of type '" "int""'");
8629 arg2
= static_cast< int >(val2
);
8630 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8631 if (!SWIG_IsOK(ecode3
)) {
8632 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Caret_SetSizeWH" "', expected argument " "3"" of type '" "int""'");
8634 arg3
= static_cast< int >(val3
);
8636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8637 (arg1
)->SetSize(arg2
,arg3
);
8638 wxPyEndAllowThreads(__tstate
);
8639 if (PyErr_Occurred()) SWIG_fail
;
8641 resultobj
= SWIG_Py_Void();
8648 SWIGINTERN PyObject
*_wrap_Caret_SetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8649 PyObject
*resultobj
= 0;
8650 wxCaret
*arg1
= (wxCaret
*) 0 ;
8655 PyObject
* obj0
= 0 ;
8656 PyObject
* obj1
= 0 ;
8657 char * kwnames
[] = {
8658 (char *) "self",(char *) "size", NULL
8661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Caret_SetSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8663 if (!SWIG_IsOK(res1
)) {
8664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_SetSize" "', expected argument " "1"" of type '" "wxCaret *""'");
8666 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8669 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
8672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8673 (arg1
)->SetSize((wxSize
const &)*arg2
);
8674 wxPyEndAllowThreads(__tstate
);
8675 if (PyErr_Occurred()) SWIG_fail
;
8677 resultobj
= SWIG_Py_Void();
8684 SWIGINTERN PyObject
*_wrap_Caret_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8685 PyObject
*resultobj
= 0;
8686 wxCaret
*arg1
= (wxCaret
*) 0 ;
8687 int arg2
= (int) true ;
8692 PyObject
* obj0
= 0 ;
8693 PyObject
* obj1
= 0 ;
8694 char * kwnames
[] = {
8695 (char *) "self",(char *) "show", NULL
8698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Caret_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8700 if (!SWIG_IsOK(res1
)) {
8701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_Show" "', expected argument " "1"" of type '" "wxCaret *""'");
8703 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8705 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8706 if (!SWIG_IsOK(ecode2
)) {
8707 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Caret_Show" "', expected argument " "2"" of type '" "int""'");
8709 arg2
= static_cast< int >(val2
);
8712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8714 wxPyEndAllowThreads(__tstate
);
8715 if (PyErr_Occurred()) SWIG_fail
;
8717 resultobj
= SWIG_Py_Void();
8724 SWIGINTERN PyObject
*_wrap_Caret_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8725 PyObject
*resultobj
= 0;
8726 wxCaret
*arg1
= (wxCaret
*) 0 ;
8729 PyObject
*swig_obj
[1] ;
8731 if (!args
) SWIG_fail
;
8733 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCaret
, 0 | 0 );
8734 if (!SWIG_IsOK(res1
)) {
8735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Caret_Hide" "', expected argument " "1"" of type '" "wxCaret *""'");
8737 arg1
= reinterpret_cast< wxCaret
* >(argp1
);
8739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8741 wxPyEndAllowThreads(__tstate
);
8742 if (PyErr_Occurred()) SWIG_fail
;
8744 resultobj
= SWIG_Py_Void();
8751 SWIGINTERN PyObject
*_wrap_Caret_GetBlinkTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8752 PyObject
*resultobj
= 0;
8755 if (!SWIG_Python_UnpackTuple(args
,"Caret_GetBlinkTime",0,0,0)) SWIG_fail
;
8757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8758 result
= (int)wxCaret::GetBlinkTime();
8759 wxPyEndAllowThreads(__tstate
);
8760 if (PyErr_Occurred()) SWIG_fail
;
8762 resultobj
= SWIG_From_int(static_cast< int >(result
));
8769 SWIGINTERN PyObject
*_wrap_Caret_SetBlinkTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8770 PyObject
*resultobj
= 0;
8774 PyObject
* obj0
= 0 ;
8775 char * kwnames
[] = {
8776 (char *) "milliseconds", NULL
8779 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Caret_SetBlinkTime",kwnames
,&obj0
)) SWIG_fail
;
8780 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8781 if (!SWIG_IsOK(ecode1
)) {
8782 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Caret_SetBlinkTime" "', expected argument " "1"" of type '" "int""'");
8784 arg1
= static_cast< int >(val1
);
8786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8787 wxCaret::SetBlinkTime(arg1
);
8788 wxPyEndAllowThreads(__tstate
);
8789 if (PyErr_Occurred()) SWIG_fail
;
8791 resultobj
= SWIG_Py_Void();
8798 SWIGINTERN PyObject
*Caret_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8800 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8801 SWIG_TypeNewClientData(SWIGTYPE_p_wxCaret
, SWIG_NewClientData(obj
));
8802 return SWIG_Py_Void();
8805 SWIGINTERN PyObject
*Caret_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8806 return SWIG_Python_InitShadowInstance(args
);
8809 SWIGINTERN PyObject
*_wrap_new_BusyCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8810 PyObject
*resultobj
= 0;
8811 wxCursor
*arg1
= (wxCursor
*) wxHOURGLASS_CURSOR
;
8812 wxBusyCursor
*result
= 0 ;
8815 PyObject
* obj0
= 0 ;
8816 char * kwnames
[] = {
8817 (char *) "cursor", NULL
8820 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_BusyCursor",kwnames
,&obj0
)) SWIG_fail
;
8822 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCursor
, 0 | 0 );
8823 if (!SWIG_IsOK(res1
)) {
8824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BusyCursor" "', expected argument " "1"" of type '" "wxCursor *""'");
8826 arg1
= reinterpret_cast< wxCursor
* >(argp1
);
8829 if (!wxPyCheckForApp()) SWIG_fail
;
8830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8831 result
= (wxBusyCursor
*)new wxBusyCursor(arg1
);
8832 wxPyEndAllowThreads(__tstate
);
8833 if (PyErr_Occurred()) SWIG_fail
;
8835 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBusyCursor
, SWIG_POINTER_NEW
| 0 );
8842 SWIGINTERN PyObject
*_wrap_delete_BusyCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8843 PyObject
*resultobj
= 0;
8844 wxBusyCursor
*arg1
= (wxBusyCursor
*) 0 ;
8847 PyObject
*swig_obj
[1] ;
8849 if (!args
) SWIG_fail
;
8851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBusyCursor
, SWIG_POINTER_DISOWN
| 0 );
8852 if (!SWIG_IsOK(res1
)) {
8853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_BusyCursor" "', expected argument " "1"" of type '" "wxBusyCursor *""'");
8855 arg1
= reinterpret_cast< wxBusyCursor
* >(argp1
);
8857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8860 wxPyEndAllowThreads(__tstate
);
8861 if (PyErr_Occurred()) SWIG_fail
;
8863 resultobj
= SWIG_Py_Void();
8870 SWIGINTERN PyObject
*BusyCursor_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8872 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8873 SWIG_TypeNewClientData(SWIGTYPE_p_wxBusyCursor
, SWIG_NewClientData(obj
));
8874 return SWIG_Py_Void();
8877 SWIGINTERN PyObject
*BusyCursor_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8878 return SWIG_Python_InitShadowInstance(args
);
8881 SWIGINTERN PyObject
*_wrap_new_WindowDisabler(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8882 PyObject
*resultobj
= 0;
8883 wxWindow
*arg1
= (wxWindow
*) NULL
;
8884 wxWindowDisabler
*result
= 0 ;
8887 PyObject
* obj0
= 0 ;
8888 char * kwnames
[] = {
8889 (char *) "winToSkip", NULL
8892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_WindowDisabler",kwnames
,&obj0
)) SWIG_fail
;
8894 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8895 if (!SWIG_IsOK(res1
)) {
8896 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_WindowDisabler" "', expected argument " "1"" of type '" "wxWindow *""'");
8898 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
8901 if (!wxPyCheckForApp()) SWIG_fail
;
8902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8903 result
= (wxWindowDisabler
*)new wxWindowDisabler(arg1
);
8904 wxPyEndAllowThreads(__tstate
);
8905 if (PyErr_Occurred()) SWIG_fail
;
8907 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxWindowDisabler
, SWIG_POINTER_NEW
| 0 );
8914 SWIGINTERN PyObject
*_wrap_delete_WindowDisabler(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8915 PyObject
*resultobj
= 0;
8916 wxWindowDisabler
*arg1
= (wxWindowDisabler
*) 0 ;
8919 PyObject
*swig_obj
[1] ;
8921 if (!args
) SWIG_fail
;
8923 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxWindowDisabler
, SWIG_POINTER_DISOWN
| 0 );
8924 if (!SWIG_IsOK(res1
)) {
8925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_WindowDisabler" "', expected argument " "1"" of type '" "wxWindowDisabler *""'");
8927 arg1
= reinterpret_cast< wxWindowDisabler
* >(argp1
);
8929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8932 wxPyEndAllowThreads(__tstate
);
8933 if (PyErr_Occurred()) SWIG_fail
;
8935 resultobj
= SWIG_Py_Void();
8942 SWIGINTERN PyObject
*WindowDisabler_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8944 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8945 SWIG_TypeNewClientData(SWIGTYPE_p_wxWindowDisabler
, SWIG_NewClientData(obj
));
8946 return SWIG_Py_Void();
8949 SWIGINTERN PyObject
*WindowDisabler_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8950 return SWIG_Python_InitShadowInstance(args
);
8953 SWIGINTERN PyObject
*_wrap_new_BusyInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8954 PyObject
*resultobj
= 0;
8955 wxString
*arg1
= 0 ;
8956 wxBusyInfo
*result
= 0 ;
8957 bool temp1
= false ;
8958 PyObject
* obj0
= 0 ;
8959 char * kwnames
[] = {
8960 (char *) "message", NULL
8963 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_BusyInfo",kwnames
,&obj0
)) SWIG_fail
;
8965 arg1
= wxString_in_helper(obj0
);
8966 if (arg1
== NULL
) SWIG_fail
;
8970 if (!wxPyCheckForApp()) SWIG_fail
;
8971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8972 result
= (wxBusyInfo
*)new wxBusyInfo((wxString
const &)*arg1
);
8973 wxPyEndAllowThreads(__tstate
);
8974 if (PyErr_Occurred()) SWIG_fail
;
8976 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBusyInfo
, SWIG_POINTER_NEW
| 0 );
8991 SWIGINTERN PyObject
*_wrap_delete_BusyInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8992 PyObject
*resultobj
= 0;
8993 wxBusyInfo
*arg1
= (wxBusyInfo
*) 0 ;
8996 PyObject
*swig_obj
[1] ;
8998 if (!args
) SWIG_fail
;
9000 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBusyInfo
, SWIG_POINTER_DISOWN
| 0 );
9001 if (!SWIG_IsOK(res1
)) {
9002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_BusyInfo" "', expected argument " "1"" of type '" "wxBusyInfo *""'");
9004 arg1
= reinterpret_cast< wxBusyInfo
* >(argp1
);
9006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9009 wxPyEndAllowThreads(__tstate
);
9010 if (PyErr_Occurred()) SWIG_fail
;
9012 resultobj
= SWIG_Py_Void();
9019 SWIGINTERN PyObject
*BusyInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9021 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9022 SWIG_TypeNewClientData(SWIGTYPE_p_wxBusyInfo
, SWIG_NewClientData(obj
));
9023 return SWIG_Py_Void();
9026 SWIGINTERN PyObject
*BusyInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9027 return SWIG_Python_InitShadowInstance(args
);
9030 SWIGINTERN PyObject
*_wrap_new_StopWatch(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9031 PyObject
*resultobj
= 0;
9032 wxStopWatch
*result
= 0 ;
9034 if (!SWIG_Python_UnpackTuple(args
,"new_StopWatch",0,0,0)) SWIG_fail
;
9036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9037 result
= (wxStopWatch
*)new wxStopWatch();
9038 wxPyEndAllowThreads(__tstate
);
9039 if (PyErr_Occurred()) SWIG_fail
;
9041 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStopWatch
, SWIG_POINTER_NEW
| 0 );
9048 SWIGINTERN PyObject
*_wrap_StopWatch_Start(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9049 PyObject
*resultobj
= 0;
9050 wxStopWatch
*arg1
= (wxStopWatch
*) 0 ;
9051 long arg2
= (long) 0 ;
9056 PyObject
* obj0
= 0 ;
9057 PyObject
* obj1
= 0 ;
9058 char * kwnames
[] = {
9059 (char *) "self",(char *) "t0", NULL
9062 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StopWatch_Start",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9063 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStopWatch
, 0 | 0 );
9064 if (!SWIG_IsOK(res1
)) {
9065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StopWatch_Start" "', expected argument " "1"" of type '" "wxStopWatch *""'");
9067 arg1
= reinterpret_cast< wxStopWatch
* >(argp1
);
9069 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
9070 if (!SWIG_IsOK(ecode2
)) {
9071 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StopWatch_Start" "', expected argument " "2"" of type '" "long""'");
9073 arg2
= static_cast< long >(val2
);
9076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9077 (arg1
)->Start(arg2
);
9078 wxPyEndAllowThreads(__tstate
);
9079 if (PyErr_Occurred()) SWIG_fail
;
9081 resultobj
= SWIG_Py_Void();
9088 SWIGINTERN PyObject
*_wrap_StopWatch_Pause(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9089 PyObject
*resultobj
= 0;
9090 wxStopWatch
*arg1
= (wxStopWatch
*) 0 ;
9093 PyObject
*swig_obj
[1] ;
9095 if (!args
) SWIG_fail
;
9097 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStopWatch
, 0 | 0 );
9098 if (!SWIG_IsOK(res1
)) {
9099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StopWatch_Pause" "', expected argument " "1"" of type '" "wxStopWatch *""'");
9101 arg1
= reinterpret_cast< wxStopWatch
* >(argp1
);
9103 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9105 wxPyEndAllowThreads(__tstate
);
9106 if (PyErr_Occurred()) SWIG_fail
;
9108 resultobj
= SWIG_Py_Void();
9115 SWIGINTERN PyObject
*_wrap_StopWatch_Resume(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9116 PyObject
*resultobj
= 0;
9117 wxStopWatch
*arg1
= (wxStopWatch
*) 0 ;
9120 PyObject
*swig_obj
[1] ;
9122 if (!args
) SWIG_fail
;
9124 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStopWatch
, 0 | 0 );
9125 if (!SWIG_IsOK(res1
)) {
9126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StopWatch_Resume" "', expected argument " "1"" of type '" "wxStopWatch *""'");
9128 arg1
= reinterpret_cast< wxStopWatch
* >(argp1
);
9130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9132 wxPyEndAllowThreads(__tstate
);
9133 if (PyErr_Occurred()) SWIG_fail
;
9135 resultobj
= SWIG_Py_Void();
9142 SWIGINTERN PyObject
*_wrap_StopWatch_Time(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9143 PyObject
*resultobj
= 0;
9144 wxStopWatch
*arg1
= (wxStopWatch
*) 0 ;
9148 PyObject
*swig_obj
[1] ;
9150 if (!args
) SWIG_fail
;
9152 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStopWatch
, 0 | 0 );
9153 if (!SWIG_IsOK(res1
)) {
9154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StopWatch_Time" "', expected argument " "1"" of type '" "wxStopWatch const *""'");
9156 arg1
= reinterpret_cast< wxStopWatch
* >(argp1
);
9158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9159 result
= (long)((wxStopWatch
const *)arg1
)->Time();
9160 wxPyEndAllowThreads(__tstate
);
9161 if (PyErr_Occurred()) SWIG_fail
;
9163 resultobj
= SWIG_From_long(static_cast< long >(result
));
9170 SWIGINTERN PyObject
*StopWatch_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9172 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9173 SWIG_TypeNewClientData(SWIGTYPE_p_wxStopWatch
, SWIG_NewClientData(obj
));
9174 return SWIG_Py_Void();
9177 SWIGINTERN PyObject
*StopWatch_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9178 return SWIG_Python_InitShadowInstance(args
);
9181 SWIGINTERN PyObject
*_wrap_new_FileHistory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9182 PyObject
*resultobj
= 0;
9183 int arg1
= (int) 9 ;
9184 int arg2
= (int) wxID_FILE1
;
9185 wxFileHistory
*result
= 0 ;
9190 PyObject
* obj0
= 0 ;
9191 PyObject
* obj1
= 0 ;
9192 char * kwnames
[] = {
9193 (char *) "maxFiles",(char *) "idBase", NULL
9196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FileHistory",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9198 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
9199 if (!SWIG_IsOK(ecode1
)) {
9200 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FileHistory" "', expected argument " "1"" of type '" "int""'");
9202 arg1
= static_cast< int >(val1
);
9205 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9206 if (!SWIG_IsOK(ecode2
)) {
9207 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FileHistory" "', expected argument " "2"" of type '" "int""'");
9209 arg2
= static_cast< int >(val2
);
9212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9213 result
= (wxFileHistory
*)new wxFileHistory(arg1
,arg2
);
9214 wxPyEndAllowThreads(__tstate
);
9215 if (PyErr_Occurred()) SWIG_fail
;
9217 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileHistory
, SWIG_POINTER_NEW
| 0 );
9224 SWIGINTERN PyObject
*_wrap_delete_FileHistory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9225 PyObject
*resultobj
= 0;
9226 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9229 PyObject
*swig_obj
[1] ;
9231 if (!args
) SWIG_fail
;
9233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileHistory
, SWIG_POINTER_DISOWN
| 0 );
9234 if (!SWIG_IsOK(res1
)) {
9235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FileHistory" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9237 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9242 wxPyEndAllowThreads(__tstate
);
9243 if (PyErr_Occurred()) SWIG_fail
;
9245 resultobj
= SWIG_Py_Void();
9252 SWIGINTERN PyObject
*_wrap_FileHistory_AddFileToHistory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9253 PyObject
*resultobj
= 0;
9254 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9255 wxString
*arg2
= 0 ;
9258 bool temp2
= false ;
9259 PyObject
* obj0
= 0 ;
9260 PyObject
* obj1
= 0 ;
9261 char * kwnames
[] = {
9262 (char *) "self",(char *) "file", NULL
9265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_AddFileToHistory",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9267 if (!SWIG_IsOK(res1
)) {
9268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_AddFileToHistory" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9270 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9272 arg2
= wxString_in_helper(obj1
);
9273 if (arg2
== NULL
) SWIG_fail
;
9277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9278 (arg1
)->AddFileToHistory((wxString
const &)*arg2
);
9279 wxPyEndAllowThreads(__tstate
);
9280 if (PyErr_Occurred()) SWIG_fail
;
9282 resultobj
= SWIG_Py_Void();
9297 SWIGINTERN PyObject
*_wrap_FileHistory_RemoveFileFromHistory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9298 PyObject
*resultobj
= 0;
9299 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9305 PyObject
* obj0
= 0 ;
9306 PyObject
* obj1
= 0 ;
9307 char * kwnames
[] = {
9308 (char *) "self",(char *) "i", NULL
9311 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_RemoveFileFromHistory",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9312 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9313 if (!SWIG_IsOK(res1
)) {
9314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_RemoveFileFromHistory" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9316 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9317 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9318 if (!SWIG_IsOK(ecode2
)) {
9319 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileHistory_RemoveFileFromHistory" "', expected argument " "2"" of type '" "int""'");
9321 arg2
= static_cast< int >(val2
);
9323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9324 (arg1
)->RemoveFileFromHistory(arg2
);
9325 wxPyEndAllowThreads(__tstate
);
9326 if (PyErr_Occurred()) SWIG_fail
;
9328 resultobj
= SWIG_Py_Void();
9335 SWIGINTERN PyObject
*_wrap_FileHistory_GetMaxFiles(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9336 PyObject
*resultobj
= 0;
9337 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9341 PyObject
*swig_obj
[1] ;
9343 if (!args
) SWIG_fail
;
9345 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9346 if (!SWIG_IsOK(res1
)) {
9347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_GetMaxFiles" "', expected argument " "1"" of type '" "wxFileHistory const *""'");
9349 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9351 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9352 result
= (int)((wxFileHistory
const *)arg1
)->GetMaxFiles();
9353 wxPyEndAllowThreads(__tstate
);
9354 if (PyErr_Occurred()) SWIG_fail
;
9356 resultobj
= SWIG_From_int(static_cast< int >(result
));
9363 SWIGINTERN PyObject
*_wrap_FileHistory_UseMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9364 PyObject
*resultobj
= 0;
9365 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9366 wxMenu
*arg2
= (wxMenu
*) 0 ;
9371 PyObject
* obj0
= 0 ;
9372 PyObject
* obj1
= 0 ;
9373 char * kwnames
[] = {
9374 (char *) "self",(char *) "menu", NULL
9377 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_UseMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9378 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9379 if (!SWIG_IsOK(res1
)) {
9380 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_UseMenu" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9382 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9383 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
9384 if (!SWIG_IsOK(res2
)) {
9385 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FileHistory_UseMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
9387 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
9389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9390 (arg1
)->UseMenu(arg2
);
9391 wxPyEndAllowThreads(__tstate
);
9392 if (PyErr_Occurred()) SWIG_fail
;
9394 resultobj
= SWIG_Py_Void();
9401 SWIGINTERN PyObject
*_wrap_FileHistory_RemoveMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9402 PyObject
*resultobj
= 0;
9403 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9404 wxMenu
*arg2
= (wxMenu
*) 0 ;
9409 PyObject
* obj0
= 0 ;
9410 PyObject
* obj1
= 0 ;
9411 char * kwnames
[] = {
9412 (char *) "self",(char *) "menu", NULL
9415 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_RemoveMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9416 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9417 if (!SWIG_IsOK(res1
)) {
9418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_RemoveMenu" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9420 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9421 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
9422 if (!SWIG_IsOK(res2
)) {
9423 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FileHistory_RemoveMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
9425 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
9427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9428 (arg1
)->RemoveMenu(arg2
);
9429 wxPyEndAllowThreads(__tstate
);
9430 if (PyErr_Occurred()) SWIG_fail
;
9432 resultobj
= SWIG_Py_Void();
9439 SWIGINTERN PyObject
*_wrap_FileHistory_Load(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9440 PyObject
*resultobj
= 0;
9441 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9442 wxConfigBase
*arg2
= 0 ;
9447 PyObject
* obj0
= 0 ;
9448 PyObject
* obj1
= 0 ;
9449 char * kwnames
[] = {
9450 (char *) "self",(char *) "config", NULL
9453 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_Load",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9454 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9455 if (!SWIG_IsOK(res1
)) {
9456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_Load" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9458 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9459 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxConfigBase
, 0 );
9460 if (!SWIG_IsOK(res2
)) {
9461 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FileHistory_Load" "', expected argument " "2"" of type '" "wxConfigBase &""'");
9464 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FileHistory_Load" "', expected argument " "2"" of type '" "wxConfigBase &""'");
9466 arg2
= reinterpret_cast< wxConfigBase
* >(argp2
);
9468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9469 (arg1
)->Load(*arg2
);
9470 wxPyEndAllowThreads(__tstate
);
9471 if (PyErr_Occurred()) SWIG_fail
;
9473 resultobj
= SWIG_Py_Void();
9480 SWIGINTERN PyObject
*_wrap_FileHistory_Save(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9481 PyObject
*resultobj
= 0;
9482 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9483 wxConfigBase
*arg2
= 0 ;
9488 PyObject
* obj0
= 0 ;
9489 PyObject
* obj1
= 0 ;
9490 char * kwnames
[] = {
9491 (char *) "self",(char *) "config", NULL
9494 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_Save",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9495 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9496 if (!SWIG_IsOK(res1
)) {
9497 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_Save" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9499 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9500 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxConfigBase
, 0 );
9501 if (!SWIG_IsOK(res2
)) {
9502 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FileHistory_Save" "', expected argument " "2"" of type '" "wxConfigBase &""'");
9505 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FileHistory_Save" "', expected argument " "2"" of type '" "wxConfigBase &""'");
9507 arg2
= reinterpret_cast< wxConfigBase
* >(argp2
);
9509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9510 (arg1
)->Save(*arg2
);
9511 wxPyEndAllowThreads(__tstate
);
9512 if (PyErr_Occurred()) SWIG_fail
;
9514 resultobj
= SWIG_Py_Void();
9521 SWIGINTERN PyObject
*_wrap_FileHistory_AddFilesToMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9522 PyObject
*resultobj
= 0;
9523 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9526 PyObject
*swig_obj
[1] ;
9528 if (!args
) SWIG_fail
;
9530 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9531 if (!SWIG_IsOK(res1
)) {
9532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_AddFilesToMenu" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9534 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9537 (arg1
)->AddFilesToMenu();
9538 wxPyEndAllowThreads(__tstate
);
9539 if (PyErr_Occurred()) SWIG_fail
;
9541 resultobj
= SWIG_Py_Void();
9548 SWIGINTERN PyObject
*_wrap_FileHistory_AddFilesToThisMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9549 PyObject
*resultobj
= 0;
9550 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9551 wxMenu
*arg2
= (wxMenu
*) 0 ;
9556 PyObject
* obj0
= 0 ;
9557 PyObject
* obj1
= 0 ;
9558 char * kwnames
[] = {
9559 (char *) "self",(char *) "menu", NULL
9562 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_AddFilesToThisMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9563 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9564 if (!SWIG_IsOK(res1
)) {
9565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_AddFilesToThisMenu" "', expected argument " "1"" of type '" "wxFileHistory *""'");
9567 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9568 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
9569 if (!SWIG_IsOK(res2
)) {
9570 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FileHistory_AddFilesToThisMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
9572 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
9574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9575 (arg1
)->AddFilesToMenu(arg2
);
9576 wxPyEndAllowThreads(__tstate
);
9577 if (PyErr_Occurred()) SWIG_fail
;
9579 resultobj
= SWIG_Py_Void();
9586 SWIGINTERN PyObject
*_wrap_FileHistory_GetHistoryFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9587 PyObject
*resultobj
= 0;
9588 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9595 PyObject
* obj0
= 0 ;
9596 PyObject
* obj1
= 0 ;
9597 char * kwnames
[] = {
9598 (char *) "self",(char *) "i", NULL
9601 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileHistory_GetHistoryFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9602 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9603 if (!SWIG_IsOK(res1
)) {
9604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_GetHistoryFile" "', expected argument " "1"" of type '" "wxFileHistory const *""'");
9606 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9607 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9608 if (!SWIG_IsOK(ecode2
)) {
9609 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileHistory_GetHistoryFile" "', expected argument " "2"" of type '" "int""'");
9611 arg2
= static_cast< int >(val2
);
9613 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9614 result
= ((wxFileHistory
const *)arg1
)->GetHistoryFile(arg2
);
9615 wxPyEndAllowThreads(__tstate
);
9616 if (PyErr_Occurred()) SWIG_fail
;
9620 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9622 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9631 SWIGINTERN PyObject
*_wrap_FileHistory_GetCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9632 PyObject
*resultobj
= 0;
9633 wxFileHistory
*arg1
= (wxFileHistory
*) 0 ;
9637 PyObject
*swig_obj
[1] ;
9639 if (!args
) SWIG_fail
;
9641 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileHistory
, 0 | 0 );
9642 if (!SWIG_IsOK(res1
)) {
9643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileHistory_GetCount" "', expected argument " "1"" of type '" "wxFileHistory const *""'");
9645 arg1
= reinterpret_cast< wxFileHistory
* >(argp1
);
9647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9648 result
= (int)((wxFileHistory
const *)arg1
)->GetCount();
9649 wxPyEndAllowThreads(__tstate
);
9650 if (PyErr_Occurred()) SWIG_fail
;
9652 resultobj
= SWIG_From_int(static_cast< int >(result
));
9659 SWIGINTERN PyObject
*FileHistory_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9661 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9662 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileHistory
, SWIG_NewClientData(obj
));
9663 return SWIG_Py_Void();
9666 SWIGINTERN PyObject
*FileHistory_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9667 return SWIG_Python_InitShadowInstance(args
);
9670 SWIGINTERN PyObject
*_wrap_new_SingleInstanceChecker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9671 PyObject
*resultobj
= 0;
9672 wxString
*arg1
= 0 ;
9673 wxString
const &arg2_defvalue
= wxPyEmptyString
;
9674 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
9675 wxSingleInstanceChecker
*result
= 0 ;
9676 bool temp1
= false ;
9677 bool temp2
= false ;
9678 PyObject
* obj0
= 0 ;
9679 PyObject
* obj1
= 0 ;
9680 char * kwnames
[] = {
9681 (char *) "name",(char *) "path", NULL
9684 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_SingleInstanceChecker",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9686 arg1
= wxString_in_helper(obj0
);
9687 if (arg1
== NULL
) SWIG_fail
;
9692 arg2
= wxString_in_helper(obj1
);
9693 if (arg2
== NULL
) SWIG_fail
;
9698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9699 result
= (wxSingleInstanceChecker
*)new wxSingleInstanceChecker((wxString
const &)*arg1
,(wxString
const &)*arg2
);
9700 wxPyEndAllowThreads(__tstate
);
9701 if (PyErr_Occurred()) SWIG_fail
;
9703 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSingleInstanceChecker
, SWIG_POINTER_NEW
| 0 );
9726 SWIGINTERN PyObject
*_wrap_new_PreSingleInstanceChecker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9727 PyObject
*resultobj
= 0;
9728 wxSingleInstanceChecker
*result
= 0 ;
9730 if (!SWIG_Python_UnpackTuple(args
,"new_PreSingleInstanceChecker",0,0,0)) SWIG_fail
;
9732 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9733 result
= (wxSingleInstanceChecker
*)new wxSingleInstanceChecker();
9734 wxPyEndAllowThreads(__tstate
);
9735 if (PyErr_Occurred()) SWIG_fail
;
9737 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSingleInstanceChecker
, SWIG_POINTER_OWN
| 0 );
9744 SWIGINTERN PyObject
*_wrap_delete_SingleInstanceChecker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9745 PyObject
*resultobj
= 0;
9746 wxSingleInstanceChecker
*arg1
= (wxSingleInstanceChecker
*) 0 ;
9749 PyObject
*swig_obj
[1] ;
9751 if (!args
) SWIG_fail
;
9753 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleInstanceChecker
, SWIG_POINTER_DISOWN
| 0 );
9754 if (!SWIG_IsOK(res1
)) {
9755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_SingleInstanceChecker" "', expected argument " "1"" of type '" "wxSingleInstanceChecker *""'");
9757 arg1
= reinterpret_cast< wxSingleInstanceChecker
* >(argp1
);
9759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9762 wxPyEndAllowThreads(__tstate
);
9763 if (PyErr_Occurred()) SWIG_fail
;
9765 resultobj
= SWIG_Py_Void();
9772 SWIGINTERN PyObject
*_wrap_SingleInstanceChecker_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9773 PyObject
*resultobj
= 0;
9774 wxSingleInstanceChecker
*arg1
= (wxSingleInstanceChecker
*) 0 ;
9775 wxString
*arg2
= 0 ;
9776 wxString
const &arg3_defvalue
= wxPyEmptyString
;
9777 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
9781 bool temp2
= false ;
9782 bool temp3
= false ;
9783 PyObject
* obj0
= 0 ;
9784 PyObject
* obj1
= 0 ;
9785 PyObject
* obj2
= 0 ;
9786 char * kwnames
[] = {
9787 (char *) "self",(char *) "name",(char *) "path", NULL
9790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:SingleInstanceChecker_Create",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSingleInstanceChecker
, 0 | 0 );
9792 if (!SWIG_IsOK(res1
)) {
9793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleInstanceChecker_Create" "', expected argument " "1"" of type '" "wxSingleInstanceChecker *""'");
9795 arg1
= reinterpret_cast< wxSingleInstanceChecker
* >(argp1
);
9797 arg2
= wxString_in_helper(obj1
);
9798 if (arg2
== NULL
) SWIG_fail
;
9803 arg3
= wxString_in_helper(obj2
);
9804 if (arg3
== NULL
) SWIG_fail
;
9809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9810 result
= (bool)(arg1
)->Create((wxString
const &)*arg2
,(wxString
const &)*arg3
);
9811 wxPyEndAllowThreads(__tstate
);
9812 if (PyErr_Occurred()) SWIG_fail
;
9815 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9839 SWIGINTERN PyObject
*_wrap_SingleInstanceChecker_IsAnotherRunning(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9840 PyObject
*resultobj
= 0;
9841 wxSingleInstanceChecker
*arg1
= (wxSingleInstanceChecker
*) 0 ;
9845 PyObject
*swig_obj
[1] ;
9847 if (!args
) SWIG_fail
;
9849 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleInstanceChecker
, 0 | 0 );
9850 if (!SWIG_IsOK(res1
)) {
9851 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleInstanceChecker_IsAnotherRunning" "', expected argument " "1"" of type '" "wxSingleInstanceChecker const *""'");
9853 arg1
= reinterpret_cast< wxSingleInstanceChecker
* >(argp1
);
9855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9856 result
= (bool)((wxSingleInstanceChecker
const *)arg1
)->IsAnotherRunning();
9857 wxPyEndAllowThreads(__tstate
);
9858 if (PyErr_Occurred()) SWIG_fail
;
9861 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9869 SWIGINTERN PyObject
*SingleInstanceChecker_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9871 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9872 SWIG_TypeNewClientData(SWIGTYPE_p_wxSingleInstanceChecker
, SWIG_NewClientData(obj
));
9873 return SWIG_Py_Void();
9876 SWIGINTERN PyObject
*SingleInstanceChecker_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9877 return SWIG_Python_InitShadowInstance(args
);
9880 SWIGINTERN PyObject
*_wrap_DrawWindowOnDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9881 PyObject
*resultobj
= 0;
9882 wxWindow
*arg1
= (wxWindow
*) 0 ;
9889 PyObject
* obj0
= 0 ;
9890 PyObject
* obj1
= 0 ;
9891 char * kwnames
[] = {
9892 (char *) "window",(char *) "dc", NULL
9895 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DrawWindowOnDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9896 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9897 if (!SWIG_IsOK(res1
)) {
9898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DrawWindowOnDC" "', expected argument " "1"" of type '" "wxWindow *""'");
9900 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
9901 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 | 0);
9902 if (!SWIG_IsOK(res2
)) {
9903 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DrawWindowOnDC" "', expected argument " "2"" of type '" "wxDC const &""'");
9906 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DrawWindowOnDC" "', expected argument " "2"" of type '" "wxDC const &""'");
9908 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9910 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9911 result
= (bool)wxDrawWindowOnDC(arg1
,(wxDC
const &)*arg2
);
9912 wxPyEndAllowThreads(__tstate
);
9913 if (PyErr_Occurred()) SWIG_fail
;
9916 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9924 SWIGINTERN PyObject
*_wrap_delete_TipProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9925 PyObject
*resultobj
= 0;
9926 wxTipProvider
*arg1
= (wxTipProvider
*) 0 ;
9929 PyObject
*swig_obj
[1] ;
9931 if (!args
) SWIG_fail
;
9933 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTipProvider
, SWIG_POINTER_DISOWN
| 0 );
9934 if (!SWIG_IsOK(res1
)) {
9935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TipProvider" "', expected argument " "1"" of type '" "wxTipProvider *""'");
9937 arg1
= reinterpret_cast< wxTipProvider
* >(argp1
);
9939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9942 wxPyEndAllowThreads(__tstate
);
9943 if (PyErr_Occurred()) SWIG_fail
;
9945 resultobj
= SWIG_Py_Void();
9952 SWIGINTERN PyObject
*_wrap_TipProvider_GetTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9953 PyObject
*resultobj
= 0;
9954 wxTipProvider
*arg1
= (wxTipProvider
*) 0 ;
9958 PyObject
*swig_obj
[1] ;
9960 if (!args
) SWIG_fail
;
9962 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTipProvider
, 0 | 0 );
9963 if (!SWIG_IsOK(res1
)) {
9964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipProvider_GetTip" "', expected argument " "1"" of type '" "wxTipProvider *""'");
9966 arg1
= reinterpret_cast< wxTipProvider
* >(argp1
);
9968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9969 result
= (arg1
)->GetTip();
9970 wxPyEndAllowThreads(__tstate
);
9971 if (PyErr_Occurred()) SWIG_fail
;
9975 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9977 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9986 SWIGINTERN PyObject
*_wrap_TipProvider_GetCurrentTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9987 PyObject
*resultobj
= 0;
9988 wxTipProvider
*arg1
= (wxTipProvider
*) 0 ;
9992 PyObject
*swig_obj
[1] ;
9994 if (!args
) SWIG_fail
;
9996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTipProvider
, 0 | 0 );
9997 if (!SWIG_IsOK(res1
)) {
9998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipProvider_GetCurrentTip" "', expected argument " "1"" of type '" "wxTipProvider *""'");
10000 arg1
= reinterpret_cast< wxTipProvider
* >(argp1
);
10002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10003 result
= (size_t)(arg1
)->GetCurrentTip();
10004 wxPyEndAllowThreads(__tstate
);
10005 if (PyErr_Occurred()) SWIG_fail
;
10007 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
10014 SWIGINTERN PyObject
*_wrap_TipProvider_PreprocessTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10015 PyObject
*resultobj
= 0;
10016 wxTipProvider
*arg1
= (wxTipProvider
*) 0 ;
10017 wxString
*arg2
= 0 ;
10021 bool temp2
= false ;
10022 PyObject
* obj0
= 0 ;
10023 PyObject
* obj1
= 0 ;
10024 char * kwnames
[] = {
10025 (char *) "self",(char *) "tip", NULL
10028 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TipProvider_PreprocessTip",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10029 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTipProvider
, 0 | 0 );
10030 if (!SWIG_IsOK(res1
)) {
10031 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipProvider_PreprocessTip" "', expected argument " "1"" of type '" "wxTipProvider *""'");
10033 arg1
= reinterpret_cast< wxTipProvider
* >(argp1
);
10035 arg2
= wxString_in_helper(obj1
);
10036 if (arg2
== NULL
) SWIG_fail
;
10040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10041 result
= (arg1
)->PreprocessTip((wxString
const &)*arg2
);
10042 wxPyEndAllowThreads(__tstate
);
10043 if (PyErr_Occurred()) SWIG_fail
;
10047 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10049 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10066 SWIGINTERN PyObject
*TipProvider_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10068 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10069 SWIG_TypeNewClientData(SWIGTYPE_p_wxTipProvider
, SWIG_NewClientData(obj
));
10070 return SWIG_Py_Void();
10073 SWIGINTERN PyObject
*_wrap_new_PyTipProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10074 PyObject
*resultobj
= 0;
10076 wxPyTipProvider
*result
= 0 ;
10079 PyObject
* obj0
= 0 ;
10080 char * kwnames
[] = {
10081 (char *) "currentTip", NULL
10084 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_PyTipProvider",kwnames
,&obj0
)) SWIG_fail
;
10085 ecode1
= SWIG_AsVal_size_t(obj0
, &val1
);
10086 if (!SWIG_IsOK(ecode1
)) {
10087 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_PyTipProvider" "', expected argument " "1"" of type '" "size_t""'");
10089 arg1
= static_cast< size_t >(val1
);
10091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10092 result
= (wxPyTipProvider
*)new wxPyTipProvider(arg1
);
10093 wxPyEndAllowThreads(__tstate
);
10094 if (PyErr_Occurred()) SWIG_fail
;
10096 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTipProvider
, SWIG_POINTER_NEW
| 0 );
10103 SWIGINTERN PyObject
*_wrap_PyTipProvider__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10104 PyObject
*resultobj
= 0;
10105 wxPyTipProvider
*arg1
= (wxPyTipProvider
*) 0 ;
10106 PyObject
*arg2
= (PyObject
*) 0 ;
10107 PyObject
*arg3
= (PyObject
*) 0 ;
10110 PyObject
* obj0
= 0 ;
10111 PyObject
* obj1
= 0 ;
10112 PyObject
* obj2
= 0 ;
10113 char * kwnames
[] = {
10114 (char *) "self",(char *) "self",(char *) "_class", NULL
10117 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyTipProvider__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10118 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTipProvider
, 0 | 0 );
10119 if (!SWIG_IsOK(res1
)) {
10120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyTipProvider__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTipProvider *""'");
10122 arg1
= reinterpret_cast< wxPyTipProvider
* >(argp1
);
10126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10127 (arg1
)->_setCallbackInfo(arg2
,arg3
);
10128 wxPyEndAllowThreads(__tstate
);
10129 if (PyErr_Occurred()) SWIG_fail
;
10131 resultobj
= SWIG_Py_Void();
10138 SWIGINTERN PyObject
*PyTipProvider_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10140 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10141 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTipProvider
, SWIG_NewClientData(obj
));
10142 return SWIG_Py_Void();
10145 SWIGINTERN PyObject
*PyTipProvider_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10146 return SWIG_Python_InitShadowInstance(args
);
10149 SWIGINTERN PyObject
*_wrap_ShowTip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10150 PyObject
*resultobj
= 0;
10151 wxWindow
*arg1
= (wxWindow
*) 0 ;
10152 wxTipProvider
*arg2
= (wxTipProvider
*) 0 ;
10153 bool arg3
= (bool) true ;
10161 PyObject
* obj0
= 0 ;
10162 PyObject
* obj1
= 0 ;
10163 PyObject
* obj2
= 0 ;
10164 char * kwnames
[] = {
10165 (char *) "parent",(char *) "tipProvider",(char *) "showAtStartup", NULL
10168 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ShowTip",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10169 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10170 if (!SWIG_IsOK(res1
)) {
10171 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ShowTip" "', expected argument " "1"" of type '" "wxWindow *""'");
10173 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10174 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTipProvider
, 0 | 0 );
10175 if (!SWIG_IsOK(res2
)) {
10176 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ShowTip" "', expected argument " "2"" of type '" "wxTipProvider *""'");
10178 arg2
= reinterpret_cast< wxTipProvider
* >(argp2
);
10180 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10181 if (!SWIG_IsOK(ecode3
)) {
10182 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ShowTip" "', expected argument " "3"" of type '" "bool""'");
10184 arg3
= static_cast< bool >(val3
);
10187 if (!wxPyCheckForApp()) SWIG_fail
;
10188 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10189 result
= (bool)wxShowTip(arg1
,arg2
,arg3
);
10190 wxPyEndAllowThreads(__tstate
);
10191 if (PyErr_Occurred()) SWIG_fail
;
10194 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10202 SWIGINTERN PyObject
*_wrap_CreateFileTipProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10203 PyObject
*resultobj
= 0;
10204 wxString
*arg1
= 0 ;
10206 wxTipProvider
*result
= 0 ;
10207 bool temp1
= false ;
10210 PyObject
* obj0
= 0 ;
10211 PyObject
* obj1
= 0 ;
10212 char * kwnames
[] = {
10213 (char *) "filename",(char *) "currentTip", NULL
10216 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CreateFileTipProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10218 arg1
= wxString_in_helper(obj0
);
10219 if (arg1
== NULL
) SWIG_fail
;
10222 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
10223 if (!SWIG_IsOK(ecode2
)) {
10224 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "CreateFileTipProvider" "', expected argument " "2"" of type '" "size_t""'");
10226 arg2
= static_cast< size_t >(val2
);
10228 if (!wxPyCheckForApp()) SWIG_fail
;
10229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10230 result
= (wxTipProvider
*)wxCreateFileTipProvider((wxString
const &)*arg1
,arg2
);
10231 wxPyEndAllowThreads(__tstate
);
10232 if (PyErr_Occurred()) SWIG_fail
;
10234 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTipProvider
, SWIG_POINTER_OWN
| 0 );
10249 SWIGINTERN PyObject
*_wrap_new_Timer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10250 PyObject
*resultobj
= 0;
10251 wxEvtHandler
*arg1
= (wxEvtHandler
*) NULL
;
10252 int arg2
= (int) wxID_ANY
;
10253 wxPyTimer
*result
= 0 ;
10258 PyObject
* obj0
= 0 ;
10259 PyObject
* obj1
= 0 ;
10260 char * kwnames
[] = {
10261 (char *) "owner",(char *) "id", NULL
10264 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_Timer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEvtHandler
, 0 | 0 );
10267 if (!SWIG_IsOK(res1
)) {
10268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Timer" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
10270 arg1
= reinterpret_cast< wxEvtHandler
* >(argp1
);
10273 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10274 if (!SWIG_IsOK(ecode2
)) {
10275 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Timer" "', expected argument " "2"" of type '" "int""'");
10277 arg2
= static_cast< int >(val2
);
10280 if (!wxPyCheckForApp()) SWIG_fail
;
10281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10282 result
= (wxPyTimer
*)new wxPyTimer(arg1
,arg2
);
10283 wxPyEndAllowThreads(__tstate
);
10284 if (PyErr_Occurred()) SWIG_fail
;
10286 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTimer
, SWIG_POINTER_NEW
| 0 );
10293 SWIGINTERN PyObject
*_wrap_delete_Timer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10294 PyObject
*resultobj
= 0;
10295 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10298 PyObject
*swig_obj
[1] ;
10300 if (!args
) SWIG_fail
;
10301 swig_obj
[0] = args
;
10302 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, SWIG_POINTER_DISOWN
| 0 );
10303 if (!SWIG_IsOK(res1
)) {
10304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Timer" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10306 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10311 wxPyEndAllowThreads(__tstate
);
10312 if (PyErr_Occurred()) SWIG_fail
;
10314 resultobj
= SWIG_Py_Void();
10321 SWIGINTERN PyObject
*_wrap_Timer__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10322 PyObject
*resultobj
= 0;
10323 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10324 PyObject
*arg2
= (PyObject
*) 0 ;
10325 PyObject
*arg3
= (PyObject
*) 0 ;
10326 int arg4
= (int) 1 ;
10331 PyObject
* obj0
= 0 ;
10332 PyObject
* obj1
= 0 ;
10333 PyObject
* obj2
= 0 ;
10334 PyObject
* obj3
= 0 ;
10335 char * kwnames
[] = {
10336 (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL
10339 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Timer__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10340 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10341 if (!SWIG_IsOK(res1
)) {
10342 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10344 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10348 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10349 if (!SWIG_IsOK(ecode4
)) {
10350 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Timer__setCallbackInfo" "', expected argument " "4"" of type '" "int""'");
10352 arg4
= static_cast< int >(val4
);
10355 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10356 (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
);
10357 wxPyEndAllowThreads(__tstate
);
10358 if (PyErr_Occurred()) SWIG_fail
;
10360 resultobj
= SWIG_Py_Void();
10367 SWIGINTERN PyObject
*_wrap_Timer_SetOwner(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10368 PyObject
*resultobj
= 0;
10369 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10370 wxEvtHandler
*arg2
= (wxEvtHandler
*) 0 ;
10371 int arg3
= (int) wxID_ANY
;
10378 PyObject
* obj0
= 0 ;
10379 PyObject
* obj1
= 0 ;
10380 PyObject
* obj2
= 0 ;
10381 char * kwnames
[] = {
10382 (char *) "self",(char *) "owner",(char *) "id", NULL
10385 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Timer_SetOwner",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10386 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10387 if (!SWIG_IsOK(res1
)) {
10388 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_SetOwner" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10390 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10391 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxEvtHandler
, 0 | 0 );
10392 if (!SWIG_IsOK(res2
)) {
10393 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Timer_SetOwner" "', expected argument " "2"" of type '" "wxEvtHandler *""'");
10395 arg2
= reinterpret_cast< wxEvtHandler
* >(argp2
);
10397 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10398 if (!SWIG_IsOK(ecode3
)) {
10399 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Timer_SetOwner" "', expected argument " "3"" of type '" "int""'");
10401 arg3
= static_cast< int >(val3
);
10404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10405 (arg1
)->SetOwner(arg2
,arg3
);
10406 wxPyEndAllowThreads(__tstate
);
10407 if (PyErr_Occurred()) SWIG_fail
;
10409 resultobj
= SWIG_Py_Void();
10416 SWIGINTERN PyObject
*_wrap_Timer_GetOwner(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10417 PyObject
*resultobj
= 0;
10418 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10419 wxEvtHandler
*result
= 0 ;
10422 PyObject
*swig_obj
[1] ;
10424 if (!args
) SWIG_fail
;
10425 swig_obj
[0] = args
;
10426 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10427 if (!SWIG_IsOK(res1
)) {
10428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_GetOwner" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10430 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10433 result
= (wxEvtHandler
*)(arg1
)->GetOwner();
10434 wxPyEndAllowThreads(__tstate
);
10435 if (PyErr_Occurred()) SWIG_fail
;
10438 resultobj
= wxPyMake_wxObject(result
, 0);
10446 SWIGINTERN PyObject
*_wrap_Timer_Start(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10447 PyObject
*resultobj
= 0;
10448 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10449 int arg2
= (int) -1 ;
10450 bool arg3
= (bool) false ;
10458 PyObject
* obj0
= 0 ;
10459 PyObject
* obj1
= 0 ;
10460 PyObject
* obj2
= 0 ;
10461 char * kwnames
[] = {
10462 (char *) "self",(char *) "milliseconds",(char *) "oneShot", NULL
10465 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:Timer_Start",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10466 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10467 if (!SWIG_IsOK(res1
)) {
10468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_Start" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10470 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10472 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10473 if (!SWIG_IsOK(ecode2
)) {
10474 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Timer_Start" "', expected argument " "2"" of type '" "int""'");
10476 arg2
= static_cast< int >(val2
);
10479 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10480 if (!SWIG_IsOK(ecode3
)) {
10481 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Timer_Start" "', expected argument " "3"" of type '" "bool""'");
10483 arg3
= static_cast< bool >(val3
);
10486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10487 result
= (bool)(arg1
)->Start(arg2
,arg3
);
10488 wxPyEndAllowThreads(__tstate
);
10489 if (PyErr_Occurred()) SWIG_fail
;
10492 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10500 SWIGINTERN PyObject
*_wrap_Timer_Stop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10501 PyObject
*resultobj
= 0;
10502 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10505 PyObject
*swig_obj
[1] ;
10507 if (!args
) SWIG_fail
;
10508 swig_obj
[0] = args
;
10509 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10510 if (!SWIG_IsOK(res1
)) {
10511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_Stop" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10513 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10517 wxPyEndAllowThreads(__tstate
);
10518 if (PyErr_Occurred()) SWIG_fail
;
10520 resultobj
= SWIG_Py_Void();
10527 SWIGINTERN PyObject
*_wrap_Timer_Notify(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10528 PyObject
*resultobj
= 0;
10529 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10532 PyObject
*swig_obj
[1] ;
10534 if (!args
) SWIG_fail
;
10535 swig_obj
[0] = args
;
10536 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10537 if (!SWIG_IsOK(res1
)) {
10538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_Notify" "', expected argument " "1"" of type '" "wxPyTimer *""'");
10540 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10544 wxPyEndAllowThreads(__tstate
);
10545 if (PyErr_Occurred()) SWIG_fail
;
10547 resultobj
= SWIG_Py_Void();
10554 SWIGINTERN PyObject
*_wrap_Timer_IsRunning(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10555 PyObject
*resultobj
= 0;
10556 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10560 PyObject
*swig_obj
[1] ;
10562 if (!args
) SWIG_fail
;
10563 swig_obj
[0] = args
;
10564 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10565 if (!SWIG_IsOK(res1
)) {
10566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_IsRunning" "', expected argument " "1"" of type '" "wxPyTimer const *""'");
10568 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10571 result
= (bool)((wxPyTimer
const *)arg1
)->IsRunning();
10572 wxPyEndAllowThreads(__tstate
);
10573 if (PyErr_Occurred()) SWIG_fail
;
10576 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10584 SWIGINTERN PyObject
*_wrap_Timer_GetInterval(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10585 PyObject
*resultobj
= 0;
10586 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10590 PyObject
*swig_obj
[1] ;
10592 if (!args
) SWIG_fail
;
10593 swig_obj
[0] = args
;
10594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10595 if (!SWIG_IsOK(res1
)) {
10596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_GetInterval" "', expected argument " "1"" of type '" "wxPyTimer const *""'");
10598 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10601 result
= (int)((wxPyTimer
const *)arg1
)->GetInterval();
10602 wxPyEndAllowThreads(__tstate
);
10603 if (PyErr_Occurred()) SWIG_fail
;
10605 resultobj
= SWIG_From_int(static_cast< int >(result
));
10612 SWIGINTERN PyObject
*_wrap_Timer_GetId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10613 PyObject
*resultobj
= 0;
10614 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10618 PyObject
*swig_obj
[1] ;
10620 if (!args
) SWIG_fail
;
10621 swig_obj
[0] = args
;
10622 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10623 if (!SWIG_IsOK(res1
)) {
10624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_GetId" "', expected argument " "1"" of type '" "wxPyTimer const *""'");
10626 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10629 result
= (int)((wxPyTimer
const *)arg1
)->GetId();
10630 wxPyEndAllowThreads(__tstate
);
10631 if (PyErr_Occurred()) SWIG_fail
;
10633 resultobj
= SWIG_From_int(static_cast< int >(result
));
10640 SWIGINTERN PyObject
*_wrap_Timer_IsOneShot(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10641 PyObject
*resultobj
= 0;
10642 wxPyTimer
*arg1
= (wxPyTimer
*) 0 ;
10646 PyObject
*swig_obj
[1] ;
10648 if (!args
) SWIG_fail
;
10649 swig_obj
[0] = args
;
10650 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTimer
, 0 | 0 );
10651 if (!SWIG_IsOK(res1
)) {
10652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Timer_IsOneShot" "', expected argument " "1"" of type '" "wxPyTimer const *""'");
10654 arg1
= reinterpret_cast< wxPyTimer
* >(argp1
);
10656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10657 result
= (bool)((wxPyTimer
const *)arg1
)->IsOneShot();
10658 wxPyEndAllowThreads(__tstate
);
10659 if (PyErr_Occurred()) SWIG_fail
;
10662 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10670 SWIGINTERN PyObject
*Timer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10672 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10673 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTimer
, SWIG_NewClientData(obj
));
10674 return SWIG_Py_Void();
10677 SWIGINTERN PyObject
*Timer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10678 return SWIG_Python_InitShadowInstance(args
);
10681 SWIGINTERN PyObject
*_wrap_new_TimerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10682 PyObject
*resultobj
= 0;
10683 int arg1
= (int) 0 ;
10684 int arg2
= (int) 0 ;
10685 wxTimerEvent
*result
= 0 ;
10690 PyObject
* obj0
= 0 ;
10691 PyObject
* obj1
= 0 ;
10692 char * kwnames
[] = {
10693 (char *) "timerid",(char *) "interval", NULL
10696 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_TimerEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10698 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10699 if (!SWIG_IsOK(ecode1
)) {
10700 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_TimerEvent" "', expected argument " "1"" of type '" "int""'");
10702 arg1
= static_cast< int >(val1
);
10705 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10706 if (!SWIG_IsOK(ecode2
)) {
10707 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_TimerEvent" "', expected argument " "2"" of type '" "int""'");
10709 arg2
= static_cast< int >(val2
);
10712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10713 result
= (wxTimerEvent
*)new wxTimerEvent(arg1
,arg2
);
10714 wxPyEndAllowThreads(__tstate
);
10715 if (PyErr_Occurred()) SWIG_fail
;
10717 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimerEvent
, SWIG_POINTER_NEW
| 0 );
10724 SWIGINTERN PyObject
*_wrap_TimerEvent_GetInterval(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10725 PyObject
*resultobj
= 0;
10726 wxTimerEvent
*arg1
= (wxTimerEvent
*) 0 ;
10730 PyObject
*swig_obj
[1] ;
10732 if (!args
) SWIG_fail
;
10733 swig_obj
[0] = args
;
10734 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimerEvent
, 0 | 0 );
10735 if (!SWIG_IsOK(res1
)) {
10736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimerEvent_GetInterval" "', expected argument " "1"" of type '" "wxTimerEvent const *""'");
10738 arg1
= reinterpret_cast< wxTimerEvent
* >(argp1
);
10740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10741 result
= (int)((wxTimerEvent
const *)arg1
)->GetInterval();
10742 wxPyEndAllowThreads(__tstate
);
10743 if (PyErr_Occurred()) SWIG_fail
;
10745 resultobj
= SWIG_From_int(static_cast< int >(result
));
10752 SWIGINTERN PyObject
*TimerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10754 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10755 SWIG_TypeNewClientData(SWIGTYPE_p_wxTimerEvent
, SWIG_NewClientData(obj
));
10756 return SWIG_Py_Void();
10759 SWIGINTERN PyObject
*TimerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10760 return SWIG_Python_InitShadowInstance(args
);
10763 SWIGINTERN PyObject
*_wrap_new_TimerRunner__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
10764 PyObject
*resultobj
= 0;
10765 wxTimer
*arg1
= 0 ;
10766 wxTimerRunner
*result
= 0 ;
10770 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
10771 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxTimer
, 0 );
10772 if (!SWIG_IsOK(res1
)) {
10773 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TimerRunner" "', expected argument " "1"" of type '" "wxTimer &""'");
10776 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_TimerRunner" "', expected argument " "1"" of type '" "wxTimer &""'");
10778 arg1
= reinterpret_cast< wxTimer
* >(argp1
);
10780 if (!wxPyCheckForApp()) SWIG_fail
;
10781 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10782 result
= (wxTimerRunner
*)new wxTimerRunner(*arg1
);
10783 wxPyEndAllowThreads(__tstate
);
10784 if (PyErr_Occurred()) SWIG_fail
;
10786 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimerRunner
, SWIG_POINTER_NEW
| 0 );
10793 SWIGINTERN PyObject
*_wrap_new_TimerRunner__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
10794 PyObject
*resultobj
= 0;
10795 wxTimer
*arg1
= 0 ;
10797 bool arg3
= (bool) false ;
10798 wxTimerRunner
*result
= 0 ;
10806 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
10807 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxTimer
, 0 );
10808 if (!SWIG_IsOK(res1
)) {
10809 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TimerRunner" "', expected argument " "1"" of type '" "wxTimer &""'");
10812 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_TimerRunner" "', expected argument " "1"" of type '" "wxTimer &""'");
10814 arg1
= reinterpret_cast< wxTimer
* >(argp1
);
10815 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10816 if (!SWIG_IsOK(ecode2
)) {
10817 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_TimerRunner" "', expected argument " "2"" of type '" "int""'");
10819 arg2
= static_cast< int >(val2
);
10821 ecode3
= SWIG_AsVal_bool(swig_obj
[2], &val3
);
10822 if (!SWIG_IsOK(ecode3
)) {
10823 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_TimerRunner" "', expected argument " "3"" of type '" "bool""'");
10825 arg3
= static_cast< bool >(val3
);
10828 if (!wxPyCheckForApp()) SWIG_fail
;
10829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10830 result
= (wxTimerRunner
*)new wxTimerRunner(*arg1
,arg2
,arg3
);
10831 wxPyEndAllowThreads(__tstate
);
10832 if (PyErr_Occurred()) SWIG_fail
;
10834 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimerRunner
, SWIG_POINTER_NEW
| 0 );
10841 SWIGINTERN PyObject
*_wrap_new_TimerRunner(PyObject
*self
, PyObject
*args
) {
10845 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_TimerRunner",0,3,argv
))) SWIG_fail
;
10848 return _wrap_new_TimerRunner__SWIG_0(self
, argc
, argv
);
10850 if ((argc
>= 2) && (argc
<= 3)) {
10851 return _wrap_new_TimerRunner__SWIG_1(self
, argc
, argv
);
10855 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_TimerRunner'");
10860 SWIGINTERN PyObject
*_wrap_delete_TimerRunner(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10861 PyObject
*resultobj
= 0;
10862 wxTimerRunner
*arg1
= (wxTimerRunner
*) 0 ;
10865 PyObject
*swig_obj
[1] ;
10867 if (!args
) SWIG_fail
;
10868 swig_obj
[0] = args
;
10869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimerRunner
, SWIG_POINTER_DISOWN
| 0 );
10870 if (!SWIG_IsOK(res1
)) {
10871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TimerRunner" "', expected argument " "1"" of type '" "wxTimerRunner *""'");
10873 arg1
= reinterpret_cast< wxTimerRunner
* >(argp1
);
10875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10878 wxPyEndAllowThreads(__tstate
);
10879 if (PyErr_Occurred()) SWIG_fail
;
10881 resultobj
= SWIG_Py_Void();
10888 SWIGINTERN PyObject
*_wrap_TimerRunner_Start(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10889 PyObject
*resultobj
= 0;
10890 wxTimerRunner
*arg1
= (wxTimerRunner
*) 0 ;
10892 bool arg3
= (bool) false ;
10899 PyObject
* obj0
= 0 ;
10900 PyObject
* obj1
= 0 ;
10901 PyObject
* obj2
= 0 ;
10902 char * kwnames
[] = {
10903 (char *) "self",(char *) "milli",(char *) "oneShot", NULL
10906 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TimerRunner_Start",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10907 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimerRunner
, 0 | 0 );
10908 if (!SWIG_IsOK(res1
)) {
10909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimerRunner_Start" "', expected argument " "1"" of type '" "wxTimerRunner *""'");
10911 arg1
= reinterpret_cast< wxTimerRunner
* >(argp1
);
10912 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10913 if (!SWIG_IsOK(ecode2
)) {
10914 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TimerRunner_Start" "', expected argument " "2"" of type '" "int""'");
10916 arg2
= static_cast< int >(val2
);
10918 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10919 if (!SWIG_IsOK(ecode3
)) {
10920 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TimerRunner_Start" "', expected argument " "3"" of type '" "bool""'");
10922 arg3
= static_cast< bool >(val3
);
10925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10926 (arg1
)->Start(arg2
,arg3
);
10927 wxPyEndAllowThreads(__tstate
);
10928 if (PyErr_Occurred()) SWIG_fail
;
10930 resultobj
= SWIG_Py_Void();
10937 SWIGINTERN PyObject
*TimerRunner_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10939 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10940 SWIG_TypeNewClientData(SWIGTYPE_p_wxTimerRunner
, SWIG_NewClientData(obj
));
10941 return SWIG_Py_Void();
10944 SWIGINTERN PyObject
*TimerRunner_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10945 return SWIG_Python_InitShadowInstance(args
);
10948 SWIGINTERN PyObject
*_wrap_new_Log(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10949 PyObject
*resultobj
= 0;
10950 wxLog
*result
= 0 ;
10952 if (!SWIG_Python_UnpackTuple(args
,"new_Log",0,0,0)) SWIG_fail
;
10954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10955 result
= (wxLog
*)new wxLog();
10956 wxPyEndAllowThreads(__tstate
);
10957 if (PyErr_Occurred()) SWIG_fail
;
10959 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLog
, SWIG_POINTER_NEW
| 0 );
10966 SWIGINTERN PyObject
*_wrap_delete_Log(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10967 PyObject
*resultobj
= 0;
10968 wxLog
*arg1
= (wxLog
*) 0 ;
10971 PyObject
*swig_obj
[1] ;
10973 if (!args
) SWIG_fail
;
10974 swig_obj
[0] = args
;
10975 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLog
, SWIG_POINTER_DISOWN
| 0 );
10976 if (!SWIG_IsOK(res1
)) {
10977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Log" "', expected argument " "1"" of type '" "wxLog *""'");
10979 arg1
= reinterpret_cast< wxLog
* >(argp1
);
10981 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10984 wxPyEndAllowThreads(__tstate
);
10985 if (PyErr_Occurred()) SWIG_fail
;
10987 resultobj
= SWIG_Py_Void();
10994 SWIGINTERN PyObject
*_wrap_Log_IsEnabled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10995 PyObject
*resultobj
= 0;
10998 if (!SWIG_Python_UnpackTuple(args
,"Log_IsEnabled",0,0,0)) SWIG_fail
;
11000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11001 result
= (bool)wxLog::IsEnabled();
11002 wxPyEndAllowThreads(__tstate
);
11003 if (PyErr_Occurred()) SWIG_fail
;
11006 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11014 SWIGINTERN PyObject
*_wrap_Log_EnableLogging(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11015 PyObject
*resultobj
= 0;
11016 bool arg1
= (bool) true ;
11020 PyObject
* obj0
= 0 ;
11021 char * kwnames
[] = {
11022 (char *) "doIt", NULL
11025 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Log_EnableLogging",kwnames
,&obj0
)) SWIG_fail
;
11027 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
11028 if (!SWIG_IsOK(ecode1
)) {
11029 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Log_EnableLogging" "', expected argument " "1"" of type '" "bool""'");
11031 arg1
= static_cast< bool >(val1
);
11034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11035 result
= (bool)wxLog::EnableLogging(arg1
);
11036 wxPyEndAllowThreads(__tstate
);
11037 if (PyErr_Occurred()) SWIG_fail
;
11040 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11048 SWIGINTERN PyObject
*_wrap_Log_OnLog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11049 PyObject
*resultobj
= 0;
11051 wxChar
*arg2
= (wxChar
*) 0 ;
11053 unsigned long val1
;
11057 unsigned int val3
;
11059 PyObject
* obj0
= 0 ;
11060 PyObject
* obj1
= 0 ;
11061 PyObject
* obj2
= 0 ;
11062 char * kwnames
[] = {
11063 (char *) "level",(char *) "szString",(char *) "t", NULL
11066 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Log_OnLog",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11067 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
11068 if (!SWIG_IsOK(ecode1
)) {
11069 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Log_OnLog" "', expected argument " "1"" of type '" "wxLogLevel""'");
11071 arg1
= static_cast< wxLogLevel
>(val1
);
11072 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxChar
, 0 | 0 );
11073 if (!SWIG_IsOK(res2
)) {
11074 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Log_OnLog" "', expected argument " "2"" of type '" "wxChar const *""'");
11076 arg2
= reinterpret_cast< wxChar
* >(argp2
);
11077 ecode3
= SWIG_AsVal_unsigned_SS_int(obj2
, &val3
);
11078 if (!SWIG_IsOK(ecode3
)) {
11079 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Log_OnLog" "', expected argument " "3"" of type '" "time_t""'");
11081 arg3
= static_cast< time_t >(val3
);
11083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11084 wxLog::OnLog(arg1
,(wxChar
const *)arg2
,arg3
);
11085 wxPyEndAllowThreads(__tstate
);
11086 if (PyErr_Occurred()) SWIG_fail
;
11088 resultobj
= SWIG_Py_Void();
11095 SWIGINTERN PyObject
*_wrap_Log_Flush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11096 PyObject
*resultobj
= 0;
11097 wxLog
*arg1
= (wxLog
*) 0 ;
11100 PyObject
*swig_obj
[1] ;
11102 if (!args
) SWIG_fail
;
11103 swig_obj
[0] = args
;
11104 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLog
, 0 | 0 );
11105 if (!SWIG_IsOK(res1
)) {
11106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Log_Flush" "', expected argument " "1"" of type '" "wxLog *""'");
11108 arg1
= reinterpret_cast< wxLog
* >(argp1
);
11110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11112 wxPyEndAllowThreads(__tstate
);
11113 if (PyErr_Occurred()) SWIG_fail
;
11115 resultobj
= SWIG_Py_Void();
11122 SWIGINTERN PyObject
*_wrap_Log_FlushActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11123 PyObject
*resultobj
= 0;
11125 if (!SWIG_Python_UnpackTuple(args
,"Log_FlushActive",0,0,0)) SWIG_fail
;
11127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11128 wxLog::FlushActive();
11129 wxPyEndAllowThreads(__tstate
);
11130 if (PyErr_Occurred()) SWIG_fail
;
11132 resultobj
= SWIG_Py_Void();
11139 SWIGINTERN PyObject
*_wrap_Log_GetActiveTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11140 PyObject
*resultobj
= 0;
11141 wxLog
*result
= 0 ;
11143 if (!SWIG_Python_UnpackTuple(args
,"Log_GetActiveTarget",0,0,0)) SWIG_fail
;
11145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11146 result
= (wxLog
*)wxLog::GetActiveTarget();
11147 wxPyEndAllowThreads(__tstate
);
11148 if (PyErr_Occurred()) SWIG_fail
;
11150 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLog
, 0 | 0 );
11157 SWIGINTERN PyObject
*_wrap_Log_SetActiveTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11158 PyObject
*resultobj
= 0;
11159 wxLog
*arg1
= (wxLog
*) 0 ;
11160 wxLog
*result
= 0 ;
11162 PyObject
* obj0
= 0 ;
11163 char * kwnames
[] = {
11164 (char *) "pLogger", NULL
11167 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_SetActiveTarget",kwnames
,&obj0
)) SWIG_fail
;
11168 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxLog
, SWIG_POINTER_DISOWN
| 0 );
11169 if (!SWIG_IsOK(res1
)) {
11170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Log_SetActiveTarget" "', expected argument " "1"" of type '" "wxLog *""'");
11173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11174 result
= (wxLog
*)wxLog::SetActiveTarget(arg1
);
11175 wxPyEndAllowThreads(__tstate
);
11176 if (PyErr_Occurred()) SWIG_fail
;
11178 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLog
, SWIG_POINTER_OWN
| 0 );
11185 SWIGINTERN PyObject
*_wrap_Log_Suspend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11186 PyObject
*resultobj
= 0;
11188 if (!SWIG_Python_UnpackTuple(args
,"Log_Suspend",0,0,0)) SWIG_fail
;
11190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11192 wxPyEndAllowThreads(__tstate
);
11193 if (PyErr_Occurred()) SWIG_fail
;
11195 resultobj
= SWIG_Py_Void();
11202 SWIGINTERN PyObject
*_wrap_Log_Resume(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11203 PyObject
*resultobj
= 0;
11205 if (!SWIG_Python_UnpackTuple(args
,"Log_Resume",0,0,0)) SWIG_fail
;
11207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11209 wxPyEndAllowThreads(__tstate
);
11210 if (PyErr_Occurred()) SWIG_fail
;
11212 resultobj
= SWIG_Py_Void();
11219 SWIGINTERN PyObject
*_wrap_Log_SetVerbose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11220 PyObject
*resultobj
= 0;
11221 bool arg1
= (bool) true ;
11224 PyObject
* obj0
= 0 ;
11225 char * kwnames
[] = {
11226 (char *) "bVerbose", NULL
11229 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Log_SetVerbose",kwnames
,&obj0
)) SWIG_fail
;
11231 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
11232 if (!SWIG_IsOK(ecode1
)) {
11233 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Log_SetVerbose" "', expected argument " "1"" of type '" "bool""'");
11235 arg1
= static_cast< bool >(val1
);
11238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11239 wxLog::SetVerbose(arg1
);
11240 wxPyEndAllowThreads(__tstate
);
11241 if (PyErr_Occurred()) SWIG_fail
;
11243 resultobj
= SWIG_Py_Void();
11250 SWIGINTERN PyObject
*_wrap_Log_SetLogLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11251 PyObject
*resultobj
= 0;
11253 unsigned long val1
;
11255 PyObject
* obj0
= 0 ;
11256 char * kwnames
[] = {
11257 (char *) "logLevel", NULL
11260 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_SetLogLevel",kwnames
,&obj0
)) SWIG_fail
;
11261 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
11262 if (!SWIG_IsOK(ecode1
)) {
11263 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Log_SetLogLevel" "', expected argument " "1"" of type '" "wxLogLevel""'");
11265 arg1
= static_cast< wxLogLevel
>(val1
);
11267 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11268 wxLog::SetLogLevel(arg1
);
11269 wxPyEndAllowThreads(__tstate
);
11270 if (PyErr_Occurred()) SWIG_fail
;
11272 resultobj
= SWIG_Py_Void();
11279 SWIGINTERN PyObject
*_wrap_Log_DontCreateOnDemand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11280 PyObject
*resultobj
= 0;
11282 if (!SWIG_Python_UnpackTuple(args
,"Log_DontCreateOnDemand",0,0,0)) SWIG_fail
;
11284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11285 wxLog::DontCreateOnDemand();
11286 wxPyEndAllowThreads(__tstate
);
11287 if (PyErr_Occurred()) SWIG_fail
;
11289 resultobj
= SWIG_Py_Void();
11296 SWIGINTERN PyObject
*_wrap_Log_SetTraceMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11297 PyObject
*resultobj
= 0;
11299 unsigned long val1
;
11301 PyObject
* obj0
= 0 ;
11302 char * kwnames
[] = {
11303 (char *) "ulMask", NULL
11306 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_SetTraceMask",kwnames
,&obj0
)) SWIG_fail
;
11307 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
11308 if (!SWIG_IsOK(ecode1
)) {
11309 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Log_SetTraceMask" "', expected argument " "1"" of type '" "wxTraceMask""'");
11311 arg1
= static_cast< wxTraceMask
>(val1
);
11313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11314 wxLog::SetTraceMask(arg1
);
11315 wxPyEndAllowThreads(__tstate
);
11316 if (PyErr_Occurred()) SWIG_fail
;
11318 resultobj
= SWIG_Py_Void();
11325 SWIGINTERN PyObject
*_wrap_Log_AddTraceMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11326 PyObject
*resultobj
= 0;
11327 wxString
*arg1
= 0 ;
11328 bool temp1
= false ;
11329 PyObject
* obj0
= 0 ;
11330 char * kwnames
[] = {
11331 (char *) "str", NULL
11334 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_AddTraceMask",kwnames
,&obj0
)) SWIG_fail
;
11336 arg1
= wxString_in_helper(obj0
);
11337 if (arg1
== NULL
) SWIG_fail
;
11341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11342 wxLog::AddTraceMask((wxString
const &)*arg1
);
11343 wxPyEndAllowThreads(__tstate
);
11344 if (PyErr_Occurred()) SWIG_fail
;
11346 resultobj
= SWIG_Py_Void();
11361 SWIGINTERN PyObject
*_wrap_Log_RemoveTraceMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11362 PyObject
*resultobj
= 0;
11363 wxString
*arg1
= 0 ;
11364 bool temp1
= false ;
11365 PyObject
* obj0
= 0 ;
11366 char * kwnames
[] = {
11367 (char *) "str", NULL
11370 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_RemoveTraceMask",kwnames
,&obj0
)) SWIG_fail
;
11372 arg1
= wxString_in_helper(obj0
);
11373 if (arg1
== NULL
) SWIG_fail
;
11377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11378 wxLog::RemoveTraceMask((wxString
const &)*arg1
);
11379 wxPyEndAllowThreads(__tstate
);
11380 if (PyErr_Occurred()) SWIG_fail
;
11382 resultobj
= SWIG_Py_Void();
11397 SWIGINTERN PyObject
*_wrap_Log_ClearTraceMasks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11398 PyObject
*resultobj
= 0;
11400 if (!SWIG_Python_UnpackTuple(args
,"Log_ClearTraceMasks",0,0,0)) SWIG_fail
;
11402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11403 wxLog::ClearTraceMasks();
11404 wxPyEndAllowThreads(__tstate
);
11405 if (PyErr_Occurred()) SWIG_fail
;
11407 resultobj
= SWIG_Py_Void();
11414 SWIGINTERN PyObject
*_wrap_Log_GetTraceMasks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11415 PyObject
*resultobj
= 0;
11416 wxArrayString
*result
= 0 ;
11418 if (!SWIG_Python_UnpackTuple(args
,"Log_GetTraceMasks",0,0,0)) SWIG_fail
;
11420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11422 wxArrayString
const &_result_ref
= wxLog::GetTraceMasks();
11423 result
= (wxArrayString
*) &_result_ref
;
11425 wxPyEndAllowThreads(__tstate
);
11426 if (PyErr_Occurred()) SWIG_fail
;
11429 resultobj
= wxArrayString2PyList_helper(*result
);
11437 SWIGINTERN PyObject
*_wrap_Log_SetTimestamp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11438 PyObject
*resultobj
= 0;
11439 wxChar
*arg1
= (wxChar
*) 0 ;
11442 PyObject
* obj0
= 0 ;
11443 char * kwnames
[] = {
11444 (char *) "ts", NULL
11447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_SetTimestamp",kwnames
,&obj0
)) SWIG_fail
;
11448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxChar
, 0 | 0 );
11449 if (!SWIG_IsOK(res1
)) {
11450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Log_SetTimestamp" "', expected argument " "1"" of type '" "wxChar const *""'");
11452 arg1
= reinterpret_cast< wxChar
* >(argp1
);
11454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11455 wxLog::SetTimestamp((wxChar
const *)arg1
);
11456 wxPyEndAllowThreads(__tstate
);
11457 if (PyErr_Occurred()) SWIG_fail
;
11459 resultobj
= SWIG_Py_Void();
11466 SWIGINTERN PyObject
*_wrap_Log_GetVerbose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11467 PyObject
*resultobj
= 0;
11470 if (!SWIG_Python_UnpackTuple(args
,"Log_GetVerbose",0,0,0)) SWIG_fail
;
11472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11473 result
= (bool)wxLog::GetVerbose();
11474 wxPyEndAllowThreads(__tstate
);
11475 if (PyErr_Occurred()) SWIG_fail
;
11478 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11486 SWIGINTERN PyObject
*_wrap_Log_GetTraceMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11487 PyObject
*resultobj
= 0;
11488 wxTraceMask result
;
11490 if (!SWIG_Python_UnpackTuple(args
,"Log_GetTraceMask",0,0,0)) SWIG_fail
;
11492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11493 result
= (wxTraceMask
)wxLog::GetTraceMask();
11494 wxPyEndAllowThreads(__tstate
);
11495 if (PyErr_Occurred()) SWIG_fail
;
11497 resultobj
= SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result
));
11504 SWIGINTERN PyObject
*_wrap_Log_IsAllowedTraceMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11505 PyObject
*resultobj
= 0;
11506 wxChar
*arg1
= (wxChar
*) 0 ;
11510 PyObject
* obj0
= 0 ;
11511 char * kwnames
[] = {
11512 (char *) "mask", NULL
11515 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Log_IsAllowedTraceMask",kwnames
,&obj0
)) SWIG_fail
;
11516 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxChar
, 0 | 0 );
11517 if (!SWIG_IsOK(res1
)) {
11518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Log_IsAllowedTraceMask" "', expected argument " "1"" of type '" "wxChar const *""'");
11520 arg1
= reinterpret_cast< wxChar
* >(argp1
);
11522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11523 result
= (bool)wxLog::IsAllowedTraceMask((wxChar
const *)arg1
);
11524 wxPyEndAllowThreads(__tstate
);
11525 if (PyErr_Occurred()) SWIG_fail
;
11528 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11536 SWIGINTERN PyObject
*_wrap_Log_GetLogLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11537 PyObject
*resultobj
= 0;
11540 if (!SWIG_Python_UnpackTuple(args
,"Log_GetLogLevel",0,0,0)) SWIG_fail
;
11542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11543 result
= (wxLogLevel
)wxLog::GetLogLevel();
11544 wxPyEndAllowThreads(__tstate
);
11545 if (PyErr_Occurred()) SWIG_fail
;
11547 resultobj
= SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result
));
11554 SWIGINTERN PyObject
*_wrap_Log_GetTimestamp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11555 PyObject
*resultobj
= 0;
11556 wxChar
*result
= 0 ;
11558 if (!SWIG_Python_UnpackTuple(args
,"Log_GetTimestamp",0,0,0)) SWIG_fail
;
11560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11561 result
= (wxChar
*)wxLog::GetTimestamp();
11562 wxPyEndAllowThreads(__tstate
);
11563 if (PyErr_Occurred()) SWIG_fail
;
11565 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxChar
, 0 | 0 );
11572 SWIGINTERN PyObject
*_wrap_Log_TimeStamp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11573 PyObject
*resultobj
= 0;
11576 if (!SWIG_Python_UnpackTuple(args
,"Log_TimeStamp",0,0,0)) SWIG_fail
;
11578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11579 result
= wxLog_TimeStamp();
11580 wxPyEndAllowThreads(__tstate
);
11581 if (PyErr_Occurred()) SWIG_fail
;
11585 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
11587 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
11596 SWIGINTERN PyObject
*_wrap_Log_Destroy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11597 PyObject
*resultobj
= 0;
11598 wxLog
*arg1
= (wxLog
*) 0 ;
11601 PyObject
*swig_obj
[1] ;
11603 if (!args
) SWIG_fail
;
11604 swig_obj
[0] = args
;
11605 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLog
, 0 | 0 );
11606 if (!SWIG_IsOK(res1
)) {
11607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Log_Destroy" "', expected argument " "1"" of type '" "wxLog *""'");
11609 arg1
= reinterpret_cast< wxLog
* >(argp1
);
11611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11612 wxLog_Destroy(arg1
);
11613 wxPyEndAllowThreads(__tstate
);
11614 if (PyErr_Occurred()) SWIG_fail
;
11616 resultobj
= SWIG_Py_Void();
11623 SWIGINTERN PyObject
*Log_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11625 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11626 SWIG_TypeNewClientData(SWIGTYPE_p_wxLog
, SWIG_NewClientData(obj
));
11627 return SWIG_Py_Void();
11630 SWIGINTERN PyObject
*Log_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11631 return SWIG_Python_InitShadowInstance(args
);
11634 SWIGINTERN PyObject
*_wrap_new_LogStderr(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11635 PyObject
*resultobj
= 0;
11636 wxLogStderr
*result
= 0 ;
11638 if (!SWIG_Python_UnpackTuple(args
,"new_LogStderr",0,0,0)) SWIG_fail
;
11640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11641 result
= (wxLogStderr
*)new wxLogStderr();
11642 wxPyEndAllowThreads(__tstate
);
11643 if (PyErr_Occurred()) SWIG_fail
;
11645 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogStderr
, SWIG_POINTER_NEW
| 0 );
11652 SWIGINTERN PyObject
*LogStderr_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11654 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11655 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogStderr
, SWIG_NewClientData(obj
));
11656 return SWIG_Py_Void();
11659 SWIGINTERN PyObject
*LogStderr_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11660 return SWIG_Python_InitShadowInstance(args
);
11663 SWIGINTERN PyObject
*_wrap_new_LogTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11664 PyObject
*resultobj
= 0;
11665 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11666 wxLogTextCtrl
*result
= 0 ;
11669 PyObject
* obj0
= 0 ;
11670 char * kwnames
[] = {
11671 (char *) "pTextCtrl", NULL
11674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_LogTextCtrl",kwnames
,&obj0
)) SWIG_fail
;
11675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTextCtrl
, 0 | 0 );
11676 if (!SWIG_IsOK(res1
)) {
11677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_LogTextCtrl" "', expected argument " "1"" of type '" "wxTextCtrl *""'");
11679 arg1
= reinterpret_cast< wxTextCtrl
* >(argp1
);
11681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11682 result
= (wxLogTextCtrl
*)new wxLogTextCtrl(arg1
);
11683 wxPyEndAllowThreads(__tstate
);
11684 if (PyErr_Occurred()) SWIG_fail
;
11686 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogTextCtrl
, SWIG_POINTER_NEW
| 0 );
11693 SWIGINTERN PyObject
*LogTextCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11695 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11696 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogTextCtrl
, SWIG_NewClientData(obj
));
11697 return SWIG_Py_Void();
11700 SWIGINTERN PyObject
*LogTextCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11701 return SWIG_Python_InitShadowInstance(args
);
11704 SWIGINTERN PyObject
*_wrap_new_LogGui(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11705 PyObject
*resultobj
= 0;
11706 wxLogGui
*result
= 0 ;
11708 if (!SWIG_Python_UnpackTuple(args
,"new_LogGui",0,0,0)) SWIG_fail
;
11710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11711 result
= (wxLogGui
*)new wxLogGui();
11712 wxPyEndAllowThreads(__tstate
);
11713 if (PyErr_Occurred()) SWIG_fail
;
11715 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogGui
, SWIG_POINTER_NEW
| 0 );
11722 SWIGINTERN PyObject
*LogGui_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11724 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11725 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogGui
, SWIG_NewClientData(obj
));
11726 return SWIG_Py_Void();
11729 SWIGINTERN PyObject
*LogGui_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11730 return SWIG_Python_InitShadowInstance(args
);
11733 SWIGINTERN PyObject
*_wrap_new_LogWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11734 PyObject
*resultobj
= 0;
11735 wxFrame
*arg1
= (wxFrame
*) 0 ;
11736 wxString
*arg2
= 0 ;
11737 bool arg3
= (bool) true ;
11738 bool arg4
= (bool) true ;
11739 wxLogWindow
*result
= 0 ;
11742 bool temp2
= false ;
11747 PyObject
* obj0
= 0 ;
11748 PyObject
* obj1
= 0 ;
11749 PyObject
* obj2
= 0 ;
11750 PyObject
* obj3
= 0 ;
11751 char * kwnames
[] = {
11752 (char *) "pParent",(char *) "szTitle",(char *) "bShow",(char *) "bPassToOld", NULL
11755 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_LogWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11756 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
11757 if (!SWIG_IsOK(res1
)) {
11758 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_LogWindow" "', expected argument " "1"" of type '" "wxFrame *""'");
11760 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
11762 arg2
= wxString_in_helper(obj1
);
11763 if (arg2
== NULL
) SWIG_fail
;
11767 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11768 if (!SWIG_IsOK(ecode3
)) {
11769 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_LogWindow" "', expected argument " "3"" of type '" "bool""'");
11771 arg3
= static_cast< bool >(val3
);
11774 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
11775 if (!SWIG_IsOK(ecode4
)) {
11776 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_LogWindow" "', expected argument " "4"" of type '" "bool""'");
11778 arg4
= static_cast< bool >(val4
);
11781 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11782 result
= (wxLogWindow
*)new wxLogWindow(arg1
,(wxString
const &)*arg2
,arg3
,arg4
);
11783 wxPyEndAllowThreads(__tstate
);
11784 if (PyErr_Occurred()) SWIG_fail
;
11786 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogWindow
, SWIG_POINTER_NEW
| 0 );
11801 SWIGINTERN PyObject
*_wrap_LogWindow_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11802 PyObject
*resultobj
= 0;
11803 wxLogWindow
*arg1
= (wxLogWindow
*) 0 ;
11804 bool arg2
= (bool) true ;
11809 PyObject
* obj0
= 0 ;
11810 PyObject
* obj1
= 0 ;
11811 char * kwnames
[] = {
11812 (char *) "self",(char *) "bShow", NULL
11815 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:LogWindow_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11816 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLogWindow
, 0 | 0 );
11817 if (!SWIG_IsOK(res1
)) {
11818 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogWindow_Show" "', expected argument " "1"" of type '" "wxLogWindow *""'");
11820 arg1
= reinterpret_cast< wxLogWindow
* >(argp1
);
11822 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11823 if (!SWIG_IsOK(ecode2
)) {
11824 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "LogWindow_Show" "', expected argument " "2"" of type '" "bool""'");
11826 arg2
= static_cast< bool >(val2
);
11829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11830 (arg1
)->Show(arg2
);
11831 wxPyEndAllowThreads(__tstate
);
11832 if (PyErr_Occurred()) SWIG_fail
;
11834 resultobj
= SWIG_Py_Void();
11841 SWIGINTERN PyObject
*_wrap_LogWindow_GetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11842 PyObject
*resultobj
= 0;
11843 wxLogWindow
*arg1
= (wxLogWindow
*) 0 ;
11844 wxFrame
*result
= 0 ;
11847 PyObject
*swig_obj
[1] ;
11849 if (!args
) SWIG_fail
;
11850 swig_obj
[0] = args
;
11851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogWindow
, 0 | 0 );
11852 if (!SWIG_IsOK(res1
)) {
11853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogWindow_GetFrame" "', expected argument " "1"" of type '" "wxLogWindow const *""'");
11855 arg1
= reinterpret_cast< wxLogWindow
* >(argp1
);
11857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11858 result
= (wxFrame
*)((wxLogWindow
const *)arg1
)->GetFrame();
11859 wxPyEndAllowThreads(__tstate
);
11860 if (PyErr_Occurred()) SWIG_fail
;
11863 resultobj
= wxPyMake_wxObject(result
, (bool)0);
11871 SWIGINTERN PyObject
*_wrap_LogWindow_GetOldLog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11872 PyObject
*resultobj
= 0;
11873 wxLogWindow
*arg1
= (wxLogWindow
*) 0 ;
11874 wxLog
*result
= 0 ;
11877 PyObject
*swig_obj
[1] ;
11879 if (!args
) SWIG_fail
;
11880 swig_obj
[0] = args
;
11881 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogWindow
, 0 | 0 );
11882 if (!SWIG_IsOK(res1
)) {
11883 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogWindow_GetOldLog" "', expected argument " "1"" of type '" "wxLogWindow const *""'");
11885 arg1
= reinterpret_cast< wxLogWindow
* >(argp1
);
11887 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11888 result
= (wxLog
*)((wxLogWindow
const *)arg1
)->GetOldLog();
11889 wxPyEndAllowThreads(__tstate
);
11890 if (PyErr_Occurred()) SWIG_fail
;
11892 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLog
, 0 | 0 );
11899 SWIGINTERN PyObject
*_wrap_LogWindow_IsPassingMessages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11900 PyObject
*resultobj
= 0;
11901 wxLogWindow
*arg1
= (wxLogWindow
*) 0 ;
11905 PyObject
*swig_obj
[1] ;
11907 if (!args
) SWIG_fail
;
11908 swig_obj
[0] = args
;
11909 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogWindow
, 0 | 0 );
11910 if (!SWIG_IsOK(res1
)) {
11911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogWindow_IsPassingMessages" "', expected argument " "1"" of type '" "wxLogWindow const *""'");
11913 arg1
= reinterpret_cast< wxLogWindow
* >(argp1
);
11915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11916 result
= (bool)((wxLogWindow
const *)arg1
)->IsPassingMessages();
11917 wxPyEndAllowThreads(__tstate
);
11918 if (PyErr_Occurred()) SWIG_fail
;
11921 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11929 SWIGINTERN PyObject
*_wrap_LogWindow_PassMessages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11930 PyObject
*resultobj
= 0;
11931 wxLogWindow
*arg1
= (wxLogWindow
*) 0 ;
11937 PyObject
* obj0
= 0 ;
11938 PyObject
* obj1
= 0 ;
11939 char * kwnames
[] = {
11940 (char *) "self",(char *) "bDoPass", NULL
11943 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:LogWindow_PassMessages",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11944 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLogWindow
, 0 | 0 );
11945 if (!SWIG_IsOK(res1
)) {
11946 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogWindow_PassMessages" "', expected argument " "1"" of type '" "wxLogWindow *""'");
11948 arg1
= reinterpret_cast< wxLogWindow
* >(argp1
);
11949 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11950 if (!SWIG_IsOK(ecode2
)) {
11951 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "LogWindow_PassMessages" "', expected argument " "2"" of type '" "bool""'");
11953 arg2
= static_cast< bool >(val2
);
11955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11956 (arg1
)->PassMessages(arg2
);
11957 wxPyEndAllowThreads(__tstate
);
11958 if (PyErr_Occurred()) SWIG_fail
;
11960 resultobj
= SWIG_Py_Void();
11967 SWIGINTERN PyObject
*LogWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11969 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11970 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogWindow
, SWIG_NewClientData(obj
));
11971 return SWIG_Py_Void();
11974 SWIGINTERN PyObject
*LogWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11975 return SWIG_Python_InitShadowInstance(args
);
11978 SWIGINTERN PyObject
*_wrap_new_LogChain(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11979 PyObject
*resultobj
= 0;
11980 wxLog
*arg1
= (wxLog
*) 0 ;
11981 wxLogChain
*result
= 0 ;
11984 PyObject
* obj0
= 0 ;
11985 char * kwnames
[] = {
11986 (char *) "logger", NULL
11989 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_LogChain",kwnames
,&obj0
)) SWIG_fail
;
11990 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLog
, 0 | 0 );
11991 if (!SWIG_IsOK(res1
)) {
11992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_LogChain" "', expected argument " "1"" of type '" "wxLog *""'");
11994 arg1
= reinterpret_cast< wxLog
* >(argp1
);
11996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11997 result
= (wxLogChain
*)new wxLogChain(arg1
);
11998 wxPyEndAllowThreads(__tstate
);
11999 if (PyErr_Occurred()) SWIG_fail
;
12001 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogChain
, SWIG_POINTER_NEW
| 0 );
12008 SWIGINTERN PyObject
*_wrap_LogChain_SetLog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12009 PyObject
*resultobj
= 0;
12010 wxLogChain
*arg1
= (wxLogChain
*) 0 ;
12011 wxLog
*arg2
= (wxLog
*) 0 ;
12016 PyObject
* obj0
= 0 ;
12017 PyObject
* obj1
= 0 ;
12018 char * kwnames
[] = {
12019 (char *) "self",(char *) "logger", NULL
12022 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:LogChain_SetLog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12023 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLogChain
, 0 | 0 );
12024 if (!SWIG_IsOK(res1
)) {
12025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogChain_SetLog" "', expected argument " "1"" of type '" "wxLogChain *""'");
12027 arg1
= reinterpret_cast< wxLogChain
* >(argp1
);
12028 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxLog
, 0 | 0 );
12029 if (!SWIG_IsOK(res2
)) {
12030 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LogChain_SetLog" "', expected argument " "2"" of type '" "wxLog *""'");
12032 arg2
= reinterpret_cast< wxLog
* >(argp2
);
12034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12035 (arg1
)->SetLog(arg2
);
12036 wxPyEndAllowThreads(__tstate
);
12037 if (PyErr_Occurred()) SWIG_fail
;
12039 resultobj
= SWIG_Py_Void();
12046 SWIGINTERN PyObject
*_wrap_LogChain_PassMessages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12047 PyObject
*resultobj
= 0;
12048 wxLogChain
*arg1
= (wxLogChain
*) 0 ;
12054 PyObject
* obj0
= 0 ;
12055 PyObject
* obj1
= 0 ;
12056 char * kwnames
[] = {
12057 (char *) "self",(char *) "bDoPass", NULL
12060 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:LogChain_PassMessages",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12061 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLogChain
, 0 | 0 );
12062 if (!SWIG_IsOK(res1
)) {
12063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogChain_PassMessages" "', expected argument " "1"" of type '" "wxLogChain *""'");
12065 arg1
= reinterpret_cast< wxLogChain
* >(argp1
);
12066 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12067 if (!SWIG_IsOK(ecode2
)) {
12068 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "LogChain_PassMessages" "', expected argument " "2"" of type '" "bool""'");
12070 arg2
= static_cast< bool >(val2
);
12072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12073 (arg1
)->PassMessages(arg2
);
12074 wxPyEndAllowThreads(__tstate
);
12075 if (PyErr_Occurred()) SWIG_fail
;
12077 resultobj
= SWIG_Py_Void();
12084 SWIGINTERN PyObject
*_wrap_LogChain_IsPassingMessages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12085 PyObject
*resultobj
= 0;
12086 wxLogChain
*arg1
= (wxLogChain
*) 0 ;
12090 PyObject
*swig_obj
[1] ;
12092 if (!args
) SWIG_fail
;
12093 swig_obj
[0] = args
;
12094 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogChain
, 0 | 0 );
12095 if (!SWIG_IsOK(res1
)) {
12096 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogChain_IsPassingMessages" "', expected argument " "1"" of type '" "wxLogChain *""'");
12098 arg1
= reinterpret_cast< wxLogChain
* >(argp1
);
12100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12101 result
= (bool)(arg1
)->IsPassingMessages();
12102 wxPyEndAllowThreads(__tstate
);
12103 if (PyErr_Occurred()) SWIG_fail
;
12106 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12114 SWIGINTERN PyObject
*_wrap_LogChain_GetOldLog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12115 PyObject
*resultobj
= 0;
12116 wxLogChain
*arg1
= (wxLogChain
*) 0 ;
12117 wxLog
*result
= 0 ;
12120 PyObject
*swig_obj
[1] ;
12122 if (!args
) SWIG_fail
;
12123 swig_obj
[0] = args
;
12124 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogChain
, 0 | 0 );
12125 if (!SWIG_IsOK(res1
)) {
12126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogChain_GetOldLog" "', expected argument " "1"" of type '" "wxLogChain *""'");
12128 arg1
= reinterpret_cast< wxLogChain
* >(argp1
);
12130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12131 result
= (wxLog
*)(arg1
)->GetOldLog();
12132 wxPyEndAllowThreads(__tstate
);
12133 if (PyErr_Occurred()) SWIG_fail
;
12135 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLog
, 0 | 0 );
12142 SWIGINTERN PyObject
*LogChain_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12144 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12145 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogChain
, SWIG_NewClientData(obj
));
12146 return SWIG_Py_Void();
12149 SWIGINTERN PyObject
*LogChain_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12150 return SWIG_Python_InitShadowInstance(args
);
12153 SWIGINTERN PyObject
*_wrap_new_LogBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12154 PyObject
*resultobj
= 0;
12155 wxLogBuffer
*result
= 0 ;
12157 if (!SWIG_Python_UnpackTuple(args
,"new_LogBuffer",0,0,0)) SWIG_fail
;
12159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12160 result
= (wxLogBuffer
*)new wxLogBuffer();
12161 wxPyEndAllowThreads(__tstate
);
12162 if (PyErr_Occurred()) SWIG_fail
;
12164 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogBuffer
, SWIG_POINTER_NEW
| 0 );
12171 SWIGINTERN PyObject
*_wrap_LogBuffer_GetBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12172 PyObject
*resultobj
= 0;
12173 wxLogBuffer
*arg1
= (wxLogBuffer
*) 0 ;
12174 wxString
*result
= 0 ;
12177 PyObject
*swig_obj
[1] ;
12179 if (!args
) SWIG_fail
;
12180 swig_obj
[0] = args
;
12181 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogBuffer
, 0 | 0 );
12182 if (!SWIG_IsOK(res1
)) {
12183 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogBuffer_GetBuffer" "', expected argument " "1"" of type '" "wxLogBuffer const *""'");
12185 arg1
= reinterpret_cast< wxLogBuffer
* >(argp1
);
12187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12189 wxString
const &_result_ref
= ((wxLogBuffer
const *)arg1
)->GetBuffer();
12190 result
= (wxString
*) &_result_ref
;
12192 wxPyEndAllowThreads(__tstate
);
12193 if (PyErr_Occurred()) SWIG_fail
;
12197 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12199 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12208 SWIGINTERN PyObject
*LogBuffer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12210 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12211 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogBuffer
, SWIG_NewClientData(obj
));
12212 return SWIG_Py_Void();
12215 SWIGINTERN PyObject
*LogBuffer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12216 return SWIG_Python_InitShadowInstance(args
);
12219 SWIGINTERN PyObject
*_wrap_SysErrorCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12220 PyObject
*resultobj
= 0;
12221 unsigned long result
;
12223 if (!SWIG_Python_UnpackTuple(args
,"SysErrorCode",0,0,0)) SWIG_fail
;
12225 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12226 result
= (unsigned long)wxSysErrorCode();
12227 wxPyEndAllowThreads(__tstate
);
12228 if (PyErr_Occurred()) SWIG_fail
;
12230 resultobj
= SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result
));
12237 SWIGINTERN PyObject
*_wrap_SysErrorMsg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12238 PyObject
*resultobj
= 0;
12239 unsigned long arg1
= (unsigned long) 0 ;
12241 unsigned long val1
;
12243 PyObject
* obj0
= 0 ;
12244 char * kwnames
[] = {
12245 (char *) "nErrCode", NULL
12248 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SysErrorMsg",kwnames
,&obj0
)) SWIG_fail
;
12250 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
12251 if (!SWIG_IsOK(ecode1
)) {
12252 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SysErrorMsg" "', expected argument " "1"" of type '" "unsigned long""'");
12254 arg1
= static_cast< unsigned long >(val1
);
12257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12258 result
= wxSysErrorMsg(arg1
);
12259 wxPyEndAllowThreads(__tstate
);
12260 if (PyErr_Occurred()) SWIG_fail
;
12264 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
12266 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
12275 SWIGINTERN PyObject
*_wrap_LogFatalError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12276 PyObject
*resultobj
= 0;
12277 wxString
*arg1
= 0 ;
12278 bool temp1
= false ;
12279 PyObject
* obj0
= 0 ;
12280 char * kwnames
[] = {
12281 (char *) "msg", NULL
12284 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogFatalError",kwnames
,&obj0
)) SWIG_fail
;
12286 arg1
= wxString_in_helper(obj0
);
12287 if (arg1
== NULL
) SWIG_fail
;
12291 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12292 wxPyLogFatalError((wxString
const &)*arg1
);
12293 wxPyEndAllowThreads(__tstate
);
12294 if (PyErr_Occurred()) SWIG_fail
;
12296 resultobj
= SWIG_Py_Void();
12311 SWIGINTERN PyObject
*_wrap_LogError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12312 PyObject
*resultobj
= 0;
12313 wxString
*arg1
= 0 ;
12314 bool temp1
= false ;
12315 PyObject
* obj0
= 0 ;
12316 char * kwnames
[] = {
12317 (char *) "msg", NULL
12320 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogError",kwnames
,&obj0
)) SWIG_fail
;
12322 arg1
= wxString_in_helper(obj0
);
12323 if (arg1
== NULL
) SWIG_fail
;
12327 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12328 wxPyLogError((wxString
const &)*arg1
);
12329 wxPyEndAllowThreads(__tstate
);
12330 if (PyErr_Occurred()) SWIG_fail
;
12332 resultobj
= SWIG_Py_Void();
12347 SWIGINTERN PyObject
*_wrap_LogWarning(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12348 PyObject
*resultobj
= 0;
12349 wxString
*arg1
= 0 ;
12350 bool temp1
= false ;
12351 PyObject
* obj0
= 0 ;
12352 char * kwnames
[] = {
12353 (char *) "msg", NULL
12356 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogWarning",kwnames
,&obj0
)) SWIG_fail
;
12358 arg1
= wxString_in_helper(obj0
);
12359 if (arg1
== NULL
) SWIG_fail
;
12363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12364 wxPyLogWarning((wxString
const &)*arg1
);
12365 wxPyEndAllowThreads(__tstate
);
12366 if (PyErr_Occurred()) SWIG_fail
;
12368 resultobj
= SWIG_Py_Void();
12383 SWIGINTERN PyObject
*_wrap_LogMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12384 PyObject
*resultobj
= 0;
12385 wxString
*arg1
= 0 ;
12386 bool temp1
= false ;
12387 PyObject
* obj0
= 0 ;
12388 char * kwnames
[] = {
12389 (char *) "msg", NULL
12392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogMessage",kwnames
,&obj0
)) SWIG_fail
;
12394 arg1
= wxString_in_helper(obj0
);
12395 if (arg1
== NULL
) SWIG_fail
;
12399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12400 wxPyLogMessage((wxString
const &)*arg1
);
12401 wxPyEndAllowThreads(__tstate
);
12402 if (PyErr_Occurred()) SWIG_fail
;
12404 resultobj
= SWIG_Py_Void();
12419 SWIGINTERN PyObject
*_wrap_LogInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12420 PyObject
*resultobj
= 0;
12421 wxString
*arg1
= 0 ;
12422 bool temp1
= false ;
12423 PyObject
* obj0
= 0 ;
12424 char * kwnames
[] = {
12425 (char *) "msg", NULL
12428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogInfo",kwnames
,&obj0
)) SWIG_fail
;
12430 arg1
= wxString_in_helper(obj0
);
12431 if (arg1
== NULL
) SWIG_fail
;
12435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12436 wxPyLogInfo((wxString
const &)*arg1
);
12437 wxPyEndAllowThreads(__tstate
);
12438 if (PyErr_Occurred()) SWIG_fail
;
12440 resultobj
= SWIG_Py_Void();
12455 SWIGINTERN PyObject
*_wrap_LogDebug(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12456 PyObject
*resultobj
= 0;
12457 wxString
*arg1
= 0 ;
12458 bool temp1
= false ;
12459 PyObject
* obj0
= 0 ;
12460 char * kwnames
[] = {
12461 (char *) "msg", NULL
12464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogDebug",kwnames
,&obj0
)) SWIG_fail
;
12466 arg1
= wxString_in_helper(obj0
);
12467 if (arg1
== NULL
) SWIG_fail
;
12471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12472 wxPyLogDebug((wxString
const &)*arg1
);
12473 wxPyEndAllowThreads(__tstate
);
12474 if (PyErr_Occurred()) SWIG_fail
;
12476 resultobj
= SWIG_Py_Void();
12491 SWIGINTERN PyObject
*_wrap_LogVerbose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12492 PyObject
*resultobj
= 0;
12493 wxString
*arg1
= 0 ;
12494 bool temp1
= false ;
12495 PyObject
* obj0
= 0 ;
12496 char * kwnames
[] = {
12497 (char *) "msg", NULL
12500 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogVerbose",kwnames
,&obj0
)) SWIG_fail
;
12502 arg1
= wxString_in_helper(obj0
);
12503 if (arg1
== NULL
) SWIG_fail
;
12507 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12508 wxPyLogVerbose((wxString
const &)*arg1
);
12509 wxPyEndAllowThreads(__tstate
);
12510 if (PyErr_Occurred()) SWIG_fail
;
12512 resultobj
= SWIG_Py_Void();
12527 SWIGINTERN PyObject
*_wrap_LogStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12528 PyObject
*resultobj
= 0;
12529 wxString
*arg1
= 0 ;
12530 bool temp1
= false ;
12531 PyObject
* obj0
= 0 ;
12532 char * kwnames
[] = {
12533 (char *) "msg", NULL
12536 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogStatus",kwnames
,&obj0
)) SWIG_fail
;
12538 arg1
= wxString_in_helper(obj0
);
12539 if (arg1
== NULL
) SWIG_fail
;
12543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12544 wxPyLogStatus((wxString
const &)*arg1
);
12545 wxPyEndAllowThreads(__tstate
);
12546 if (PyErr_Occurred()) SWIG_fail
;
12548 resultobj
= SWIG_Py_Void();
12563 SWIGINTERN PyObject
*_wrap_LogStatusFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12564 PyObject
*resultobj
= 0;
12565 wxFrame
*arg1
= (wxFrame
*) 0 ;
12566 wxString
*arg2
= 0 ;
12569 bool temp2
= false ;
12570 PyObject
* obj0
= 0 ;
12571 PyObject
* obj1
= 0 ;
12572 char * kwnames
[] = {
12573 (char *) "pFrame",(char *) "msg", NULL
12576 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:LogStatusFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12577 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
12578 if (!SWIG_IsOK(res1
)) {
12579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LogStatusFrame" "', expected argument " "1"" of type '" "wxFrame *""'");
12581 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
12583 arg2
= wxString_in_helper(obj1
);
12584 if (arg2
== NULL
) SWIG_fail
;
12588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12589 wxPyLogStatusFrame(arg1
,(wxString
const &)*arg2
);
12590 wxPyEndAllowThreads(__tstate
);
12591 if (PyErr_Occurred()) SWIG_fail
;
12593 resultobj
= SWIG_Py_Void();
12608 SWIGINTERN PyObject
*_wrap_LogSysError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12609 PyObject
*resultobj
= 0;
12610 wxString
*arg1
= 0 ;
12611 bool temp1
= false ;
12612 PyObject
* obj0
= 0 ;
12613 char * kwnames
[] = {
12614 (char *) "msg", NULL
12617 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:LogSysError",kwnames
,&obj0
)) SWIG_fail
;
12619 arg1
= wxString_in_helper(obj0
);
12620 if (arg1
== NULL
) SWIG_fail
;
12624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12625 wxPyLogSysError((wxString
const &)*arg1
);
12626 wxPyEndAllowThreads(__tstate
);
12627 if (PyErr_Occurred()) SWIG_fail
;
12629 resultobj
= SWIG_Py_Void();
12644 SWIGINTERN PyObject
*_wrap_LogGeneric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12645 PyObject
*resultobj
= 0;
12646 unsigned long arg1
;
12647 wxString
*arg2
= 0 ;
12648 unsigned long val1
;
12650 bool temp2
= false ;
12651 PyObject
* obj0
= 0 ;
12652 PyObject
* obj1
= 0 ;
12653 char * kwnames
[] = {
12654 (char *) "level",(char *) "msg", NULL
12657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:LogGeneric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12658 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
12659 if (!SWIG_IsOK(ecode1
)) {
12660 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "LogGeneric" "', expected argument " "1"" of type '" "unsigned long""'");
12662 arg1
= static_cast< unsigned long >(val1
);
12664 arg2
= wxString_in_helper(obj1
);
12665 if (arg2
== NULL
) SWIG_fail
;
12669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12670 wxPyLogGeneric(arg1
,(wxString
const &)*arg2
);
12671 wxPyEndAllowThreads(__tstate
);
12672 if (PyErr_Occurred()) SWIG_fail
;
12674 resultobj
= SWIG_Py_Void();
12689 SWIGINTERN PyObject
*_wrap_LogTrace__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
12690 PyObject
*resultobj
= 0;
12691 unsigned long arg1
;
12692 wxString
*arg2
= 0 ;
12693 unsigned long val1
;
12695 bool temp2
= false ;
12697 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
12698 ecode1
= SWIG_AsVal_unsigned_SS_long(swig_obj
[0], &val1
);
12699 if (!SWIG_IsOK(ecode1
)) {
12700 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "LogTrace" "', expected argument " "1"" of type '" "unsigned long""'");
12702 arg1
= static_cast< unsigned long >(val1
);
12704 arg2
= wxString_in_helper(swig_obj
[1]);
12705 if (arg2
== NULL
) SWIG_fail
;
12709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12710 wxPyLogTrace(arg1
,(wxString
const &)*arg2
);
12711 wxPyEndAllowThreads(__tstate
);
12712 if (PyErr_Occurred()) SWIG_fail
;
12714 resultobj
= SWIG_Py_Void();
12729 SWIGINTERN PyObject
*_wrap_LogTrace__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
12730 PyObject
*resultobj
= 0;
12731 wxString
*arg1
= 0 ;
12732 wxString
*arg2
= 0 ;
12733 bool temp1
= false ;
12734 bool temp2
= false ;
12736 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
12738 arg1
= wxString_in_helper(swig_obj
[0]);
12739 if (arg1
== NULL
) SWIG_fail
;
12743 arg2
= wxString_in_helper(swig_obj
[1]);
12744 if (arg2
== NULL
) SWIG_fail
;
12748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12749 wxPyLogTrace((wxString
const &)*arg1
,(wxString
const &)*arg2
);
12750 wxPyEndAllowThreads(__tstate
);
12751 if (PyErr_Occurred()) SWIG_fail
;
12753 resultobj
= SWIG_Py_Void();
12776 SWIGINTERN PyObject
*_wrap_LogTrace(PyObject
*self
, PyObject
*args
) {
12780 if (!(argc
= SWIG_Python_UnpackTuple(args
,"LogTrace",0,2,argv
))) SWIG_fail
;
12786 _v
= PyString_Check(argv
[0]) || PyUnicode_Check(argv
[0]);
12789 if (!_v
) goto check_1
;
12790 return _wrap_LogTrace__SWIG_1(self
, argc
, argv
);
12795 return _wrap_LogTrace__SWIG_0(self
, argc
, argv
);
12799 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'LogTrace'");
12804 SWIGINTERN PyObject
*_wrap_SafeShowMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12805 PyObject
*resultobj
= 0;
12806 wxString
*arg1
= 0 ;
12807 wxString
*arg2
= 0 ;
12808 bool temp1
= false ;
12809 bool temp2
= false ;
12810 PyObject
* obj0
= 0 ;
12811 PyObject
* obj1
= 0 ;
12812 char * kwnames
[] = {
12813 (char *) "title",(char *) "text", NULL
12816 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SafeShowMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12818 arg1
= wxString_in_helper(obj0
);
12819 if (arg1
== NULL
) SWIG_fail
;
12823 arg2
= wxString_in_helper(obj1
);
12824 if (arg2
== NULL
) SWIG_fail
;
12828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12829 wxSafeShowMessage((wxString
const &)*arg1
,(wxString
const &)*arg2
);
12830 wxPyEndAllowThreads(__tstate
);
12831 if (PyErr_Occurred()) SWIG_fail
;
12833 resultobj
= SWIG_Py_Void();
12856 SWIGINTERN PyObject
*_wrap_new_LogNull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12857 PyObject
*resultobj
= 0;
12858 wxLogNull
*result
= 0 ;
12860 if (!SWIG_Python_UnpackTuple(args
,"new_LogNull",0,0,0)) SWIG_fail
;
12862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12863 result
= (wxLogNull
*)new wxLogNull();
12864 wxPyEndAllowThreads(__tstate
);
12865 if (PyErr_Occurred()) SWIG_fail
;
12867 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLogNull
, SWIG_POINTER_NEW
| 0 );
12874 SWIGINTERN PyObject
*_wrap_delete_LogNull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12875 PyObject
*resultobj
= 0;
12876 wxLogNull
*arg1
= (wxLogNull
*) 0 ;
12879 PyObject
*swig_obj
[1] ;
12881 if (!args
) SWIG_fail
;
12882 swig_obj
[0] = args
;
12883 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLogNull
, SWIG_POINTER_DISOWN
| 0 );
12884 if (!SWIG_IsOK(res1
)) {
12885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_LogNull" "', expected argument " "1"" of type '" "wxLogNull *""'");
12887 arg1
= reinterpret_cast< wxLogNull
* >(argp1
);
12889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12892 wxPyEndAllowThreads(__tstate
);
12893 if (PyErr_Occurred()) SWIG_fail
;
12895 resultobj
= SWIG_Py_Void();
12902 SWIGINTERN PyObject
*LogNull_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12904 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12905 SWIG_TypeNewClientData(SWIGTYPE_p_wxLogNull
, SWIG_NewClientData(obj
));
12906 return SWIG_Py_Void();
12909 SWIGINTERN PyObject
*LogNull_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12910 return SWIG_Python_InitShadowInstance(args
);
12913 SWIGINTERN PyObject
*_wrap_new_PyLog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12914 PyObject
*resultobj
= 0;
12915 wxPyLog
*result
= 0 ;
12917 if (!SWIG_Python_UnpackTuple(args
,"new_PyLog",0,0,0)) SWIG_fail
;
12919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12920 result
= (wxPyLog
*)new wxPyLog();
12921 wxPyEndAllowThreads(__tstate
);
12922 if (PyErr_Occurred()) SWIG_fail
;
12924 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyLog
, SWIG_POINTER_NEW
| 0 );
12931 SWIGINTERN PyObject
*_wrap_PyLog__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12932 PyObject
*resultobj
= 0;
12933 wxPyLog
*arg1
= (wxPyLog
*) 0 ;
12934 PyObject
*arg2
= (PyObject
*) 0 ;
12935 PyObject
*arg3
= (PyObject
*) 0 ;
12938 PyObject
* obj0
= 0 ;
12939 PyObject
* obj1
= 0 ;
12940 PyObject
* obj2
= 0 ;
12941 char * kwnames
[] = {
12942 (char *) "self",(char *) "self",(char *) "_class", NULL
12945 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyLog__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12946 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyLog
, 0 | 0 );
12947 if (!SWIG_IsOK(res1
)) {
12948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyLog__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyLog *""'");
12950 arg1
= reinterpret_cast< wxPyLog
* >(argp1
);
12954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12955 (arg1
)->_setCallbackInfo(arg2
,arg3
);
12956 wxPyEndAllowThreads(__tstate
);
12957 if (PyErr_Occurred()) SWIG_fail
;
12959 resultobj
= SWIG_Py_Void();
12966 SWIGINTERN PyObject
*PyLog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12968 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12969 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyLog
, SWIG_NewClientData(obj
));
12970 return SWIG_Py_Void();
12973 SWIGINTERN PyObject
*PyLog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12974 return SWIG_Python_InitShadowInstance(args
);
12977 SWIGINTERN PyObject
*_wrap_Process_Kill(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12978 PyObject
*resultobj
= 0;
12980 wxSignal arg2
= (wxSignal
) wxSIGTERM
;
12981 int arg3
= (int) wxKILL_NOCHILDREN
;
12982 wxKillError result
;
12989 PyObject
* obj0
= 0 ;
12990 PyObject
* obj1
= 0 ;
12991 PyObject
* obj2
= 0 ;
12992 char * kwnames
[] = {
12993 (char *) "pid",(char *) "sig",(char *) "flags", NULL
12996 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:Process_Kill",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12997 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
12998 if (!SWIG_IsOK(ecode1
)) {
12999 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Process_Kill" "', expected argument " "1"" of type '" "int""'");
13001 arg1
= static_cast< int >(val1
);
13003 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13004 if (!SWIG_IsOK(ecode2
)) {
13005 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Process_Kill" "', expected argument " "2"" of type '" "wxSignal""'");
13007 arg2
= static_cast< wxSignal
>(val2
);
13010 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13011 if (!SWIG_IsOK(ecode3
)) {
13012 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Process_Kill" "', expected argument " "3"" of type '" "int""'");
13014 arg3
= static_cast< int >(val3
);
13017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13018 result
= (wxKillError
)wxPyProcess::Kill(arg1
,arg2
,arg3
);
13019 wxPyEndAllowThreads(__tstate
);
13020 if (PyErr_Occurred()) SWIG_fail
;
13022 resultobj
= SWIG_From_int(static_cast< int >(result
));
13029 SWIGINTERN PyObject
*_wrap_Process_Exists(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13030 PyObject
*resultobj
= 0;
13035 PyObject
* obj0
= 0 ;
13036 char * kwnames
[] = {
13037 (char *) "pid", NULL
13040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Process_Exists",kwnames
,&obj0
)) SWIG_fail
;
13041 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13042 if (!SWIG_IsOK(ecode1
)) {
13043 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Process_Exists" "', expected argument " "1"" of type '" "int""'");
13045 arg1
= static_cast< int >(val1
);
13047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13048 result
= (bool)wxPyProcess::Exists(arg1
);
13049 wxPyEndAllowThreads(__tstate
);
13050 if (PyErr_Occurred()) SWIG_fail
;
13053 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13061 SWIGINTERN PyObject
*_wrap_Process_Open(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13062 PyObject
*resultobj
= 0;
13063 wxString
*arg1
= 0 ;
13064 int arg2
= (int) wxEXEC_ASYNC
;
13065 wxPyProcess
*result
= 0 ;
13066 bool temp1
= false ;
13069 PyObject
* obj0
= 0 ;
13070 PyObject
* obj1
= 0 ;
13071 char * kwnames
[] = {
13072 (char *) "cmd",(char *) "flags", NULL
13075 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Process_Open",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13077 arg1
= wxString_in_helper(obj0
);
13078 if (arg1
== NULL
) SWIG_fail
;
13082 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13083 if (!SWIG_IsOK(ecode2
)) {
13084 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Process_Open" "', expected argument " "2"" of type '" "int""'");
13086 arg2
= static_cast< int >(val2
);
13089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13090 result
= (wxPyProcess
*)wxPyProcess::Open((wxString
const &)*arg1
,arg2
);
13091 wxPyEndAllowThreads(__tstate
);
13092 if (PyErr_Occurred()) SWIG_fail
;
13094 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13109 SWIGINTERN PyObject
*_wrap_new_Process(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13110 PyObject
*resultobj
= 0;
13111 wxEvtHandler
*arg1
= (wxEvtHandler
*) NULL
;
13112 int arg2
= (int) -1 ;
13113 wxPyProcess
*result
= 0 ;
13118 PyObject
* obj0
= 0 ;
13119 PyObject
* obj1
= 0 ;
13120 char * kwnames
[] = {
13121 (char *) "parent",(char *) "id", NULL
13124 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_Process",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13126 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEvtHandler
, 0 | 0 );
13127 if (!SWIG_IsOK(res1
)) {
13128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Process" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
13130 arg1
= reinterpret_cast< wxEvtHandler
* >(argp1
);
13133 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13134 if (!SWIG_IsOK(ecode2
)) {
13135 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Process" "', expected argument " "2"" of type '" "int""'");
13137 arg2
= static_cast< int >(val2
);
13140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13141 result
= (wxPyProcess
*)new wxPyProcess(arg1
,arg2
);
13142 wxPyEndAllowThreads(__tstate
);
13143 if (PyErr_Occurred()) SWIG_fail
;
13145 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyProcess
, SWIG_POINTER_NEW
| 0 );
13152 SWIGINTERN PyObject
*_wrap_Process__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13153 PyObject
*resultobj
= 0;
13154 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13155 PyObject
*arg2
= (PyObject
*) 0 ;
13156 PyObject
*arg3
= (PyObject
*) 0 ;
13159 PyObject
* obj0
= 0 ;
13160 PyObject
* obj1
= 0 ;
13161 PyObject
* obj2
= 0 ;
13162 char * kwnames
[] = {
13163 (char *) "self",(char *) "self",(char *) "_class", NULL
13166 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Process__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13167 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13168 if (!SWIG_IsOK(res1
)) {
13169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13171 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13176 (arg1
)->_setCallbackInfo(arg2
,arg3
);
13177 wxPyEndAllowThreads(__tstate
);
13178 if (PyErr_Occurred()) SWIG_fail
;
13180 resultobj
= SWIG_Py_Void();
13187 SWIGINTERN PyObject
*_wrap_Process_OnTerminate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13188 PyObject
*resultobj
= 0;
13189 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13198 PyObject
* obj0
= 0 ;
13199 PyObject
* obj1
= 0 ;
13200 PyObject
* obj2
= 0 ;
13201 char * kwnames
[] = {
13202 (char *) "self",(char *) "pid",(char *) "status", NULL
13205 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Process_OnTerminate",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13206 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13207 if (!SWIG_IsOK(res1
)) {
13208 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_OnTerminate" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13210 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13211 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13212 if (!SWIG_IsOK(ecode2
)) {
13213 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Process_OnTerminate" "', expected argument " "2"" of type '" "int""'");
13215 arg2
= static_cast< int >(val2
);
13216 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13217 if (!SWIG_IsOK(ecode3
)) {
13218 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Process_OnTerminate" "', expected argument " "3"" of type '" "int""'");
13220 arg3
= static_cast< int >(val3
);
13222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13223 (arg1
)->OnTerminate(arg2
,arg3
);
13224 wxPyEndAllowThreads(__tstate
);
13225 if (PyErr_Occurred()) SWIG_fail
;
13227 resultobj
= SWIG_Py_Void();
13234 SWIGINTERN PyObject
*_wrap_Process_Redirect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13235 PyObject
*resultobj
= 0;
13236 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13239 PyObject
*swig_obj
[1] ;
13241 if (!args
) SWIG_fail
;
13242 swig_obj
[0] = args
;
13243 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13244 if (!SWIG_IsOK(res1
)) {
13245 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_Redirect" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13247 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13250 (arg1
)->Redirect();
13251 wxPyEndAllowThreads(__tstate
);
13252 if (PyErr_Occurred()) SWIG_fail
;
13254 resultobj
= SWIG_Py_Void();
13261 SWIGINTERN PyObject
*_wrap_Process_IsRedirected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13262 PyObject
*resultobj
= 0;
13263 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13267 PyObject
*swig_obj
[1] ;
13269 if (!args
) SWIG_fail
;
13270 swig_obj
[0] = args
;
13271 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13272 if (!SWIG_IsOK(res1
)) {
13273 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_IsRedirected" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13275 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13278 result
= (bool)(arg1
)->IsRedirected();
13279 wxPyEndAllowThreads(__tstate
);
13280 if (PyErr_Occurred()) SWIG_fail
;
13283 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13291 SWIGINTERN PyObject
*_wrap_Process_Detach(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13292 PyObject
*resultobj
= 0;
13293 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13296 PyObject
*swig_obj
[1] ;
13298 if (!args
) SWIG_fail
;
13299 swig_obj
[0] = args
;
13300 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13301 if (!SWIG_IsOK(res1
)) {
13302 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_Detach" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13304 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13308 wxPyEndAllowThreads(__tstate
);
13309 if (PyErr_Occurred()) SWIG_fail
;
13311 resultobj
= SWIG_Py_Void();
13318 SWIGINTERN PyObject
*_wrap_Process_GetInputStream(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13319 PyObject
*resultobj
= 0;
13320 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13321 wxInputStream
*result
= 0 ;
13324 PyObject
*swig_obj
[1] ;
13326 if (!args
) SWIG_fail
;
13327 swig_obj
[0] = args
;
13328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13329 if (!SWIG_IsOK(res1
)) {
13330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_GetInputStream" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13332 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13335 result
= (wxInputStream
*)(arg1
)->GetInputStream();
13336 wxPyEndAllowThreads(__tstate
);
13337 if (PyErr_Occurred()) SWIG_fail
;
13340 wxPyInputStream
* _ptr
= NULL
;
13343 _ptr
= new wxPyInputStream(result
);
13345 resultobj
= wxPyConstructObject(_ptr
, wxT("wxPyInputStream"), 0);
13353 SWIGINTERN PyObject
*_wrap_Process_GetErrorStream(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13354 PyObject
*resultobj
= 0;
13355 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13356 wxInputStream
*result
= 0 ;
13359 PyObject
*swig_obj
[1] ;
13361 if (!args
) SWIG_fail
;
13362 swig_obj
[0] = args
;
13363 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13364 if (!SWIG_IsOK(res1
)) {
13365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_GetErrorStream" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13367 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13370 result
= (wxInputStream
*)(arg1
)->GetErrorStream();
13371 wxPyEndAllowThreads(__tstate
);
13372 if (PyErr_Occurred()) SWIG_fail
;
13375 wxPyInputStream
* _ptr
= NULL
;
13378 _ptr
= new wxPyInputStream(result
);
13380 resultobj
= wxPyConstructObject(_ptr
, wxT("wxPyInputStream"), 0);
13388 SWIGINTERN PyObject
*_wrap_Process_GetOutputStream(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13389 PyObject
*resultobj
= 0;
13390 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13391 wxOutputStream
*result
= 0 ;
13394 PyObject
*swig_obj
[1] ;
13396 if (!args
) SWIG_fail
;
13397 swig_obj
[0] = args
;
13398 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13399 if (!SWIG_IsOK(res1
)) {
13400 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_GetOutputStream" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13402 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13405 result
= (wxOutputStream
*)(arg1
)->GetOutputStream();
13406 wxPyEndAllowThreads(__tstate
);
13407 if (PyErr_Occurred()) SWIG_fail
;
13409 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxOutputStream
, 0 | 0 );
13416 SWIGINTERN PyObject
*_wrap_Process_CloseOutput(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13417 PyObject
*resultobj
= 0;
13418 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13421 PyObject
*swig_obj
[1] ;
13423 if (!args
) SWIG_fail
;
13424 swig_obj
[0] = args
;
13425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13426 if (!SWIG_IsOK(res1
)) {
13427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_CloseOutput" "', expected argument " "1"" of type '" "wxPyProcess *""'");
13429 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13432 (arg1
)->CloseOutput();
13433 wxPyEndAllowThreads(__tstate
);
13434 if (PyErr_Occurred()) SWIG_fail
;
13436 resultobj
= SWIG_Py_Void();
13443 SWIGINTERN PyObject
*_wrap_Process_IsInputOpened(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13444 PyObject
*resultobj
= 0;
13445 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13449 PyObject
*swig_obj
[1] ;
13451 if (!args
) SWIG_fail
;
13452 swig_obj
[0] = args
;
13453 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13454 if (!SWIG_IsOK(res1
)) {
13455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_IsInputOpened" "', expected argument " "1"" of type '" "wxPyProcess const *""'");
13457 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13460 result
= (bool)((wxPyProcess
const *)arg1
)->IsInputOpened();
13461 wxPyEndAllowThreads(__tstate
);
13462 if (PyErr_Occurred()) SWIG_fail
;
13465 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13473 SWIGINTERN PyObject
*_wrap_Process_IsInputAvailable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13474 PyObject
*resultobj
= 0;
13475 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13479 PyObject
*swig_obj
[1] ;
13481 if (!args
) SWIG_fail
;
13482 swig_obj
[0] = args
;
13483 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13484 if (!SWIG_IsOK(res1
)) {
13485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_IsInputAvailable" "', expected argument " "1"" of type '" "wxPyProcess const *""'");
13487 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13490 result
= (bool)((wxPyProcess
const *)arg1
)->IsInputAvailable();
13491 wxPyEndAllowThreads(__tstate
);
13492 if (PyErr_Occurred()) SWIG_fail
;
13495 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13503 SWIGINTERN PyObject
*_wrap_Process_IsErrorAvailable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13504 PyObject
*resultobj
= 0;
13505 wxPyProcess
*arg1
= (wxPyProcess
*) 0 ;
13509 PyObject
*swig_obj
[1] ;
13511 if (!args
) SWIG_fail
;
13512 swig_obj
[0] = args
;
13513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13514 if (!SWIG_IsOK(res1
)) {
13515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Process_IsErrorAvailable" "', expected argument " "1"" of type '" "wxPyProcess const *""'");
13517 arg1
= reinterpret_cast< wxPyProcess
* >(argp1
);
13519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13520 result
= (bool)((wxPyProcess
const *)arg1
)->IsErrorAvailable();
13521 wxPyEndAllowThreads(__tstate
);
13522 if (PyErr_Occurred()) SWIG_fail
;
13525 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13533 SWIGINTERN PyObject
*Process_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13535 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13536 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyProcess
, SWIG_NewClientData(obj
));
13537 return SWIG_Py_Void();
13540 SWIGINTERN PyObject
*Process_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13541 return SWIG_Python_InitShadowInstance(args
);
13544 SWIGINTERN PyObject
*_wrap_new_ProcessEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13545 PyObject
*resultobj
= 0;
13546 int arg1
= (int) 0 ;
13547 int arg2
= (int) 0 ;
13548 int arg3
= (int) 0 ;
13549 wxProcessEvent
*result
= 0 ;
13556 PyObject
* obj0
= 0 ;
13557 PyObject
* obj1
= 0 ;
13558 PyObject
* obj2
= 0 ;
13559 char * kwnames
[] = {
13560 (char *) "id",(char *) "pid",(char *) "exitcode", NULL
13563 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:new_ProcessEvent",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13565 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13566 if (!SWIG_IsOK(ecode1
)) {
13567 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_ProcessEvent" "', expected argument " "1"" of type '" "int""'");
13569 arg1
= static_cast< int >(val1
);
13572 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13573 if (!SWIG_IsOK(ecode2
)) {
13574 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_ProcessEvent" "', expected argument " "2"" of type '" "int""'");
13576 arg2
= static_cast< int >(val2
);
13579 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13580 if (!SWIG_IsOK(ecode3
)) {
13581 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_ProcessEvent" "', expected argument " "3"" of type '" "int""'");
13583 arg3
= static_cast< int >(val3
);
13586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13587 result
= (wxProcessEvent
*)new wxProcessEvent(arg1
,arg2
,arg3
);
13588 wxPyEndAllowThreads(__tstate
);
13589 if (PyErr_Occurred()) SWIG_fail
;
13591 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxProcessEvent
, SWIG_POINTER_NEW
| 0 );
13598 SWIGINTERN PyObject
*_wrap_ProcessEvent_GetPid(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13599 PyObject
*resultobj
= 0;
13600 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13604 PyObject
*swig_obj
[1] ;
13606 if (!args
) SWIG_fail
;
13607 swig_obj
[0] = args
;
13608 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13609 if (!SWIG_IsOK(res1
)) {
13610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_GetPid" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13612 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13615 result
= (int)(arg1
)->GetPid();
13616 wxPyEndAllowThreads(__tstate
);
13617 if (PyErr_Occurred()) SWIG_fail
;
13619 resultobj
= SWIG_From_int(static_cast< int >(result
));
13626 SWIGINTERN PyObject
*_wrap_ProcessEvent_GetExitCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13627 PyObject
*resultobj
= 0;
13628 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13632 PyObject
*swig_obj
[1] ;
13634 if (!args
) SWIG_fail
;
13635 swig_obj
[0] = args
;
13636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13637 if (!SWIG_IsOK(res1
)) {
13638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_GetExitCode" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13640 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13643 result
= (int)(arg1
)->GetExitCode();
13644 wxPyEndAllowThreads(__tstate
);
13645 if (PyErr_Occurred()) SWIG_fail
;
13647 resultobj
= SWIG_From_int(static_cast< int >(result
));
13654 SWIGINTERN PyObject
*_wrap_ProcessEvent_m_pid_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13655 PyObject
*resultobj
= 0;
13656 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13662 PyObject
*swig_obj
[2] ;
13664 if (!SWIG_Python_UnpackTuple(args
,"ProcessEvent_m_pid_set",2,2,swig_obj
)) SWIG_fail
;
13665 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13666 if (!SWIG_IsOK(res1
)) {
13667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_m_pid_set" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13669 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13670 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
13671 if (!SWIG_IsOK(ecode2
)) {
13672 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ProcessEvent_m_pid_set" "', expected argument " "2"" of type '" "int""'");
13674 arg2
= static_cast< int >(val2
);
13675 if (arg1
) (arg1
)->m_pid
= arg2
;
13677 resultobj
= SWIG_Py_Void();
13684 SWIGINTERN PyObject
*_wrap_ProcessEvent_m_pid_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13685 PyObject
*resultobj
= 0;
13686 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13690 PyObject
*swig_obj
[1] ;
13692 if (!args
) SWIG_fail
;
13693 swig_obj
[0] = args
;
13694 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13695 if (!SWIG_IsOK(res1
)) {
13696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_m_pid_get" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13698 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13699 result
= (int) ((arg1
)->m_pid
);
13700 resultobj
= SWIG_From_int(static_cast< int >(result
));
13707 SWIGINTERN PyObject
*_wrap_ProcessEvent_m_exitcode_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13708 PyObject
*resultobj
= 0;
13709 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13715 PyObject
*swig_obj
[2] ;
13717 if (!SWIG_Python_UnpackTuple(args
,"ProcessEvent_m_exitcode_set",2,2,swig_obj
)) SWIG_fail
;
13718 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13719 if (!SWIG_IsOK(res1
)) {
13720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_m_exitcode_set" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13722 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13723 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
13724 if (!SWIG_IsOK(ecode2
)) {
13725 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ProcessEvent_m_exitcode_set" "', expected argument " "2"" of type '" "int""'");
13727 arg2
= static_cast< int >(val2
);
13728 if (arg1
) (arg1
)->m_exitcode
= arg2
;
13730 resultobj
= SWIG_Py_Void();
13737 SWIGINTERN PyObject
*_wrap_ProcessEvent_m_exitcode_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13738 PyObject
*resultobj
= 0;
13739 wxProcessEvent
*arg1
= (wxProcessEvent
*) 0 ;
13743 PyObject
*swig_obj
[1] ;
13745 if (!args
) SWIG_fail
;
13746 swig_obj
[0] = args
;
13747 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProcessEvent
, 0 | 0 );
13748 if (!SWIG_IsOK(res1
)) {
13749 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProcessEvent_m_exitcode_get" "', expected argument " "1"" of type '" "wxProcessEvent *""'");
13751 arg1
= reinterpret_cast< wxProcessEvent
* >(argp1
);
13752 result
= (int) ((arg1
)->m_exitcode
);
13753 resultobj
= SWIG_From_int(static_cast< int >(result
));
13760 SWIGINTERN PyObject
*ProcessEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13762 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13763 SWIG_TypeNewClientData(SWIGTYPE_p_wxProcessEvent
, SWIG_NewClientData(obj
));
13764 return SWIG_Py_Void();
13767 SWIGINTERN PyObject
*ProcessEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13768 return SWIG_Python_InitShadowInstance(args
);
13771 SWIGINTERN PyObject
*_wrap_Execute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13772 PyObject
*resultobj
= 0;
13773 wxString
*arg1
= 0 ;
13774 int arg2
= (int) wxEXEC_ASYNC
;
13775 wxPyProcess
*arg3
= (wxPyProcess
*) NULL
;
13777 bool temp1
= false ;
13782 PyObject
* obj0
= 0 ;
13783 PyObject
* obj1
= 0 ;
13784 PyObject
* obj2
= 0 ;
13785 char * kwnames
[] = {
13786 (char *) "command",(char *) "flags",(char *) "process", NULL
13789 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:Execute",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13791 arg1
= wxString_in_helper(obj0
);
13792 if (arg1
== NULL
) SWIG_fail
;
13796 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13797 if (!SWIG_IsOK(ecode2
)) {
13798 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Execute" "', expected argument " "2"" of type '" "int""'");
13800 arg2
= static_cast< int >(val2
);
13803 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyProcess
, 0 | 0 );
13804 if (!SWIG_IsOK(res3
)) {
13805 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Execute" "', expected argument " "3"" of type '" "wxPyProcess *""'");
13807 arg3
= reinterpret_cast< wxPyProcess
* >(argp3
);
13810 if (!wxPyCheckForApp()) SWIG_fail
;
13811 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13812 result
= (long)wxExecute((wxString
const &)*arg1
,arg2
,arg3
);
13813 wxPyEndAllowThreads(__tstate
);
13814 if (PyErr_Occurred()) SWIG_fail
;
13816 resultobj
= SWIG_From_long(static_cast< long >(result
));
13831 SWIGINTERN PyObject
*_wrap_Kill(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13832 PyObject
*resultobj
= 0;
13834 wxSignal arg2
= (wxSignal
) wxSIGTERM
;
13835 wxKillError
*arg3
= (wxKillError
*) 0 ;
13836 int arg4
= (int) wxKILL_NOCHILDREN
;
13842 wxKillError temp3
;
13845 PyObject
* obj0
= 0 ;
13846 PyObject
* obj1
= 0 ;
13847 PyObject
* obj2
= 0 ;
13848 char * kwnames
[] = {
13849 (char *) "pid",(char *) "sig",(char *) "flags", NULL
13855 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:Kill",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13856 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
13857 if (!SWIG_IsOK(ecode1
)) {
13858 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Kill" "', expected argument " "1"" of type '" "long""'");
13860 arg1
= static_cast< long >(val1
);
13862 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13863 if (!SWIG_IsOK(ecode2
)) {
13864 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Kill" "', expected argument " "2"" of type '" "wxSignal""'");
13866 arg2
= static_cast< wxSignal
>(val2
);
13869 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
13870 if (!SWIG_IsOK(ecode4
)) {
13871 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Kill" "', expected argument " "4"" of type '" "int""'");
13873 arg4
= static_cast< int >(val4
);
13876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13877 result
= (int)wxKill(arg1
,arg2
,arg3
,arg4
);
13878 wxPyEndAllowThreads(__tstate
);
13879 if (PyErr_Occurred()) SWIG_fail
;
13881 resultobj
= SWIG_From_int(static_cast< int >(result
));
13884 o
= PyInt_FromLong((long) (*arg3
));
13888 resultobj
= SWIG_Python_AppendOutput(resultobj
, o
);
13897 SWIGINTERN PyObject
*_wrap_new_Joystick(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13898 PyObject
*resultobj
= 0;
13899 int arg1
= (int) wxJOYSTICK1
;
13900 wxJoystick
*result
= 0 ;
13903 PyObject
* obj0
= 0 ;
13904 char * kwnames
[] = {
13905 (char *) "joystick", NULL
13908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Joystick",kwnames
,&obj0
)) SWIG_fail
;
13910 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13911 if (!SWIG_IsOK(ecode1
)) {
13912 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Joystick" "', expected argument " "1"" of type '" "int""'");
13914 arg1
= static_cast< int >(val1
);
13917 if (!wxPyCheckForApp()) SWIG_fail
;
13918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13919 result
= (wxJoystick
*)new wxJoystick(arg1
);
13920 wxPyEndAllowThreads(__tstate
);
13921 if (PyErr_Occurred()) SWIG_fail
;
13923 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxJoystick
, SWIG_POINTER_NEW
| 0 );
13930 SWIGINTERN PyObject
*_wrap_delete_Joystick(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13931 PyObject
*resultobj
= 0;
13932 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
13935 PyObject
*swig_obj
[1] ;
13937 if (!args
) SWIG_fail
;
13938 swig_obj
[0] = args
;
13939 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, SWIG_POINTER_DISOWN
| 0 );
13940 if (!SWIG_IsOK(res1
)) {
13941 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Joystick" "', expected argument " "1"" of type '" "wxJoystick *""'");
13943 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
13945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13948 wxPyEndAllowThreads(__tstate
);
13949 if (PyErr_Occurred()) SWIG_fail
;
13951 resultobj
= SWIG_Py_Void();
13958 SWIGINTERN PyObject
*_wrap_Joystick_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13959 PyObject
*resultobj
= 0;
13960 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
13964 PyObject
*swig_obj
[1] ;
13966 if (!args
) SWIG_fail
;
13967 swig_obj
[0] = args
;
13968 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
13969 if (!SWIG_IsOK(res1
)) {
13970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
13972 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
13974 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13975 result
= (arg1
)->GetPosition();
13976 wxPyEndAllowThreads(__tstate
);
13977 if (PyErr_Occurred()) SWIG_fail
;
13979 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
13986 SWIGINTERN PyObject
*_wrap_Joystick_GetZPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13987 PyObject
*resultobj
= 0;
13988 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
13992 PyObject
*swig_obj
[1] ;
13994 if (!args
) SWIG_fail
;
13995 swig_obj
[0] = args
;
13996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
13997 if (!SWIG_IsOK(res1
)) {
13998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetZPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14000 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14003 result
= (int)(arg1
)->GetZPosition();
14004 wxPyEndAllowThreads(__tstate
);
14005 if (PyErr_Occurred()) SWIG_fail
;
14007 resultobj
= SWIG_From_int(static_cast< int >(result
));
14014 SWIGINTERN PyObject
*_wrap_Joystick_GetButtonState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14015 PyObject
*resultobj
= 0;
14016 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14020 PyObject
*swig_obj
[1] ;
14022 if (!args
) SWIG_fail
;
14023 swig_obj
[0] = args
;
14024 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14025 if (!SWIG_IsOK(res1
)) {
14026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetButtonState" "', expected argument " "1"" of type '" "wxJoystick *""'");
14028 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14031 result
= (int)(arg1
)->GetButtonState();
14032 wxPyEndAllowThreads(__tstate
);
14033 if (PyErr_Occurred()) SWIG_fail
;
14035 resultobj
= SWIG_From_int(static_cast< int >(result
));
14042 SWIGINTERN PyObject
*_wrap_Joystick_GetPOVPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14043 PyObject
*resultobj
= 0;
14044 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14048 PyObject
*swig_obj
[1] ;
14050 if (!args
) SWIG_fail
;
14051 swig_obj
[0] = args
;
14052 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14053 if (!SWIG_IsOK(res1
)) {
14054 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetPOVPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14056 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14058 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14059 result
= (int)(arg1
)->GetPOVPosition();
14060 wxPyEndAllowThreads(__tstate
);
14061 if (PyErr_Occurred()) SWIG_fail
;
14063 resultobj
= SWIG_From_int(static_cast< int >(result
));
14070 SWIGINTERN PyObject
*_wrap_Joystick_GetPOVCTSPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14071 PyObject
*resultobj
= 0;
14072 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14076 PyObject
*swig_obj
[1] ;
14078 if (!args
) SWIG_fail
;
14079 swig_obj
[0] = args
;
14080 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14081 if (!SWIG_IsOK(res1
)) {
14082 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetPOVCTSPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14084 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14086 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14087 result
= (int)(arg1
)->GetPOVCTSPosition();
14088 wxPyEndAllowThreads(__tstate
);
14089 if (PyErr_Occurred()) SWIG_fail
;
14091 resultobj
= SWIG_From_int(static_cast< int >(result
));
14098 SWIGINTERN PyObject
*_wrap_Joystick_GetRudderPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14099 PyObject
*resultobj
= 0;
14100 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14104 PyObject
*swig_obj
[1] ;
14106 if (!args
) SWIG_fail
;
14107 swig_obj
[0] = args
;
14108 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14109 if (!SWIG_IsOK(res1
)) {
14110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetRudderPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14112 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14114 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14115 result
= (int)(arg1
)->GetRudderPosition();
14116 wxPyEndAllowThreads(__tstate
);
14117 if (PyErr_Occurred()) SWIG_fail
;
14119 resultobj
= SWIG_From_int(static_cast< int >(result
));
14126 SWIGINTERN PyObject
*_wrap_Joystick_GetUPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14127 PyObject
*resultobj
= 0;
14128 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14132 PyObject
*swig_obj
[1] ;
14134 if (!args
) SWIG_fail
;
14135 swig_obj
[0] = args
;
14136 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14137 if (!SWIG_IsOK(res1
)) {
14138 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetUPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14140 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14143 result
= (int)(arg1
)->GetUPosition();
14144 wxPyEndAllowThreads(__tstate
);
14145 if (PyErr_Occurred()) SWIG_fail
;
14147 resultobj
= SWIG_From_int(static_cast< int >(result
));
14154 SWIGINTERN PyObject
*_wrap_Joystick_GetVPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14155 PyObject
*resultobj
= 0;
14156 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14160 PyObject
*swig_obj
[1] ;
14162 if (!args
) SWIG_fail
;
14163 swig_obj
[0] = args
;
14164 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14165 if (!SWIG_IsOK(res1
)) {
14166 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetVPosition" "', expected argument " "1"" of type '" "wxJoystick *""'");
14168 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14171 result
= (int)(arg1
)->GetVPosition();
14172 wxPyEndAllowThreads(__tstate
);
14173 if (PyErr_Occurred()) SWIG_fail
;
14175 resultobj
= SWIG_From_int(static_cast< int >(result
));
14182 SWIGINTERN PyObject
*_wrap_Joystick_GetMovementThreshold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14183 PyObject
*resultobj
= 0;
14184 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14188 PyObject
*swig_obj
[1] ;
14190 if (!args
) SWIG_fail
;
14191 swig_obj
[0] = args
;
14192 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14193 if (!SWIG_IsOK(res1
)) {
14194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetMovementThreshold" "', expected argument " "1"" of type '" "wxJoystick *""'");
14196 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14199 result
= (int)(arg1
)->GetMovementThreshold();
14200 wxPyEndAllowThreads(__tstate
);
14201 if (PyErr_Occurred()) SWIG_fail
;
14203 resultobj
= SWIG_From_int(static_cast< int >(result
));
14210 SWIGINTERN PyObject
*_wrap_Joystick_SetMovementThreshold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14211 PyObject
*resultobj
= 0;
14212 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14218 PyObject
* obj0
= 0 ;
14219 PyObject
* obj1
= 0 ;
14220 char * kwnames
[] = {
14221 (char *) "self",(char *) "threshold", NULL
14224 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Joystick_SetMovementThreshold",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14225 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14226 if (!SWIG_IsOK(res1
)) {
14227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_SetMovementThreshold" "', expected argument " "1"" of type '" "wxJoystick *""'");
14229 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14230 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14231 if (!SWIG_IsOK(ecode2
)) {
14232 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Joystick_SetMovementThreshold" "', expected argument " "2"" of type '" "int""'");
14234 arg2
= static_cast< int >(val2
);
14236 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14237 (arg1
)->SetMovementThreshold(arg2
);
14238 wxPyEndAllowThreads(__tstate
);
14239 if (PyErr_Occurred()) SWIG_fail
;
14241 resultobj
= SWIG_Py_Void();
14248 SWIGINTERN PyObject
*_wrap_Joystick_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14249 PyObject
*resultobj
= 0;
14250 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14254 PyObject
*swig_obj
[1] ;
14256 if (!args
) SWIG_fail
;
14257 swig_obj
[0] = args
;
14258 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14259 if (!SWIG_IsOK(res1
)) {
14260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_IsOk" "', expected argument " "1"" of type '" "wxJoystick *""'");
14262 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14265 result
= (bool)(arg1
)->IsOk();
14266 wxPyEndAllowThreads(__tstate
);
14267 if (PyErr_Occurred()) SWIG_fail
;
14270 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14278 SWIGINTERN PyObject
*_wrap_Joystick_GetNumberJoysticks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14279 PyObject
*resultobj
= 0;
14280 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14284 PyObject
*swig_obj
[1] ;
14286 if (!args
) SWIG_fail
;
14287 swig_obj
[0] = args
;
14288 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14289 if (!SWIG_IsOK(res1
)) {
14290 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetNumberJoysticks" "', expected argument " "1"" of type '" "wxJoystick *""'");
14292 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14295 result
= (int)(arg1
)->GetNumberJoysticks();
14296 wxPyEndAllowThreads(__tstate
);
14297 if (PyErr_Occurred()) SWIG_fail
;
14299 resultobj
= SWIG_From_int(static_cast< int >(result
));
14306 SWIGINTERN PyObject
*_wrap_Joystick_GetManufacturerId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14307 PyObject
*resultobj
= 0;
14308 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14312 PyObject
*swig_obj
[1] ;
14314 if (!args
) SWIG_fail
;
14315 swig_obj
[0] = args
;
14316 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14317 if (!SWIG_IsOK(res1
)) {
14318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetManufacturerId" "', expected argument " "1"" of type '" "wxJoystick *""'");
14320 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14323 result
= (int)(arg1
)->GetManufacturerId();
14324 wxPyEndAllowThreads(__tstate
);
14325 if (PyErr_Occurred()) SWIG_fail
;
14327 resultobj
= SWIG_From_int(static_cast< int >(result
));
14334 SWIGINTERN PyObject
*_wrap_Joystick_GetProductId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14335 PyObject
*resultobj
= 0;
14336 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14340 PyObject
*swig_obj
[1] ;
14342 if (!args
) SWIG_fail
;
14343 swig_obj
[0] = args
;
14344 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14345 if (!SWIG_IsOK(res1
)) {
14346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetProductId" "', expected argument " "1"" of type '" "wxJoystick *""'");
14348 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14350 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14351 result
= (int)(arg1
)->GetProductId();
14352 wxPyEndAllowThreads(__tstate
);
14353 if (PyErr_Occurred()) SWIG_fail
;
14355 resultobj
= SWIG_From_int(static_cast< int >(result
));
14362 SWIGINTERN PyObject
*_wrap_Joystick_GetProductName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14363 PyObject
*resultobj
= 0;
14364 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14368 PyObject
*swig_obj
[1] ;
14370 if (!args
) SWIG_fail
;
14371 swig_obj
[0] = args
;
14372 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14373 if (!SWIG_IsOK(res1
)) {
14374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetProductName" "', expected argument " "1"" of type '" "wxJoystick *""'");
14376 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14379 result
= (arg1
)->GetProductName();
14380 wxPyEndAllowThreads(__tstate
);
14381 if (PyErr_Occurred()) SWIG_fail
;
14385 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14387 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14396 SWIGINTERN PyObject
*_wrap_Joystick_GetXMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14397 PyObject
*resultobj
= 0;
14398 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14402 PyObject
*swig_obj
[1] ;
14404 if (!args
) SWIG_fail
;
14405 swig_obj
[0] = args
;
14406 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14407 if (!SWIG_IsOK(res1
)) {
14408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetXMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14410 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14413 result
= (int)(arg1
)->GetXMin();
14414 wxPyEndAllowThreads(__tstate
);
14415 if (PyErr_Occurred()) SWIG_fail
;
14417 resultobj
= SWIG_From_int(static_cast< int >(result
));
14424 SWIGINTERN PyObject
*_wrap_Joystick_GetYMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14425 PyObject
*resultobj
= 0;
14426 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14430 PyObject
*swig_obj
[1] ;
14432 if (!args
) SWIG_fail
;
14433 swig_obj
[0] = args
;
14434 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14435 if (!SWIG_IsOK(res1
)) {
14436 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetYMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14438 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14441 result
= (int)(arg1
)->GetYMin();
14442 wxPyEndAllowThreads(__tstate
);
14443 if (PyErr_Occurred()) SWIG_fail
;
14445 resultobj
= SWIG_From_int(static_cast< int >(result
));
14452 SWIGINTERN PyObject
*_wrap_Joystick_GetZMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14453 PyObject
*resultobj
= 0;
14454 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14458 PyObject
*swig_obj
[1] ;
14460 if (!args
) SWIG_fail
;
14461 swig_obj
[0] = args
;
14462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14463 if (!SWIG_IsOK(res1
)) {
14464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetZMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14466 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14469 result
= (int)(arg1
)->GetZMin();
14470 wxPyEndAllowThreads(__tstate
);
14471 if (PyErr_Occurred()) SWIG_fail
;
14473 resultobj
= SWIG_From_int(static_cast< int >(result
));
14480 SWIGINTERN PyObject
*_wrap_Joystick_GetXMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14481 PyObject
*resultobj
= 0;
14482 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14486 PyObject
*swig_obj
[1] ;
14488 if (!args
) SWIG_fail
;
14489 swig_obj
[0] = args
;
14490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14491 if (!SWIG_IsOK(res1
)) {
14492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetXMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14494 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14497 result
= (int)(arg1
)->GetXMax();
14498 wxPyEndAllowThreads(__tstate
);
14499 if (PyErr_Occurred()) SWIG_fail
;
14501 resultobj
= SWIG_From_int(static_cast< int >(result
));
14508 SWIGINTERN PyObject
*_wrap_Joystick_GetYMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14509 PyObject
*resultobj
= 0;
14510 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14514 PyObject
*swig_obj
[1] ;
14516 if (!args
) SWIG_fail
;
14517 swig_obj
[0] = args
;
14518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14519 if (!SWIG_IsOK(res1
)) {
14520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetYMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14522 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14525 result
= (int)(arg1
)->GetYMax();
14526 wxPyEndAllowThreads(__tstate
);
14527 if (PyErr_Occurred()) SWIG_fail
;
14529 resultobj
= SWIG_From_int(static_cast< int >(result
));
14536 SWIGINTERN PyObject
*_wrap_Joystick_GetZMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14537 PyObject
*resultobj
= 0;
14538 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14542 PyObject
*swig_obj
[1] ;
14544 if (!args
) SWIG_fail
;
14545 swig_obj
[0] = args
;
14546 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14547 if (!SWIG_IsOK(res1
)) {
14548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetZMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14550 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14553 result
= (int)(arg1
)->GetZMax();
14554 wxPyEndAllowThreads(__tstate
);
14555 if (PyErr_Occurred()) SWIG_fail
;
14557 resultobj
= SWIG_From_int(static_cast< int >(result
));
14564 SWIGINTERN PyObject
*_wrap_Joystick_GetNumberButtons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14565 PyObject
*resultobj
= 0;
14566 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14570 PyObject
*swig_obj
[1] ;
14572 if (!args
) SWIG_fail
;
14573 swig_obj
[0] = args
;
14574 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14575 if (!SWIG_IsOK(res1
)) {
14576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetNumberButtons" "', expected argument " "1"" of type '" "wxJoystick *""'");
14578 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14581 result
= (int)(arg1
)->GetNumberButtons();
14582 wxPyEndAllowThreads(__tstate
);
14583 if (PyErr_Occurred()) SWIG_fail
;
14585 resultobj
= SWIG_From_int(static_cast< int >(result
));
14592 SWIGINTERN PyObject
*_wrap_Joystick_GetNumberAxes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14593 PyObject
*resultobj
= 0;
14594 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14598 PyObject
*swig_obj
[1] ;
14600 if (!args
) SWIG_fail
;
14601 swig_obj
[0] = args
;
14602 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14603 if (!SWIG_IsOK(res1
)) {
14604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetNumberAxes" "', expected argument " "1"" of type '" "wxJoystick *""'");
14606 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14609 result
= (int)(arg1
)->GetNumberAxes();
14610 wxPyEndAllowThreads(__tstate
);
14611 if (PyErr_Occurred()) SWIG_fail
;
14613 resultobj
= SWIG_From_int(static_cast< int >(result
));
14620 SWIGINTERN PyObject
*_wrap_Joystick_GetMaxButtons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14621 PyObject
*resultobj
= 0;
14622 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14626 PyObject
*swig_obj
[1] ;
14628 if (!args
) SWIG_fail
;
14629 swig_obj
[0] = args
;
14630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14631 if (!SWIG_IsOK(res1
)) {
14632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetMaxButtons" "', expected argument " "1"" of type '" "wxJoystick *""'");
14634 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14637 result
= (int)(arg1
)->GetMaxButtons();
14638 wxPyEndAllowThreads(__tstate
);
14639 if (PyErr_Occurred()) SWIG_fail
;
14641 resultobj
= SWIG_From_int(static_cast< int >(result
));
14648 SWIGINTERN PyObject
*_wrap_Joystick_GetMaxAxes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14649 PyObject
*resultobj
= 0;
14650 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14654 PyObject
*swig_obj
[1] ;
14656 if (!args
) SWIG_fail
;
14657 swig_obj
[0] = args
;
14658 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14659 if (!SWIG_IsOK(res1
)) {
14660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetMaxAxes" "', expected argument " "1"" of type '" "wxJoystick *""'");
14662 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14665 result
= (int)(arg1
)->GetMaxAxes();
14666 wxPyEndAllowThreads(__tstate
);
14667 if (PyErr_Occurred()) SWIG_fail
;
14669 resultobj
= SWIG_From_int(static_cast< int >(result
));
14676 SWIGINTERN PyObject
*_wrap_Joystick_GetPollingMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14677 PyObject
*resultobj
= 0;
14678 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14682 PyObject
*swig_obj
[1] ;
14684 if (!args
) SWIG_fail
;
14685 swig_obj
[0] = args
;
14686 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14687 if (!SWIG_IsOK(res1
)) {
14688 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetPollingMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14690 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14693 result
= (int)(arg1
)->GetPollingMin();
14694 wxPyEndAllowThreads(__tstate
);
14695 if (PyErr_Occurred()) SWIG_fail
;
14697 resultobj
= SWIG_From_int(static_cast< int >(result
));
14704 SWIGINTERN PyObject
*_wrap_Joystick_GetPollingMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14705 PyObject
*resultobj
= 0;
14706 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14710 PyObject
*swig_obj
[1] ;
14712 if (!args
) SWIG_fail
;
14713 swig_obj
[0] = args
;
14714 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14715 if (!SWIG_IsOK(res1
)) {
14716 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetPollingMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14718 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14720 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14721 result
= (int)(arg1
)->GetPollingMax();
14722 wxPyEndAllowThreads(__tstate
);
14723 if (PyErr_Occurred()) SWIG_fail
;
14725 resultobj
= SWIG_From_int(static_cast< int >(result
));
14732 SWIGINTERN PyObject
*_wrap_Joystick_GetRudderMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14733 PyObject
*resultobj
= 0;
14734 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14738 PyObject
*swig_obj
[1] ;
14740 if (!args
) SWIG_fail
;
14741 swig_obj
[0] = args
;
14742 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14743 if (!SWIG_IsOK(res1
)) {
14744 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetRudderMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14746 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14749 result
= (int)(arg1
)->GetRudderMin();
14750 wxPyEndAllowThreads(__tstate
);
14751 if (PyErr_Occurred()) SWIG_fail
;
14753 resultobj
= SWIG_From_int(static_cast< int >(result
));
14760 SWIGINTERN PyObject
*_wrap_Joystick_GetRudderMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14761 PyObject
*resultobj
= 0;
14762 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14766 PyObject
*swig_obj
[1] ;
14768 if (!args
) SWIG_fail
;
14769 swig_obj
[0] = args
;
14770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14771 if (!SWIG_IsOK(res1
)) {
14772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetRudderMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14774 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14777 result
= (int)(arg1
)->GetRudderMax();
14778 wxPyEndAllowThreads(__tstate
);
14779 if (PyErr_Occurred()) SWIG_fail
;
14781 resultobj
= SWIG_From_int(static_cast< int >(result
));
14788 SWIGINTERN PyObject
*_wrap_Joystick_GetUMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14789 PyObject
*resultobj
= 0;
14790 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14794 PyObject
*swig_obj
[1] ;
14796 if (!args
) SWIG_fail
;
14797 swig_obj
[0] = args
;
14798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14799 if (!SWIG_IsOK(res1
)) {
14800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetUMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14802 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14805 result
= (int)(arg1
)->GetUMin();
14806 wxPyEndAllowThreads(__tstate
);
14807 if (PyErr_Occurred()) SWIG_fail
;
14809 resultobj
= SWIG_From_int(static_cast< int >(result
));
14816 SWIGINTERN PyObject
*_wrap_Joystick_GetUMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14817 PyObject
*resultobj
= 0;
14818 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14822 PyObject
*swig_obj
[1] ;
14824 if (!args
) SWIG_fail
;
14825 swig_obj
[0] = args
;
14826 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14827 if (!SWIG_IsOK(res1
)) {
14828 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetUMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14830 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14833 result
= (int)(arg1
)->GetUMax();
14834 wxPyEndAllowThreads(__tstate
);
14835 if (PyErr_Occurred()) SWIG_fail
;
14837 resultobj
= SWIG_From_int(static_cast< int >(result
));
14844 SWIGINTERN PyObject
*_wrap_Joystick_GetVMin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14845 PyObject
*resultobj
= 0;
14846 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14850 PyObject
*swig_obj
[1] ;
14852 if (!args
) SWIG_fail
;
14853 swig_obj
[0] = args
;
14854 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14855 if (!SWIG_IsOK(res1
)) {
14856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetVMin" "', expected argument " "1"" of type '" "wxJoystick *""'");
14858 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14861 result
= (int)(arg1
)->GetVMin();
14862 wxPyEndAllowThreads(__tstate
);
14863 if (PyErr_Occurred()) SWIG_fail
;
14865 resultobj
= SWIG_From_int(static_cast< int >(result
));
14872 SWIGINTERN PyObject
*_wrap_Joystick_GetVMax(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14873 PyObject
*resultobj
= 0;
14874 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14878 PyObject
*swig_obj
[1] ;
14880 if (!args
) SWIG_fail
;
14881 swig_obj
[0] = args
;
14882 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14883 if (!SWIG_IsOK(res1
)) {
14884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_GetVMax" "', expected argument " "1"" of type '" "wxJoystick *""'");
14886 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14889 result
= (int)(arg1
)->GetVMax();
14890 wxPyEndAllowThreads(__tstate
);
14891 if (PyErr_Occurred()) SWIG_fail
;
14893 resultobj
= SWIG_From_int(static_cast< int >(result
));
14900 SWIGINTERN PyObject
*_wrap_Joystick_HasRudder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14901 PyObject
*resultobj
= 0;
14902 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14906 PyObject
*swig_obj
[1] ;
14908 if (!args
) SWIG_fail
;
14909 swig_obj
[0] = args
;
14910 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14911 if (!SWIG_IsOK(res1
)) {
14912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasRudder" "', expected argument " "1"" of type '" "wxJoystick *""'");
14914 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14917 result
= (bool)(arg1
)->HasRudder();
14918 wxPyEndAllowThreads(__tstate
);
14919 if (PyErr_Occurred()) SWIG_fail
;
14922 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14930 SWIGINTERN PyObject
*_wrap_Joystick_HasZ(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14931 PyObject
*resultobj
= 0;
14932 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14936 PyObject
*swig_obj
[1] ;
14938 if (!args
) SWIG_fail
;
14939 swig_obj
[0] = args
;
14940 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14941 if (!SWIG_IsOK(res1
)) {
14942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasZ" "', expected argument " "1"" of type '" "wxJoystick *""'");
14944 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14947 result
= (bool)(arg1
)->HasZ();
14948 wxPyEndAllowThreads(__tstate
);
14949 if (PyErr_Occurred()) SWIG_fail
;
14952 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14960 SWIGINTERN PyObject
*_wrap_Joystick_HasU(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14961 PyObject
*resultobj
= 0;
14962 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14966 PyObject
*swig_obj
[1] ;
14968 if (!args
) SWIG_fail
;
14969 swig_obj
[0] = args
;
14970 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
14971 if (!SWIG_IsOK(res1
)) {
14972 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasU" "', expected argument " "1"" of type '" "wxJoystick *""'");
14974 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
14976 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14977 result
= (bool)(arg1
)->HasU();
14978 wxPyEndAllowThreads(__tstate
);
14979 if (PyErr_Occurred()) SWIG_fail
;
14982 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14990 SWIGINTERN PyObject
*_wrap_Joystick_HasV(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14991 PyObject
*resultobj
= 0;
14992 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
14996 PyObject
*swig_obj
[1] ;
14998 if (!args
) SWIG_fail
;
14999 swig_obj
[0] = args
;
15000 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15001 if (!SWIG_IsOK(res1
)) {
15002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasV" "', expected argument " "1"" of type '" "wxJoystick *""'");
15004 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15007 result
= (bool)(arg1
)->HasV();
15008 wxPyEndAllowThreads(__tstate
);
15009 if (PyErr_Occurred()) SWIG_fail
;
15012 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15020 SWIGINTERN PyObject
*_wrap_Joystick_HasPOV(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15021 PyObject
*resultobj
= 0;
15022 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
15026 PyObject
*swig_obj
[1] ;
15028 if (!args
) SWIG_fail
;
15029 swig_obj
[0] = args
;
15030 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15031 if (!SWIG_IsOK(res1
)) {
15032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasPOV" "', expected argument " "1"" of type '" "wxJoystick *""'");
15034 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15037 result
= (bool)(arg1
)->HasPOV();
15038 wxPyEndAllowThreads(__tstate
);
15039 if (PyErr_Occurred()) SWIG_fail
;
15042 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15050 SWIGINTERN PyObject
*_wrap_Joystick_HasPOV4Dir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15051 PyObject
*resultobj
= 0;
15052 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
15056 PyObject
*swig_obj
[1] ;
15058 if (!args
) SWIG_fail
;
15059 swig_obj
[0] = args
;
15060 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15061 if (!SWIG_IsOK(res1
)) {
15062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasPOV4Dir" "', expected argument " "1"" of type '" "wxJoystick *""'");
15064 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15067 result
= (bool)(arg1
)->HasPOV4Dir();
15068 wxPyEndAllowThreads(__tstate
);
15069 if (PyErr_Occurred()) SWIG_fail
;
15072 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15080 SWIGINTERN PyObject
*_wrap_Joystick_HasPOVCTS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15081 PyObject
*resultobj
= 0;
15082 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
15086 PyObject
*swig_obj
[1] ;
15088 if (!args
) SWIG_fail
;
15089 swig_obj
[0] = args
;
15090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15091 if (!SWIG_IsOK(res1
)) {
15092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_HasPOVCTS" "', expected argument " "1"" of type '" "wxJoystick *""'");
15094 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15097 result
= (bool)(arg1
)->HasPOVCTS();
15098 wxPyEndAllowThreads(__tstate
);
15099 if (PyErr_Occurred()) SWIG_fail
;
15102 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15110 SWIGINTERN PyObject
*_wrap_Joystick_SetCapture(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15111 PyObject
*resultobj
= 0;
15112 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
15113 wxWindow
*arg2
= (wxWindow
*) 0 ;
15114 int arg3
= (int) 0 ;
15122 PyObject
* obj0
= 0 ;
15123 PyObject
* obj1
= 0 ;
15124 PyObject
* obj2
= 0 ;
15125 char * kwnames
[] = {
15126 (char *) "self",(char *) "win",(char *) "pollingFreq", NULL
15129 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Joystick_SetCapture",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15130 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15131 if (!SWIG_IsOK(res1
)) {
15132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_SetCapture" "', expected argument " "1"" of type '" "wxJoystick *""'");
15134 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15135 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15136 if (!SWIG_IsOK(res2
)) {
15137 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Joystick_SetCapture" "', expected argument " "2"" of type '" "wxWindow *""'");
15139 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15141 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15142 if (!SWIG_IsOK(ecode3
)) {
15143 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Joystick_SetCapture" "', expected argument " "3"" of type '" "int""'");
15145 arg3
= static_cast< int >(val3
);
15148 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15149 result
= (bool)(arg1
)->SetCapture(arg2
,arg3
);
15150 wxPyEndAllowThreads(__tstate
);
15151 if (PyErr_Occurred()) SWIG_fail
;
15154 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15162 SWIGINTERN PyObject
*_wrap_Joystick_ReleaseCapture(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15163 PyObject
*resultobj
= 0;
15164 wxJoystick
*arg1
= (wxJoystick
*) 0 ;
15168 PyObject
*swig_obj
[1] ;
15170 if (!args
) SWIG_fail
;
15171 swig_obj
[0] = args
;
15172 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystick
, 0 | 0 );
15173 if (!SWIG_IsOK(res1
)) {
15174 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Joystick_ReleaseCapture" "', expected argument " "1"" of type '" "wxJoystick *""'");
15176 arg1
= reinterpret_cast< wxJoystick
* >(argp1
);
15178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15179 result
= (bool)(arg1
)->ReleaseCapture();
15180 wxPyEndAllowThreads(__tstate
);
15181 if (PyErr_Occurred()) SWIG_fail
;
15184 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15192 SWIGINTERN PyObject
*Joystick_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15194 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15195 SWIG_TypeNewClientData(SWIGTYPE_p_wxJoystick
, SWIG_NewClientData(obj
));
15196 return SWIG_Py_Void();
15199 SWIGINTERN PyObject
*Joystick_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15200 return SWIG_Python_InitShadowInstance(args
);
15203 SWIGINTERN PyObject
*_wrap_new_JoystickEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15204 PyObject
*resultobj
= 0;
15205 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
15206 int arg2
= (int) 0 ;
15207 int arg3
= (int) wxJOYSTICK1
;
15208 int arg4
= (int) 0 ;
15209 wxJoystickEvent
*result
= 0 ;
15218 PyObject
* obj0
= 0 ;
15219 PyObject
* obj1
= 0 ;
15220 PyObject
* obj2
= 0 ;
15221 PyObject
* obj3
= 0 ;
15222 char * kwnames
[] = {
15223 (char *) "type",(char *) "state",(char *) "joystick",(char *) "change", NULL
15226 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_JoystickEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15228 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
15229 if (!SWIG_IsOK(ecode1
)) {
15230 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_JoystickEvent" "', expected argument " "1"" of type '" "wxEventType""'");
15232 arg1
= static_cast< wxEventType
>(val1
);
15235 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15236 if (!SWIG_IsOK(ecode2
)) {
15237 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_JoystickEvent" "', expected argument " "2"" of type '" "int""'");
15239 arg2
= static_cast< int >(val2
);
15242 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15243 if (!SWIG_IsOK(ecode3
)) {
15244 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_JoystickEvent" "', expected argument " "3"" of type '" "int""'");
15246 arg3
= static_cast< int >(val3
);
15249 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
15250 if (!SWIG_IsOK(ecode4
)) {
15251 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_JoystickEvent" "', expected argument " "4"" of type '" "int""'");
15253 arg4
= static_cast< int >(val4
);
15256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15257 result
= (wxJoystickEvent
*)new wxJoystickEvent(arg1
,arg2
,arg3
,arg4
);
15258 wxPyEndAllowThreads(__tstate
);
15259 if (PyErr_Occurred()) SWIG_fail
;
15261 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxJoystickEvent
, SWIG_POINTER_NEW
| 0 );
15268 SWIGINTERN PyObject
*_wrap_JoystickEvent_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15269 PyObject
*resultobj
= 0;
15270 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15274 PyObject
*swig_obj
[1] ;
15276 if (!args
) SWIG_fail
;
15277 swig_obj
[0] = args
;
15278 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15279 if (!SWIG_IsOK(res1
)) {
15280 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_GetPosition" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15282 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15285 result
= ((wxJoystickEvent
const *)arg1
)->GetPosition();
15286 wxPyEndAllowThreads(__tstate
);
15287 if (PyErr_Occurred()) SWIG_fail
;
15289 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
15296 SWIGINTERN PyObject
*_wrap_JoystickEvent_GetZPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15297 PyObject
*resultobj
= 0;
15298 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15302 PyObject
*swig_obj
[1] ;
15304 if (!args
) SWIG_fail
;
15305 swig_obj
[0] = args
;
15306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15307 if (!SWIG_IsOK(res1
)) {
15308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_GetZPosition" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15310 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15313 result
= (int)((wxJoystickEvent
const *)arg1
)->GetZPosition();
15314 wxPyEndAllowThreads(__tstate
);
15315 if (PyErr_Occurred()) SWIG_fail
;
15317 resultobj
= SWIG_From_int(static_cast< int >(result
));
15324 SWIGINTERN PyObject
*_wrap_JoystickEvent_GetButtonState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15325 PyObject
*resultobj
= 0;
15326 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15330 PyObject
*swig_obj
[1] ;
15332 if (!args
) SWIG_fail
;
15333 swig_obj
[0] = args
;
15334 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15335 if (!SWIG_IsOK(res1
)) {
15336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_GetButtonState" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15338 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15341 result
= (int)((wxJoystickEvent
const *)arg1
)->GetButtonState();
15342 wxPyEndAllowThreads(__tstate
);
15343 if (PyErr_Occurred()) SWIG_fail
;
15345 resultobj
= SWIG_From_int(static_cast< int >(result
));
15352 SWIGINTERN PyObject
*_wrap_JoystickEvent_GetButtonChange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15353 PyObject
*resultobj
= 0;
15354 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15358 PyObject
*swig_obj
[1] ;
15360 if (!args
) SWIG_fail
;
15361 swig_obj
[0] = args
;
15362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15363 if (!SWIG_IsOK(res1
)) {
15364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_GetButtonChange" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15366 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15369 result
= (int)((wxJoystickEvent
const *)arg1
)->GetButtonChange();
15370 wxPyEndAllowThreads(__tstate
);
15371 if (PyErr_Occurred()) SWIG_fail
;
15373 resultobj
= SWIG_From_int(static_cast< int >(result
));
15380 SWIGINTERN PyObject
*_wrap_JoystickEvent_GetJoystick(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15381 PyObject
*resultobj
= 0;
15382 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15386 PyObject
*swig_obj
[1] ;
15388 if (!args
) SWIG_fail
;
15389 swig_obj
[0] = args
;
15390 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15391 if (!SWIG_IsOK(res1
)) {
15392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_GetJoystick" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15394 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15397 result
= (int)((wxJoystickEvent
const *)arg1
)->GetJoystick();
15398 wxPyEndAllowThreads(__tstate
);
15399 if (PyErr_Occurred()) SWIG_fail
;
15401 resultobj
= SWIG_From_int(static_cast< int >(result
));
15408 SWIGINTERN PyObject
*_wrap_JoystickEvent_SetJoystick(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15409 PyObject
*resultobj
= 0;
15410 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15416 PyObject
* obj0
= 0 ;
15417 PyObject
* obj1
= 0 ;
15418 char * kwnames
[] = {
15419 (char *) "self",(char *) "stick", NULL
15422 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:JoystickEvent_SetJoystick",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15423 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15424 if (!SWIG_IsOK(res1
)) {
15425 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_SetJoystick" "', expected argument " "1"" of type '" "wxJoystickEvent *""'");
15427 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15428 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15429 if (!SWIG_IsOK(ecode2
)) {
15430 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_SetJoystick" "', expected argument " "2"" of type '" "int""'");
15432 arg2
= static_cast< int >(val2
);
15434 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15435 (arg1
)->SetJoystick(arg2
);
15436 wxPyEndAllowThreads(__tstate
);
15437 if (PyErr_Occurred()) SWIG_fail
;
15439 resultobj
= SWIG_Py_Void();
15446 SWIGINTERN PyObject
*_wrap_JoystickEvent_SetButtonState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15447 PyObject
*resultobj
= 0;
15448 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15454 PyObject
* obj0
= 0 ;
15455 PyObject
* obj1
= 0 ;
15456 char * kwnames
[] = {
15457 (char *) "self",(char *) "state", NULL
15460 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:JoystickEvent_SetButtonState",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15461 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15462 if (!SWIG_IsOK(res1
)) {
15463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_SetButtonState" "', expected argument " "1"" of type '" "wxJoystickEvent *""'");
15465 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15466 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15467 if (!SWIG_IsOK(ecode2
)) {
15468 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_SetButtonState" "', expected argument " "2"" of type '" "int""'");
15470 arg2
= static_cast< int >(val2
);
15472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15473 (arg1
)->SetButtonState(arg2
);
15474 wxPyEndAllowThreads(__tstate
);
15475 if (PyErr_Occurred()) SWIG_fail
;
15477 resultobj
= SWIG_Py_Void();
15484 SWIGINTERN PyObject
*_wrap_JoystickEvent_SetButtonChange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15485 PyObject
*resultobj
= 0;
15486 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15492 PyObject
* obj0
= 0 ;
15493 PyObject
* obj1
= 0 ;
15494 char * kwnames
[] = {
15495 (char *) "self",(char *) "change", NULL
15498 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:JoystickEvent_SetButtonChange",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15499 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15500 if (!SWIG_IsOK(res1
)) {
15501 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_SetButtonChange" "', expected argument " "1"" of type '" "wxJoystickEvent *""'");
15503 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15504 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15505 if (!SWIG_IsOK(ecode2
)) {
15506 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_SetButtonChange" "', expected argument " "2"" of type '" "int""'");
15508 arg2
= static_cast< int >(val2
);
15510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15511 (arg1
)->SetButtonChange(arg2
);
15512 wxPyEndAllowThreads(__tstate
);
15513 if (PyErr_Occurred()) SWIG_fail
;
15515 resultobj
= SWIG_Py_Void();
15522 SWIGINTERN PyObject
*_wrap_JoystickEvent_SetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15523 PyObject
*resultobj
= 0;
15524 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15525 wxPoint
*arg2
= 0 ;
15529 PyObject
* obj0
= 0 ;
15530 PyObject
* obj1
= 0 ;
15531 char * kwnames
[] = {
15532 (char *) "self",(char *) "pos", NULL
15535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:JoystickEvent_SetPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15536 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15537 if (!SWIG_IsOK(res1
)) {
15538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_SetPosition" "', expected argument " "1"" of type '" "wxJoystickEvent *""'");
15540 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15543 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
15546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15547 (arg1
)->SetPosition((wxPoint
const &)*arg2
);
15548 wxPyEndAllowThreads(__tstate
);
15549 if (PyErr_Occurred()) SWIG_fail
;
15551 resultobj
= SWIG_Py_Void();
15558 SWIGINTERN PyObject
*_wrap_JoystickEvent_SetZPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15559 PyObject
*resultobj
= 0;
15560 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15566 PyObject
* obj0
= 0 ;
15567 PyObject
* obj1
= 0 ;
15568 char * kwnames
[] = {
15569 (char *) "self",(char *) "zPos", NULL
15572 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:JoystickEvent_SetZPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15573 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15574 if (!SWIG_IsOK(res1
)) {
15575 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_SetZPosition" "', expected argument " "1"" of type '" "wxJoystickEvent *""'");
15577 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15578 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15579 if (!SWIG_IsOK(ecode2
)) {
15580 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_SetZPosition" "', expected argument " "2"" of type '" "int""'");
15582 arg2
= static_cast< int >(val2
);
15584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15585 (arg1
)->SetZPosition(arg2
);
15586 wxPyEndAllowThreads(__tstate
);
15587 if (PyErr_Occurred()) SWIG_fail
;
15589 resultobj
= SWIG_Py_Void();
15596 SWIGINTERN PyObject
*_wrap_JoystickEvent_IsButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15597 PyObject
*resultobj
= 0;
15598 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15602 PyObject
*swig_obj
[1] ;
15604 if (!args
) SWIG_fail
;
15605 swig_obj
[0] = args
;
15606 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15607 if (!SWIG_IsOK(res1
)) {
15608 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_IsButton" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15610 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15612 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15613 result
= (bool)((wxJoystickEvent
const *)arg1
)->IsButton();
15614 wxPyEndAllowThreads(__tstate
);
15615 if (PyErr_Occurred()) SWIG_fail
;
15618 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15626 SWIGINTERN PyObject
*_wrap_JoystickEvent_IsMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15627 PyObject
*resultobj
= 0;
15628 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15632 PyObject
*swig_obj
[1] ;
15634 if (!args
) SWIG_fail
;
15635 swig_obj
[0] = args
;
15636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15637 if (!SWIG_IsOK(res1
)) {
15638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_IsMove" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15640 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15643 result
= (bool)((wxJoystickEvent
const *)arg1
)->IsMove();
15644 wxPyEndAllowThreads(__tstate
);
15645 if (PyErr_Occurred()) SWIG_fail
;
15648 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15656 SWIGINTERN PyObject
*_wrap_JoystickEvent_IsZMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15657 PyObject
*resultobj
= 0;
15658 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15662 PyObject
*swig_obj
[1] ;
15664 if (!args
) SWIG_fail
;
15665 swig_obj
[0] = args
;
15666 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15667 if (!SWIG_IsOK(res1
)) {
15668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_IsZMove" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15670 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15673 result
= (bool)((wxJoystickEvent
const *)arg1
)->IsZMove();
15674 wxPyEndAllowThreads(__tstate
);
15675 if (PyErr_Occurred()) SWIG_fail
;
15678 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15686 SWIGINTERN PyObject
*_wrap_JoystickEvent_ButtonDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15687 PyObject
*resultobj
= 0;
15688 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15689 int arg2
= (int) wxJOY_BUTTON_ANY
;
15695 PyObject
* obj0
= 0 ;
15696 PyObject
* obj1
= 0 ;
15697 char * kwnames
[] = {
15698 (char *) "self",(char *) "but", NULL
15701 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:JoystickEvent_ButtonDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15702 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15703 if (!SWIG_IsOK(res1
)) {
15704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_ButtonDown" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15706 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15708 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15709 if (!SWIG_IsOK(ecode2
)) {
15710 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_ButtonDown" "', expected argument " "2"" of type '" "int""'");
15712 arg2
= static_cast< int >(val2
);
15715 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15716 result
= (bool)((wxJoystickEvent
const *)arg1
)->ButtonDown(arg2
);
15717 wxPyEndAllowThreads(__tstate
);
15718 if (PyErr_Occurred()) SWIG_fail
;
15721 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15729 SWIGINTERN PyObject
*_wrap_JoystickEvent_ButtonUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15730 PyObject
*resultobj
= 0;
15731 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15732 int arg2
= (int) wxJOY_BUTTON_ANY
;
15738 PyObject
* obj0
= 0 ;
15739 PyObject
* obj1
= 0 ;
15740 char * kwnames
[] = {
15741 (char *) "self",(char *) "but", NULL
15744 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:JoystickEvent_ButtonUp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15745 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15746 if (!SWIG_IsOK(res1
)) {
15747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_ButtonUp" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15749 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15751 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15752 if (!SWIG_IsOK(ecode2
)) {
15753 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_ButtonUp" "', expected argument " "2"" of type '" "int""'");
15755 arg2
= static_cast< int >(val2
);
15758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15759 result
= (bool)((wxJoystickEvent
const *)arg1
)->ButtonUp(arg2
);
15760 wxPyEndAllowThreads(__tstate
);
15761 if (PyErr_Occurred()) SWIG_fail
;
15764 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15772 SWIGINTERN PyObject
*_wrap_JoystickEvent_ButtonIsDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15773 PyObject
*resultobj
= 0;
15774 wxJoystickEvent
*arg1
= (wxJoystickEvent
*) 0 ;
15775 int arg2
= (int) wxJOY_BUTTON_ANY
;
15781 PyObject
* obj0
= 0 ;
15782 PyObject
* obj1
= 0 ;
15783 char * kwnames
[] = {
15784 (char *) "self",(char *) "but", NULL
15787 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:JoystickEvent_ButtonIsDown",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15788 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxJoystickEvent
, 0 | 0 );
15789 if (!SWIG_IsOK(res1
)) {
15790 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "JoystickEvent_ButtonIsDown" "', expected argument " "1"" of type '" "wxJoystickEvent const *""'");
15792 arg1
= reinterpret_cast< wxJoystickEvent
* >(argp1
);
15794 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15795 if (!SWIG_IsOK(ecode2
)) {
15796 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "JoystickEvent_ButtonIsDown" "', expected argument " "2"" of type '" "int""'");
15798 arg2
= static_cast< int >(val2
);
15801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15802 result
= (bool)((wxJoystickEvent
const *)arg1
)->ButtonIsDown(arg2
);
15803 wxPyEndAllowThreads(__tstate
);
15804 if (PyErr_Occurred()) SWIG_fail
;
15807 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15815 SWIGINTERN PyObject
*JoystickEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15817 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15818 SWIG_TypeNewClientData(SWIGTYPE_p_wxJoystickEvent
, SWIG_NewClientData(obj
));
15819 return SWIG_Py_Void();
15822 SWIGINTERN PyObject
*JoystickEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15823 return SWIG_Python_InitShadowInstance(args
);
15826 SWIGINTERN PyObject
*_wrap_new_Sound(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15827 PyObject
*resultobj
= 0;
15828 wxString
const &arg1_defvalue
= wxPyEmptyString
;
15829 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
15830 wxSound
*result
= 0 ;
15831 bool temp1
= false ;
15832 PyObject
* obj0
= 0 ;
15833 char * kwnames
[] = {
15834 (char *) "fileName", NULL
15837 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Sound",kwnames
,&obj0
)) SWIG_fail
;
15840 arg1
= wxString_in_helper(obj0
);
15841 if (arg1
== NULL
) SWIG_fail
;
15846 if (!wxPyCheckForApp()) SWIG_fail
;
15847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15848 result
= (wxSound
*)new_wxSound((wxString
const &)*arg1
);
15849 wxPyEndAllowThreads(__tstate
);
15850 if (PyErr_Occurred()) SWIG_fail
;
15852 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSound
, SWIG_POINTER_NEW
| 0 );
15867 SWIGINTERN PyObject
*_wrap_new_SoundFromData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15868 PyObject
*resultobj
= 0;
15869 PyObject
*arg1
= (PyObject
*) 0 ;
15870 wxSound
*result
= 0 ;
15871 PyObject
* obj0
= 0 ;
15872 char * kwnames
[] = {
15873 (char *) "data", NULL
15876 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_SoundFromData",kwnames
,&obj0
)) SWIG_fail
;
15879 if (!wxPyCheckForApp()) SWIG_fail
;
15880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15881 result
= (wxSound
*)new_wxSound(arg1
);
15882 wxPyEndAllowThreads(__tstate
);
15883 if (PyErr_Occurred()) SWIG_fail
;
15885 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSound
, SWIG_POINTER_OWN
| 0 );
15892 SWIGINTERN PyObject
*_wrap_delete_Sound(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15893 PyObject
*resultobj
= 0;
15894 wxSound
*arg1
= (wxSound
*) 0 ;
15897 PyObject
*swig_obj
[1] ;
15899 if (!args
) SWIG_fail
;
15900 swig_obj
[0] = args
;
15901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSound
, SWIG_POINTER_DISOWN
| 0 );
15902 if (!SWIG_IsOK(res1
)) {
15903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Sound" "', expected argument " "1"" of type '" "wxSound *""'");
15905 arg1
= reinterpret_cast< wxSound
* >(argp1
);
15907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15910 wxPyEndAllowThreads(__tstate
);
15911 if (PyErr_Occurred()) SWIG_fail
;
15913 resultobj
= SWIG_Py_Void();
15920 SWIGINTERN PyObject
*_wrap_Sound_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15921 PyObject
*resultobj
= 0;
15922 wxSound
*arg1
= (wxSound
*) 0 ;
15923 wxString
*arg2
= 0 ;
15927 bool temp2
= false ;
15928 PyObject
* obj0
= 0 ;
15929 PyObject
* obj1
= 0 ;
15930 char * kwnames
[] = {
15931 (char *) "self",(char *) "fileName", NULL
15934 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Sound_Create",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15935 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSound
, 0 | 0 );
15936 if (!SWIG_IsOK(res1
)) {
15937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Sound_Create" "', expected argument " "1"" of type '" "wxSound *""'");
15939 arg1
= reinterpret_cast< wxSound
* >(argp1
);
15941 arg2
= wxString_in_helper(obj1
);
15942 if (arg2
== NULL
) SWIG_fail
;
15946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15947 result
= (bool)(arg1
)->Create((wxString
const &)*arg2
);
15948 wxPyEndAllowThreads(__tstate
);
15949 if (PyErr_Occurred()) SWIG_fail
;
15952 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15968 SWIGINTERN PyObject
*_wrap_Sound_CreateFromData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15969 PyObject
*resultobj
= 0;
15970 wxSound
*arg1
= (wxSound
*) 0 ;
15971 PyObject
*arg2
= (PyObject
*) 0 ;
15975 PyObject
* obj0
= 0 ;
15976 PyObject
* obj1
= 0 ;
15977 char * kwnames
[] = {
15978 (char *) "self",(char *) "data", NULL
15981 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Sound_CreateFromData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15982 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSound
, 0 | 0 );
15983 if (!SWIG_IsOK(res1
)) {
15984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Sound_CreateFromData" "', expected argument " "1"" of type '" "wxSound *""'");
15986 arg1
= reinterpret_cast< wxSound
* >(argp1
);
15989 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15990 result
= (bool)wxSound_CreateFromData(arg1
,arg2
);
15991 wxPyEndAllowThreads(__tstate
);
15992 if (PyErr_Occurred()) SWIG_fail
;
15995 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16003 SWIGINTERN PyObject
*_wrap_Sound_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16004 PyObject
*resultobj
= 0;
16005 wxSound
*arg1
= (wxSound
*) 0 ;
16009 PyObject
*swig_obj
[1] ;
16011 if (!args
) SWIG_fail
;
16012 swig_obj
[0] = args
;
16013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSound
, 0 | 0 );
16014 if (!SWIG_IsOK(res1
)) {
16015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Sound_IsOk" "', expected argument " "1"" of type '" "wxSound *""'");
16017 arg1
= reinterpret_cast< wxSound
* >(argp1
);
16019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16020 result
= (bool)(arg1
)->IsOk();
16021 wxPyEndAllowThreads(__tstate
);
16022 if (PyErr_Occurred()) SWIG_fail
;
16025 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16033 SWIGINTERN PyObject
*_wrap_Sound_Play(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16034 PyObject
*resultobj
= 0;
16035 wxSound
*arg1
= (wxSound
*) 0 ;
16036 unsigned int arg2
= (unsigned int) wxSOUND_ASYNC
;
16040 unsigned int val2
;
16042 PyObject
* obj0
= 0 ;
16043 PyObject
* obj1
= 0 ;
16044 char * kwnames
[] = {
16045 (char *) "self",(char *) "flags", NULL
16048 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Sound_Play",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16049 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSound
, 0 | 0 );
16050 if (!SWIG_IsOK(res1
)) {
16051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Sound_Play" "', expected argument " "1"" of type '" "wxSound const *""'");
16053 arg1
= reinterpret_cast< wxSound
* >(argp1
);
16055 ecode2
= SWIG_AsVal_unsigned_SS_int(obj1
, &val2
);
16056 if (!SWIG_IsOK(ecode2
)) {
16057 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Sound_Play" "', expected argument " "2"" of type '" "unsigned int""'");
16059 arg2
= static_cast< unsigned int >(val2
);
16062 if (!wxPyCheckForApp()) SWIG_fail
;
16063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16064 result
= (bool)((wxSound
const *)arg1
)->Play(arg2
);
16065 wxPyEndAllowThreads(__tstate
);
16066 if (PyErr_Occurred()) SWIG_fail
;
16069 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16077 SWIGINTERN PyObject
*_wrap_Sound_PlaySound(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16078 PyObject
*resultobj
= 0;
16079 wxString
*arg1
= 0 ;
16080 unsigned int arg2
= (unsigned int) wxSOUND_ASYNC
;
16082 bool temp1
= false ;
16083 unsigned int val2
;
16085 PyObject
* obj0
= 0 ;
16086 PyObject
* obj1
= 0 ;
16087 char * kwnames
[] = {
16088 (char *) "filename",(char *) "flags", NULL
16091 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Sound_PlaySound",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16093 arg1
= wxString_in_helper(obj0
);
16094 if (arg1
== NULL
) SWIG_fail
;
16098 ecode2
= SWIG_AsVal_unsigned_SS_int(obj1
, &val2
);
16099 if (!SWIG_IsOK(ecode2
)) {
16100 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Sound_PlaySound" "', expected argument " "2"" of type '" "unsigned int""'");
16102 arg2
= static_cast< unsigned int >(val2
);
16105 if (!wxPyCheckForApp()) SWIG_fail
;
16106 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16107 result
= (bool)wxSound::Play((wxString
const &)*arg1
,arg2
);
16108 wxPyEndAllowThreads(__tstate
);
16109 if (PyErr_Occurred()) SWIG_fail
;
16112 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16128 SWIGINTERN PyObject
*_wrap_Sound_Stop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16129 PyObject
*resultobj
= 0;
16131 if (!SWIG_Python_UnpackTuple(args
,"Sound_Stop",0,0,0)) SWIG_fail
;
16133 if (!wxPyCheckForApp()) SWIG_fail
;
16134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16136 wxPyEndAllowThreads(__tstate
);
16137 if (PyErr_Occurred()) SWIG_fail
;
16139 resultobj
= SWIG_Py_Void();
16146 SWIGINTERN PyObject
*Sound_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16148 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16149 SWIG_TypeNewClientData(SWIGTYPE_p_wxSound
, SWIG_NewClientData(obj
));
16150 return SWIG_Py_Void();
16153 SWIGINTERN PyObject
*Sound_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16154 return SWIG_Python_InitShadowInstance(args
);
16157 SWIGINTERN PyObject
*_wrap_new_FileTypeInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16158 PyObject
*resultobj
= 0;
16159 wxString
*arg1
= 0 ;
16160 wxString
*arg2
= 0 ;
16161 wxString
*arg3
= 0 ;
16162 wxString
*arg4
= 0 ;
16163 wxFileTypeInfo
*result
= 0 ;
16164 bool temp1
= false ;
16165 bool temp2
= false ;
16166 bool temp3
= false ;
16167 bool temp4
= false ;
16168 PyObject
* obj0
= 0 ;
16169 PyObject
* obj1
= 0 ;
16170 PyObject
* obj2
= 0 ;
16171 PyObject
* obj3
= 0 ;
16172 char * kwnames
[] = {
16173 (char *) "mimeType",(char *) "openCmd",(char *) "printCmd",(char *) "desc", NULL
16176 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_FileTypeInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
16178 arg1
= wxString_in_helper(obj0
);
16179 if (arg1
== NULL
) SWIG_fail
;
16183 arg2
= wxString_in_helper(obj1
);
16184 if (arg2
== NULL
) SWIG_fail
;
16188 arg3
= wxString_in_helper(obj2
);
16189 if (arg3
== NULL
) SWIG_fail
;
16193 arg4
= wxString_in_helper(obj3
);
16194 if (arg4
== NULL
) SWIG_fail
;
16198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16199 result
= (wxFileTypeInfo
*)new wxFileTypeInfo((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
);
16200 wxPyEndAllowThreads(__tstate
);
16201 if (PyErr_Occurred()) SWIG_fail
;
16203 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileTypeInfo
, SWIG_POINTER_NEW
| 0 );
16242 SWIGINTERN PyObject
*_wrap_new_FileTypeInfoSequence(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16243 PyObject
*resultobj
= 0;
16244 wxArrayString
*arg1
= 0 ;
16245 wxFileTypeInfo
*result
= 0 ;
16246 bool temp1
= false ;
16247 PyObject
* obj0
= 0 ;
16248 char * kwnames
[] = {
16249 (char *) "sArray", NULL
16252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_FileTypeInfoSequence",kwnames
,&obj0
)) SWIG_fail
;
16254 if (! PySequence_Check(obj0
)) {
16255 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
16258 arg1
= new wxArrayString
;
16260 int i
, len
=PySequence_Length(obj0
);
16261 for (i
=0; i
<len
; i
++) {
16262 PyObject
* item
= PySequence_GetItem(obj0
, i
);
16263 wxString
* s
= wxString_in_helper(item
);
16264 if (PyErr_Occurred()) SWIG_fail
;
16271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16272 result
= (wxFileTypeInfo
*)new wxFileTypeInfo((wxArrayString
const &)*arg1
);
16273 wxPyEndAllowThreads(__tstate
);
16274 if (PyErr_Occurred()) SWIG_fail
;
16276 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileTypeInfo
, SWIG_POINTER_OWN
| 0 );
16278 if (temp1
) delete arg1
;
16283 if (temp1
) delete arg1
;
16289 SWIGINTERN PyObject
*_wrap_new_NullFileTypeInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16290 PyObject
*resultobj
= 0;
16291 wxFileTypeInfo
*result
= 0 ;
16293 if (!SWIG_Python_UnpackTuple(args
,"new_NullFileTypeInfo",0,0,0)) SWIG_fail
;
16295 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16296 result
= (wxFileTypeInfo
*)new wxFileTypeInfo();
16297 wxPyEndAllowThreads(__tstate
);
16298 if (PyErr_Occurred()) SWIG_fail
;
16300 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileTypeInfo
, SWIG_POINTER_OWN
| 0 );
16307 SWIGINTERN PyObject
*_wrap_FileTypeInfo_IsValid(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16308 PyObject
*resultobj
= 0;
16309 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16313 PyObject
*swig_obj
[1] ;
16315 if (!args
) SWIG_fail
;
16316 swig_obj
[0] = args
;
16317 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16318 if (!SWIG_IsOK(res1
)) {
16319 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_IsValid" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16321 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16324 result
= (bool)((wxFileTypeInfo
const *)arg1
)->IsValid();
16325 wxPyEndAllowThreads(__tstate
);
16326 if (PyErr_Occurred()) SWIG_fail
;
16329 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16337 SWIGINTERN PyObject
*_wrap_FileTypeInfo_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16338 PyObject
*resultobj
= 0;
16339 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16340 wxString
*arg2
= 0 ;
16341 int arg3
= (int) 0 ;
16344 bool temp2
= false ;
16347 PyObject
* obj0
= 0 ;
16348 PyObject
* obj1
= 0 ;
16349 PyObject
* obj2
= 0 ;
16350 char * kwnames
[] = {
16351 (char *) "self",(char *) "iconFile",(char *) "iconIndex", NULL
16354 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FileTypeInfo_SetIcon",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16355 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16356 if (!SWIG_IsOK(res1
)) {
16357 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_SetIcon" "', expected argument " "1"" of type '" "wxFileTypeInfo *""'");
16359 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16361 arg2
= wxString_in_helper(obj1
);
16362 if (arg2
== NULL
) SWIG_fail
;
16366 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16367 if (!SWIG_IsOK(ecode3
)) {
16368 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileTypeInfo_SetIcon" "', expected argument " "3"" of type '" "int""'");
16370 arg3
= static_cast< int >(val3
);
16373 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16374 (arg1
)->SetIcon((wxString
const &)*arg2
,arg3
);
16375 wxPyEndAllowThreads(__tstate
);
16376 if (PyErr_Occurred()) SWIG_fail
;
16378 resultobj
= SWIG_Py_Void();
16393 SWIGINTERN PyObject
*_wrap_FileTypeInfo_SetShortDesc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16394 PyObject
*resultobj
= 0;
16395 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16396 wxString
*arg2
= 0 ;
16399 bool temp2
= false ;
16400 PyObject
* obj0
= 0 ;
16401 PyObject
* obj1
= 0 ;
16402 char * kwnames
[] = {
16403 (char *) "self",(char *) "shortDesc", NULL
16406 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileTypeInfo_SetShortDesc",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16407 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16408 if (!SWIG_IsOK(res1
)) {
16409 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_SetShortDesc" "', expected argument " "1"" of type '" "wxFileTypeInfo *""'");
16411 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16413 arg2
= wxString_in_helper(obj1
);
16414 if (arg2
== NULL
) SWIG_fail
;
16418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16419 (arg1
)->SetShortDesc((wxString
const &)*arg2
);
16420 wxPyEndAllowThreads(__tstate
);
16421 if (PyErr_Occurred()) SWIG_fail
;
16423 resultobj
= SWIG_Py_Void();
16438 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetMimeType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16439 PyObject
*resultobj
= 0;
16440 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16441 wxString
*result
= 0 ;
16444 PyObject
*swig_obj
[1] ;
16446 if (!args
) SWIG_fail
;
16447 swig_obj
[0] = args
;
16448 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16449 if (!SWIG_IsOK(res1
)) {
16450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetMimeType" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16452 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16456 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetMimeType();
16457 result
= (wxString
*) &_result_ref
;
16459 wxPyEndAllowThreads(__tstate
);
16460 if (PyErr_Occurred()) SWIG_fail
;
16464 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16466 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16475 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetOpenCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16476 PyObject
*resultobj
= 0;
16477 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16478 wxString
*result
= 0 ;
16481 PyObject
*swig_obj
[1] ;
16483 if (!args
) SWIG_fail
;
16484 swig_obj
[0] = args
;
16485 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16486 if (!SWIG_IsOK(res1
)) {
16487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetOpenCommand" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16489 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16493 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetOpenCommand();
16494 result
= (wxString
*) &_result_ref
;
16496 wxPyEndAllowThreads(__tstate
);
16497 if (PyErr_Occurred()) SWIG_fail
;
16501 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16503 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16512 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetPrintCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16513 PyObject
*resultobj
= 0;
16514 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16515 wxString
*result
= 0 ;
16518 PyObject
*swig_obj
[1] ;
16520 if (!args
) SWIG_fail
;
16521 swig_obj
[0] = args
;
16522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16523 if (!SWIG_IsOK(res1
)) {
16524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetPrintCommand" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16526 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16530 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetPrintCommand();
16531 result
= (wxString
*) &_result_ref
;
16533 wxPyEndAllowThreads(__tstate
);
16534 if (PyErr_Occurred()) SWIG_fail
;
16538 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16540 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16549 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetShortDesc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16550 PyObject
*resultobj
= 0;
16551 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16552 wxString
*result
= 0 ;
16555 PyObject
*swig_obj
[1] ;
16557 if (!args
) SWIG_fail
;
16558 swig_obj
[0] = args
;
16559 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16560 if (!SWIG_IsOK(res1
)) {
16561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetShortDesc" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16563 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16565 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16567 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetShortDesc();
16568 result
= (wxString
*) &_result_ref
;
16570 wxPyEndAllowThreads(__tstate
);
16571 if (PyErr_Occurred()) SWIG_fail
;
16575 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16577 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16586 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetDescription(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16587 PyObject
*resultobj
= 0;
16588 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16589 wxString
*result
= 0 ;
16592 PyObject
*swig_obj
[1] ;
16594 if (!args
) SWIG_fail
;
16595 swig_obj
[0] = args
;
16596 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16597 if (!SWIG_IsOK(res1
)) {
16598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetDescription" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16600 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16604 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetDescription();
16605 result
= (wxString
*) &_result_ref
;
16607 wxPyEndAllowThreads(__tstate
);
16608 if (PyErr_Occurred()) SWIG_fail
;
16612 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16614 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16623 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetExtensions(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16624 PyObject
*resultobj
= 0;
16625 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16626 wxArrayString
*result
= 0 ;
16629 PyObject
*swig_obj
[1] ;
16631 if (!args
) SWIG_fail
;
16632 swig_obj
[0] = args
;
16633 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16634 if (!SWIG_IsOK(res1
)) {
16635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetExtensions" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16637 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16641 wxArrayString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetExtensions();
16642 result
= (wxArrayString
*) &_result_ref
;
16644 wxPyEndAllowThreads(__tstate
);
16645 if (PyErr_Occurred()) SWIG_fail
;
16648 resultobj
= wxArrayString2PyList_helper(*result
);
16656 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetExtensionsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16657 PyObject
*resultobj
= 0;
16658 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16662 PyObject
*swig_obj
[1] ;
16664 if (!args
) SWIG_fail
;
16665 swig_obj
[0] = args
;
16666 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16667 if (!SWIG_IsOK(res1
)) {
16668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetExtensionsCount" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16670 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16673 result
= (size_t)((wxFileTypeInfo
const *)arg1
)->GetExtensionsCount();
16674 wxPyEndAllowThreads(__tstate
);
16675 if (PyErr_Occurred()) SWIG_fail
;
16677 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
16684 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetIconFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16685 PyObject
*resultobj
= 0;
16686 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16687 wxString
*result
= 0 ;
16690 PyObject
*swig_obj
[1] ;
16692 if (!args
) SWIG_fail
;
16693 swig_obj
[0] = args
;
16694 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16695 if (!SWIG_IsOK(res1
)) {
16696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetIconFile" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16698 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16702 wxString
const &_result_ref
= ((wxFileTypeInfo
const *)arg1
)->GetIconFile();
16703 result
= (wxString
*) &_result_ref
;
16705 wxPyEndAllowThreads(__tstate
);
16706 if (PyErr_Occurred()) SWIG_fail
;
16710 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16712 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16721 SWIGINTERN PyObject
*_wrap_FileTypeInfo_GetIconIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16722 PyObject
*resultobj
= 0;
16723 wxFileTypeInfo
*arg1
= (wxFileTypeInfo
*) 0 ;
16727 PyObject
*swig_obj
[1] ;
16729 if (!args
) SWIG_fail
;
16730 swig_obj
[0] = args
;
16731 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileTypeInfo
, 0 | 0 );
16732 if (!SWIG_IsOK(res1
)) {
16733 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileTypeInfo_GetIconIndex" "', expected argument " "1"" of type '" "wxFileTypeInfo const *""'");
16735 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16738 result
= (int)((wxFileTypeInfo
const *)arg1
)->GetIconIndex();
16739 wxPyEndAllowThreads(__tstate
);
16740 if (PyErr_Occurred()) SWIG_fail
;
16742 resultobj
= SWIG_From_int(static_cast< int >(result
));
16749 SWIGINTERN PyObject
*FileTypeInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16751 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16752 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileTypeInfo
, SWIG_NewClientData(obj
));
16753 return SWIG_Py_Void();
16756 SWIGINTERN PyObject
*FileTypeInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16757 return SWIG_Python_InitShadowInstance(args
);
16760 SWIGINTERN PyObject
*_wrap_new_FileType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16761 PyObject
*resultobj
= 0;
16762 wxFileTypeInfo
*arg1
= 0 ;
16763 wxFileType
*result
= 0 ;
16766 PyObject
* obj0
= 0 ;
16767 char * kwnames
[] = {
16768 (char *) "ftInfo", NULL
16771 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_FileType",kwnames
,&obj0
)) SWIG_fail
;
16772 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxFileTypeInfo
, 0 | 0);
16773 if (!SWIG_IsOK(res1
)) {
16774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FileType" "', expected argument " "1"" of type '" "wxFileTypeInfo const &""'");
16777 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FileType" "', expected argument " "1"" of type '" "wxFileTypeInfo const &""'");
16779 arg1
= reinterpret_cast< wxFileTypeInfo
* >(argp1
);
16781 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16782 result
= (wxFileType
*)new wxFileType((wxFileTypeInfo
const &)*arg1
);
16783 wxPyEndAllowThreads(__tstate
);
16784 if (PyErr_Occurred()) SWIG_fail
;
16786 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileType
, SWIG_POINTER_NEW
| 0 );
16793 SWIGINTERN PyObject
*_wrap_delete_FileType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16794 PyObject
*resultobj
= 0;
16795 wxFileType
*arg1
= (wxFileType
*) 0 ;
16798 PyObject
*swig_obj
[1] ;
16800 if (!args
) SWIG_fail
;
16801 swig_obj
[0] = args
;
16802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, SWIG_POINTER_DISOWN
| 0 );
16803 if (!SWIG_IsOK(res1
)) {
16804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FileType" "', expected argument " "1"" of type '" "wxFileType *""'");
16806 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16811 wxPyEndAllowThreads(__tstate
);
16812 if (PyErr_Occurred()) SWIG_fail
;
16814 resultobj
= SWIG_Py_Void();
16821 SWIGINTERN PyObject
*_wrap_FileType_GetMimeType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16822 PyObject
*resultobj
= 0;
16823 wxFileType
*arg1
= (wxFileType
*) 0 ;
16824 PyObject
*result
= 0 ;
16827 PyObject
*swig_obj
[1] ;
16829 if (!args
) SWIG_fail
;
16830 swig_obj
[0] = args
;
16831 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16832 if (!SWIG_IsOK(res1
)) {
16833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetMimeType" "', expected argument " "1"" of type '" "wxFileType *""'");
16835 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16837 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16838 result
= (PyObject
*)wxFileType_GetMimeType(arg1
);
16839 wxPyEndAllowThreads(__tstate
);
16840 if (PyErr_Occurred()) SWIG_fail
;
16842 resultobj
= result
;
16849 SWIGINTERN PyObject
*_wrap_FileType_GetMimeTypes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16850 PyObject
*resultobj
= 0;
16851 wxFileType
*arg1
= (wxFileType
*) 0 ;
16852 PyObject
*result
= 0 ;
16855 PyObject
*swig_obj
[1] ;
16857 if (!args
) SWIG_fail
;
16858 swig_obj
[0] = args
;
16859 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16860 if (!SWIG_IsOK(res1
)) {
16861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetMimeTypes" "', expected argument " "1"" of type '" "wxFileType *""'");
16863 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16866 result
= (PyObject
*)wxFileType_GetMimeTypes(arg1
);
16867 wxPyEndAllowThreads(__tstate
);
16868 if (PyErr_Occurred()) SWIG_fail
;
16870 resultobj
= result
;
16877 SWIGINTERN PyObject
*_wrap_FileType_GetExtensions(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16878 PyObject
*resultobj
= 0;
16879 wxFileType
*arg1
= (wxFileType
*) 0 ;
16880 PyObject
*result
= 0 ;
16883 PyObject
*swig_obj
[1] ;
16885 if (!args
) SWIG_fail
;
16886 swig_obj
[0] = args
;
16887 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16888 if (!SWIG_IsOK(res1
)) {
16889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetExtensions" "', expected argument " "1"" of type '" "wxFileType *""'");
16891 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16894 result
= (PyObject
*)wxFileType_GetExtensions(arg1
);
16895 wxPyEndAllowThreads(__tstate
);
16896 if (PyErr_Occurred()) SWIG_fail
;
16898 resultobj
= result
;
16905 SWIGINTERN PyObject
*_wrap_FileType_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16906 PyObject
*resultobj
= 0;
16907 wxFileType
*arg1
= (wxFileType
*) 0 ;
16908 wxIcon
*result
= 0 ;
16911 PyObject
*swig_obj
[1] ;
16913 if (!args
) SWIG_fail
;
16914 swig_obj
[0] = args
;
16915 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16916 if (!SWIG_IsOK(res1
)) {
16917 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetIcon" "', expected argument " "1"" of type '" "wxFileType *""'");
16919 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16922 result
= (wxIcon
*)wxFileType_GetIcon(arg1
);
16923 wxPyEndAllowThreads(__tstate
);
16924 if (PyErr_Occurred()) SWIG_fail
;
16926 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
16933 SWIGINTERN PyObject
*_wrap_FileType_GetIconInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16934 PyObject
*resultobj
= 0;
16935 wxFileType
*arg1
= (wxFileType
*) 0 ;
16936 PyObject
*result
= 0 ;
16939 PyObject
*swig_obj
[1] ;
16941 if (!args
) SWIG_fail
;
16942 swig_obj
[0] = args
;
16943 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16944 if (!SWIG_IsOK(res1
)) {
16945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetIconInfo" "', expected argument " "1"" of type '" "wxFileType *""'");
16947 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16949 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16950 result
= (PyObject
*)wxFileType_GetIconInfo(arg1
);
16951 wxPyEndAllowThreads(__tstate
);
16952 if (PyErr_Occurred()) SWIG_fail
;
16954 resultobj
= result
;
16961 SWIGINTERN PyObject
*_wrap_FileType_GetDescription(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16962 PyObject
*resultobj
= 0;
16963 wxFileType
*arg1
= (wxFileType
*) 0 ;
16964 PyObject
*result
= 0 ;
16967 PyObject
*swig_obj
[1] ;
16969 if (!args
) SWIG_fail
;
16970 swig_obj
[0] = args
;
16971 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
16972 if (!SWIG_IsOK(res1
)) {
16973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetDescription" "', expected argument " "1"" of type '" "wxFileType *""'");
16975 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
16977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16978 result
= (PyObject
*)wxFileType_GetDescription(arg1
);
16979 wxPyEndAllowThreads(__tstate
);
16980 if (PyErr_Occurred()) SWIG_fail
;
16982 resultobj
= result
;
16989 SWIGINTERN PyObject
*_wrap_FileType_GetOpenCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16990 PyObject
*resultobj
= 0;
16991 wxFileType
*arg1
= (wxFileType
*) 0 ;
16992 wxString
*arg2
= 0 ;
16993 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16994 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16995 PyObject
*result
= 0 ;
16998 bool temp2
= false ;
16999 bool temp3
= false ;
17000 PyObject
* obj0
= 0 ;
17001 PyObject
* obj1
= 0 ;
17002 PyObject
* obj2
= 0 ;
17003 char * kwnames
[] = {
17004 (char *) "self",(char *) "filename",(char *) "mimetype", NULL
17007 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FileType_GetOpenCommand",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17008 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17009 if (!SWIG_IsOK(res1
)) {
17010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetOpenCommand" "', expected argument " "1"" of type '" "wxFileType *""'");
17012 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17014 arg2
= wxString_in_helper(obj1
);
17015 if (arg2
== NULL
) SWIG_fail
;
17020 arg3
= wxString_in_helper(obj2
);
17021 if (arg3
== NULL
) SWIG_fail
;
17026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17027 result
= (PyObject
*)wxFileType_GetOpenCommand(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
);
17028 wxPyEndAllowThreads(__tstate
);
17029 if (PyErr_Occurred()) SWIG_fail
;
17031 resultobj
= result
;
17054 SWIGINTERN PyObject
*_wrap_FileType_GetPrintCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17055 PyObject
*resultobj
= 0;
17056 wxFileType
*arg1
= (wxFileType
*) 0 ;
17057 wxString
*arg2
= 0 ;
17058 wxString
const &arg3_defvalue
= wxPyEmptyString
;
17059 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17060 PyObject
*result
= 0 ;
17063 bool temp2
= false ;
17064 bool temp3
= false ;
17065 PyObject
* obj0
= 0 ;
17066 PyObject
* obj1
= 0 ;
17067 PyObject
* obj2
= 0 ;
17068 char * kwnames
[] = {
17069 (char *) "self",(char *) "filename",(char *) "mimetype", NULL
17072 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FileType_GetPrintCommand",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17073 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17074 if (!SWIG_IsOK(res1
)) {
17075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetPrintCommand" "', expected argument " "1"" of type '" "wxFileType *""'");
17077 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17079 arg2
= wxString_in_helper(obj1
);
17080 if (arg2
== NULL
) SWIG_fail
;
17085 arg3
= wxString_in_helper(obj2
);
17086 if (arg3
== NULL
) SWIG_fail
;
17091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17092 result
= (PyObject
*)wxFileType_GetPrintCommand(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
);
17093 wxPyEndAllowThreads(__tstate
);
17094 if (PyErr_Occurred()) SWIG_fail
;
17096 resultobj
= result
;
17119 SWIGINTERN PyObject
*_wrap_FileType_GetAllCommands(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17120 PyObject
*resultobj
= 0;
17121 wxFileType
*arg1
= (wxFileType
*) 0 ;
17122 wxString
*arg2
= 0 ;
17123 wxString
const &arg3_defvalue
= wxPyEmptyString
;
17124 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17125 PyObject
*result
= 0 ;
17128 bool temp2
= false ;
17129 bool temp3
= false ;
17130 PyObject
* obj0
= 0 ;
17131 PyObject
* obj1
= 0 ;
17132 PyObject
* obj2
= 0 ;
17133 char * kwnames
[] = {
17134 (char *) "self",(char *) "filename",(char *) "mimetype", NULL
17137 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FileType_GetAllCommands",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17138 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17139 if (!SWIG_IsOK(res1
)) {
17140 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_GetAllCommands" "', expected argument " "1"" of type '" "wxFileType *""'");
17142 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17144 arg2
= wxString_in_helper(obj1
);
17145 if (arg2
== NULL
) SWIG_fail
;
17150 arg3
= wxString_in_helper(obj2
);
17151 if (arg3
== NULL
) SWIG_fail
;
17156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17157 result
= (PyObject
*)wxFileType_GetAllCommands(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
);
17158 wxPyEndAllowThreads(__tstate
);
17159 if (PyErr_Occurred()) SWIG_fail
;
17161 resultobj
= result
;
17184 SWIGINTERN PyObject
*_wrap_FileType_SetCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17185 PyObject
*resultobj
= 0;
17186 wxFileType
*arg1
= (wxFileType
*) 0 ;
17187 wxString
*arg2
= 0 ;
17188 wxString
*arg3
= 0 ;
17189 bool arg4
= (bool) true ;
17193 bool temp2
= false ;
17194 bool temp3
= false ;
17197 PyObject
* obj0
= 0 ;
17198 PyObject
* obj1
= 0 ;
17199 PyObject
* obj2
= 0 ;
17200 PyObject
* obj3
= 0 ;
17201 char * kwnames
[] = {
17202 (char *) "self",(char *) "cmd",(char *) "verb",(char *) "overwriteprompt", NULL
17205 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:FileType_SetCommand",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
17206 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17207 if (!SWIG_IsOK(res1
)) {
17208 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_SetCommand" "', expected argument " "1"" of type '" "wxFileType *""'");
17210 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17212 arg2
= wxString_in_helper(obj1
);
17213 if (arg2
== NULL
) SWIG_fail
;
17217 arg3
= wxString_in_helper(obj2
);
17218 if (arg3
== NULL
) SWIG_fail
;
17222 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
17223 if (!SWIG_IsOK(ecode4
)) {
17224 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FileType_SetCommand" "', expected argument " "4"" of type '" "bool""'");
17226 arg4
= static_cast< bool >(val4
);
17229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17230 result
= (bool)(arg1
)->SetCommand((wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
);
17231 wxPyEndAllowThreads(__tstate
);
17232 if (PyErr_Occurred()) SWIG_fail
;
17235 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17259 SWIGINTERN PyObject
*_wrap_FileType_SetDefaultIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17260 PyObject
*resultobj
= 0;
17261 wxFileType
*arg1
= (wxFileType
*) 0 ;
17262 wxString
const &arg2_defvalue
= wxPyEmptyString
;
17263 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
17264 int arg3
= (int) 0 ;
17268 bool temp2
= false ;
17271 PyObject
* obj0
= 0 ;
17272 PyObject
* obj1
= 0 ;
17273 PyObject
* obj2
= 0 ;
17274 char * kwnames
[] = {
17275 (char *) "self",(char *) "cmd",(char *) "index", NULL
17278 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:FileType_SetDefaultIcon",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17279 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17280 if (!SWIG_IsOK(res1
)) {
17281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_SetDefaultIcon" "', expected argument " "1"" of type '" "wxFileType *""'");
17283 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17286 arg2
= wxString_in_helper(obj1
);
17287 if (arg2
== NULL
) SWIG_fail
;
17292 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17293 if (!SWIG_IsOK(ecode3
)) {
17294 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileType_SetDefaultIcon" "', expected argument " "3"" of type '" "int""'");
17296 arg3
= static_cast< int >(val3
);
17299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17300 result
= (bool)(arg1
)->SetDefaultIcon((wxString
const &)*arg2
,arg3
);
17301 wxPyEndAllowThreads(__tstate
);
17302 if (PyErr_Occurred()) SWIG_fail
;
17305 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17321 SWIGINTERN PyObject
*_wrap_FileType_Unassociate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17322 PyObject
*resultobj
= 0;
17323 wxFileType
*arg1
= (wxFileType
*) 0 ;
17327 PyObject
*swig_obj
[1] ;
17329 if (!args
) SWIG_fail
;
17330 swig_obj
[0] = args
;
17331 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17332 if (!SWIG_IsOK(res1
)) {
17333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileType_Unassociate" "', expected argument " "1"" of type '" "wxFileType *""'");
17335 arg1
= reinterpret_cast< wxFileType
* >(argp1
);
17337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17338 result
= (bool)(arg1
)->Unassociate();
17339 wxPyEndAllowThreads(__tstate
);
17340 if (PyErr_Occurred()) SWIG_fail
;
17343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17351 SWIGINTERN PyObject
*_wrap_FileType_ExpandCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17352 PyObject
*resultobj
= 0;
17353 wxString
*arg1
= 0 ;
17354 wxString
*arg2
= 0 ;
17355 wxString
const &arg3_defvalue
= wxPyEmptyString
;
17356 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17358 bool temp1
= false ;
17359 bool temp2
= false ;
17360 bool temp3
= false ;
17361 PyObject
* obj0
= 0 ;
17362 PyObject
* obj1
= 0 ;
17363 PyObject
* obj2
= 0 ;
17364 char * kwnames
[] = {
17365 (char *) "command",(char *) "filename",(char *) "mimetype", NULL
17368 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FileType_ExpandCommand",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17370 arg1
= wxString_in_helper(obj0
);
17371 if (arg1
== NULL
) SWIG_fail
;
17375 arg2
= wxString_in_helper(obj1
);
17376 if (arg2
== NULL
) SWIG_fail
;
17381 arg3
= wxString_in_helper(obj2
);
17382 if (arg3
== NULL
) SWIG_fail
;
17387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17388 result
= wxFileType_ExpandCommand((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
);
17389 wxPyEndAllowThreads(__tstate
);
17390 if (PyErr_Occurred()) SWIG_fail
;
17394 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17396 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17429 SWIGINTERN PyObject
*FileType_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17431 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17432 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileType
, SWIG_NewClientData(obj
));
17433 return SWIG_Py_Void();
17436 SWIGINTERN PyObject
*FileType_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17437 return SWIG_Python_InitShadowInstance(args
);
17440 SWIGINTERN
int TheMimeTypesManager_set(PyObject
*) {
17441 SWIG_Error(SWIG_AttributeError
,"Variable TheMimeTypesManager is read-only.");
17446 SWIGINTERN PyObject
*TheMimeTypesManager_get(void) {
17447 PyObject
*pyobj
= 0;
17449 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(wxTheMimeTypesManager
), SWIGTYPE_p_wxMimeTypesManager
, 0 );
17454 SWIGINTERN PyObject
*_wrap_MimeTypesManager_IsOfType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17455 PyObject
*resultobj
= 0;
17456 wxString
*arg1
= 0 ;
17457 wxString
*arg2
= 0 ;
17459 bool temp1
= false ;
17460 bool temp2
= false ;
17461 PyObject
* obj0
= 0 ;
17462 PyObject
* obj1
= 0 ;
17463 char * kwnames
[] = {
17464 (char *) "mimeType",(char *) "wildcard", NULL
17467 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_IsOfType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17469 arg1
= wxString_in_helper(obj0
);
17470 if (arg1
== NULL
) SWIG_fail
;
17474 arg2
= wxString_in_helper(obj1
);
17475 if (arg2
== NULL
) SWIG_fail
;
17479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17480 result
= (bool)wxMimeTypesManager::IsOfType((wxString
const &)*arg1
,(wxString
const &)*arg2
);
17481 wxPyEndAllowThreads(__tstate
);
17482 if (PyErr_Occurred()) SWIG_fail
;
17485 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17509 SWIGINTERN PyObject
*_wrap_new_MimeTypesManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17510 PyObject
*resultobj
= 0;
17511 wxMimeTypesManager
*result
= 0 ;
17513 if (!SWIG_Python_UnpackTuple(args
,"new_MimeTypesManager",0,0,0)) SWIG_fail
;
17515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17516 result
= (wxMimeTypesManager
*)new wxMimeTypesManager();
17517 wxPyEndAllowThreads(__tstate
);
17518 if (PyErr_Occurred()) SWIG_fail
;
17520 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMimeTypesManager
, SWIG_POINTER_NEW
| 0 );
17527 SWIGINTERN PyObject
*_wrap_MimeTypesManager_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17528 PyObject
*resultobj
= 0;
17529 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17530 int arg2
= (int) wxMAILCAP_ALL
;
17531 wxString
const &arg3_defvalue
= wxPyEmptyString
;
17532 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17537 bool temp3
= false ;
17538 PyObject
* obj0
= 0 ;
17539 PyObject
* obj1
= 0 ;
17540 PyObject
* obj2
= 0 ;
17541 char * kwnames
[] = {
17542 (char *) "self",(char *) "mailcapStyle",(char *) "extraDir", NULL
17545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:MimeTypesManager_Initialize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17547 if (!SWIG_IsOK(res1
)) {
17548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_Initialize" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17550 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17552 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17553 if (!SWIG_IsOK(ecode2
)) {
17554 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MimeTypesManager_Initialize" "', expected argument " "2"" of type '" "int""'");
17556 arg2
= static_cast< int >(val2
);
17560 arg3
= wxString_in_helper(obj2
);
17561 if (arg3
== NULL
) SWIG_fail
;
17566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17567 (arg1
)->Initialize(arg2
,(wxString
const &)*arg3
);
17568 wxPyEndAllowThreads(__tstate
);
17569 if (PyErr_Occurred()) SWIG_fail
;
17571 resultobj
= SWIG_Py_Void();
17586 SWIGINTERN PyObject
*_wrap_MimeTypesManager_ClearData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17587 PyObject
*resultobj
= 0;
17588 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17591 PyObject
*swig_obj
[1] ;
17593 if (!args
) SWIG_fail
;
17594 swig_obj
[0] = args
;
17595 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17596 if (!SWIG_IsOK(res1
)) {
17597 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_ClearData" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17599 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17602 (arg1
)->ClearData();
17603 wxPyEndAllowThreads(__tstate
);
17604 if (PyErr_Occurred()) SWIG_fail
;
17606 resultobj
= SWIG_Py_Void();
17613 SWIGINTERN PyObject
*_wrap_MimeTypesManager_GetFileTypeFromExtension(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17614 PyObject
*resultobj
= 0;
17615 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17616 wxString
*arg2
= 0 ;
17617 wxFileType
*result
= 0 ;
17620 bool temp2
= false ;
17621 PyObject
* obj0
= 0 ;
17622 PyObject
* obj1
= 0 ;
17623 char * kwnames
[] = {
17624 (char *) "self",(char *) "ext", NULL
17627 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_GetFileTypeFromExtension",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17628 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17629 if (!SWIG_IsOK(res1
)) {
17630 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_GetFileTypeFromExtension" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17632 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17634 arg2
= wxString_in_helper(obj1
);
17635 if (arg2
== NULL
) SWIG_fail
;
17639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17640 result
= (wxFileType
*)(arg1
)->GetFileTypeFromExtension((wxString
const &)*arg2
);
17641 wxPyEndAllowThreads(__tstate
);
17642 if (PyErr_Occurred()) SWIG_fail
;
17644 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileType
, SWIG_POINTER_OWN
| 0 );
17659 SWIGINTERN PyObject
*_wrap_MimeTypesManager_GetFileTypeFromMimeType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17660 PyObject
*resultobj
= 0;
17661 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17662 wxString
*arg2
= 0 ;
17663 wxFileType
*result
= 0 ;
17666 bool temp2
= false ;
17667 PyObject
* obj0
= 0 ;
17668 PyObject
* obj1
= 0 ;
17669 char * kwnames
[] = {
17670 (char *) "self",(char *) "mimeType", NULL
17673 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_GetFileTypeFromMimeType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17674 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17675 if (!SWIG_IsOK(res1
)) {
17676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_GetFileTypeFromMimeType" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17678 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17680 arg2
= wxString_in_helper(obj1
);
17681 if (arg2
== NULL
) SWIG_fail
;
17685 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17686 result
= (wxFileType
*)(arg1
)->GetFileTypeFromMimeType((wxString
const &)*arg2
);
17687 wxPyEndAllowThreads(__tstate
);
17688 if (PyErr_Occurred()) SWIG_fail
;
17690 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileType
, SWIG_POINTER_OWN
| 0 );
17705 SWIGINTERN PyObject
*_wrap_MimeTypesManager_ReadMailcap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17706 PyObject
*resultobj
= 0;
17707 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17708 wxString
*arg2
= 0 ;
17709 bool arg3
= (bool) false ;
17713 bool temp2
= false ;
17716 PyObject
* obj0
= 0 ;
17717 PyObject
* obj1
= 0 ;
17718 PyObject
* obj2
= 0 ;
17719 char * kwnames
[] = {
17720 (char *) "self",(char *) "filename",(char *) "fallback", NULL
17723 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:MimeTypesManager_ReadMailcap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17724 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17725 if (!SWIG_IsOK(res1
)) {
17726 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_ReadMailcap" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17728 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17730 arg2
= wxString_in_helper(obj1
);
17731 if (arg2
== NULL
) SWIG_fail
;
17735 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
17736 if (!SWIG_IsOK(ecode3
)) {
17737 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MimeTypesManager_ReadMailcap" "', expected argument " "3"" of type '" "bool""'");
17739 arg3
= static_cast< bool >(val3
);
17742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17743 result
= (bool)(arg1
)->ReadMailcap((wxString
const &)*arg2
,arg3
);
17744 wxPyEndAllowThreads(__tstate
);
17745 if (PyErr_Occurred()) SWIG_fail
;
17748 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17764 SWIGINTERN PyObject
*_wrap_MimeTypesManager_ReadMimeTypes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17765 PyObject
*resultobj
= 0;
17766 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17767 wxString
*arg2
= 0 ;
17771 bool temp2
= false ;
17772 PyObject
* obj0
= 0 ;
17773 PyObject
* obj1
= 0 ;
17774 char * kwnames
[] = {
17775 (char *) "self",(char *) "filename", NULL
17778 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_ReadMimeTypes",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17779 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17780 if (!SWIG_IsOK(res1
)) {
17781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_ReadMimeTypes" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17783 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17785 arg2
= wxString_in_helper(obj1
);
17786 if (arg2
== NULL
) SWIG_fail
;
17790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17791 result
= (bool)(arg1
)->ReadMimeTypes((wxString
const &)*arg2
);
17792 wxPyEndAllowThreads(__tstate
);
17793 if (PyErr_Occurred()) SWIG_fail
;
17796 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17812 SWIGINTERN PyObject
*_wrap_MimeTypesManager_EnumAllFileTypes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17813 PyObject
*resultobj
= 0;
17814 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17815 PyObject
*result
= 0 ;
17818 PyObject
*swig_obj
[1] ;
17820 if (!args
) SWIG_fail
;
17821 swig_obj
[0] = args
;
17822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17823 if (!SWIG_IsOK(res1
)) {
17824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_EnumAllFileTypes" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17826 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17829 result
= (PyObject
*)wxMimeTypesManager_EnumAllFileTypes(arg1
);
17830 wxPyEndAllowThreads(__tstate
);
17831 if (PyErr_Occurred()) SWIG_fail
;
17833 resultobj
= result
;
17840 SWIGINTERN PyObject
*_wrap_MimeTypesManager_AddFallback(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17841 PyObject
*resultobj
= 0;
17842 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17843 wxFileTypeInfo
*arg2
= 0 ;
17848 PyObject
* obj0
= 0 ;
17849 PyObject
* obj1
= 0 ;
17850 char * kwnames
[] = {
17851 (char *) "self",(char *) "ft", NULL
17854 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_AddFallback",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17855 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17856 if (!SWIG_IsOK(res1
)) {
17857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_AddFallback" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17859 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17860 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFileTypeInfo
, 0 | 0);
17861 if (!SWIG_IsOK(res2
)) {
17862 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MimeTypesManager_AddFallback" "', expected argument " "2"" of type '" "wxFileTypeInfo const &""'");
17865 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "MimeTypesManager_AddFallback" "', expected argument " "2"" of type '" "wxFileTypeInfo const &""'");
17867 arg2
= reinterpret_cast< wxFileTypeInfo
* >(argp2
);
17869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17870 (arg1
)->AddFallback((wxFileTypeInfo
const &)*arg2
);
17871 wxPyEndAllowThreads(__tstate
);
17872 if (PyErr_Occurred()) SWIG_fail
;
17874 resultobj
= SWIG_Py_Void();
17881 SWIGINTERN PyObject
*_wrap_MimeTypesManager_Associate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17882 PyObject
*resultobj
= 0;
17883 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17884 wxFileTypeInfo
*arg2
= 0 ;
17885 wxFileType
*result
= 0 ;
17890 PyObject
* obj0
= 0 ;
17891 PyObject
* obj1
= 0 ;
17892 char * kwnames
[] = {
17893 (char *) "self",(char *) "ftInfo", NULL
17896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_Associate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17898 if (!SWIG_IsOK(res1
)) {
17899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_Associate" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17901 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17902 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFileTypeInfo
, 0 | 0);
17903 if (!SWIG_IsOK(res2
)) {
17904 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MimeTypesManager_Associate" "', expected argument " "2"" of type '" "wxFileTypeInfo const &""'");
17907 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "MimeTypesManager_Associate" "', expected argument " "2"" of type '" "wxFileTypeInfo const &""'");
17909 arg2
= reinterpret_cast< wxFileTypeInfo
* >(argp2
);
17911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17912 result
= (wxFileType
*)(arg1
)->Associate((wxFileTypeInfo
const &)*arg2
);
17913 wxPyEndAllowThreads(__tstate
);
17914 if (PyErr_Occurred()) SWIG_fail
;
17916 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileType
, SWIG_POINTER_OWN
| 0 );
17923 SWIGINTERN PyObject
*_wrap_MimeTypesManager_Unassociate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17924 PyObject
*resultobj
= 0;
17925 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17926 wxFileType
*arg2
= (wxFileType
*) 0 ;
17932 PyObject
* obj0
= 0 ;
17933 PyObject
* obj1
= 0 ;
17934 char * kwnames
[] = {
17935 (char *) "self",(char *) "ft", NULL
17938 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MimeTypesManager_Unassociate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17939 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMimeTypesManager
, 0 | 0 );
17940 if (!SWIG_IsOK(res1
)) {
17941 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MimeTypesManager_Unassociate" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17943 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17944 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFileType
, 0 | 0 );
17945 if (!SWIG_IsOK(res2
)) {
17946 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MimeTypesManager_Unassociate" "', expected argument " "2"" of type '" "wxFileType *""'");
17948 arg2
= reinterpret_cast< wxFileType
* >(argp2
);
17950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17951 result
= (bool)(arg1
)->Unassociate(arg2
);
17952 wxPyEndAllowThreads(__tstate
);
17953 if (PyErr_Occurred()) SWIG_fail
;
17956 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17964 SWIGINTERN PyObject
*_wrap_delete_MimeTypesManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17965 PyObject
*resultobj
= 0;
17966 wxMimeTypesManager
*arg1
= (wxMimeTypesManager
*) 0 ;
17969 PyObject
*swig_obj
[1] ;
17971 if (!args
) SWIG_fail
;
17972 swig_obj
[0] = args
;
17973 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMimeTypesManager
, SWIG_POINTER_DISOWN
| 0 );
17974 if (!SWIG_IsOK(res1
)) {
17975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_MimeTypesManager" "', expected argument " "1"" of type '" "wxMimeTypesManager *""'");
17977 arg1
= reinterpret_cast< wxMimeTypesManager
* >(argp1
);
17979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17982 wxPyEndAllowThreads(__tstate
);
17983 if (PyErr_Occurred()) SWIG_fail
;
17985 resultobj
= SWIG_Py_Void();
17992 SWIGINTERN PyObject
*MimeTypesManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17994 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17995 SWIG_TypeNewClientData(SWIGTYPE_p_wxMimeTypesManager
, SWIG_NewClientData(obj
));
17996 return SWIG_Py_Void();
17999 SWIGINTERN PyObject
*MimeTypesManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18000 return SWIG_Python_InitShadowInstance(args
);
18003 SWIGINTERN
int ART_TOOLBAR_set(PyObject
*) {
18004 SWIG_Error(SWIG_AttributeError
,"Variable ART_TOOLBAR is read-only.");
18009 SWIGINTERN PyObject
*ART_TOOLBAR_get(void) {
18010 PyObject
*pyobj
= 0;
18014 pyobj
= PyUnicode_FromWideChar((&wxPyART_TOOLBAR
)->c_str(), (&wxPyART_TOOLBAR
)->Len());
18016 pyobj
= PyString_FromStringAndSize((&wxPyART_TOOLBAR
)->c_str(), (&wxPyART_TOOLBAR
)->Len());
18023 SWIGINTERN
int ART_MENU_set(PyObject
*) {
18024 SWIG_Error(SWIG_AttributeError
,"Variable ART_MENU is read-only.");
18029 SWIGINTERN PyObject
*ART_MENU_get(void) {
18030 PyObject
*pyobj
= 0;
18034 pyobj
= PyUnicode_FromWideChar((&wxPyART_MENU
)->c_str(), (&wxPyART_MENU
)->Len());
18036 pyobj
= PyString_FromStringAndSize((&wxPyART_MENU
)->c_str(), (&wxPyART_MENU
)->Len());
18043 SWIGINTERN
int ART_FRAME_ICON_set(PyObject
*) {
18044 SWIG_Error(SWIG_AttributeError
,"Variable ART_FRAME_ICON is read-only.");
18049 SWIGINTERN PyObject
*ART_FRAME_ICON_get(void) {
18050 PyObject
*pyobj
= 0;
18054 pyobj
= PyUnicode_FromWideChar((&wxPyART_FRAME_ICON
)->c_str(), (&wxPyART_FRAME_ICON
)->Len());
18056 pyobj
= PyString_FromStringAndSize((&wxPyART_FRAME_ICON
)->c_str(), (&wxPyART_FRAME_ICON
)->Len());
18063 SWIGINTERN
int ART_CMN_DIALOG_set(PyObject
*) {
18064 SWIG_Error(SWIG_AttributeError
,"Variable ART_CMN_DIALOG is read-only.");
18069 SWIGINTERN PyObject
*ART_CMN_DIALOG_get(void) {
18070 PyObject
*pyobj
= 0;
18074 pyobj
= PyUnicode_FromWideChar((&wxPyART_CMN_DIALOG
)->c_str(), (&wxPyART_CMN_DIALOG
)->Len());
18076 pyobj
= PyString_FromStringAndSize((&wxPyART_CMN_DIALOG
)->c_str(), (&wxPyART_CMN_DIALOG
)->Len());
18083 SWIGINTERN
int ART_HELP_BROWSER_set(PyObject
*) {
18084 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_BROWSER is read-only.");
18089 SWIGINTERN PyObject
*ART_HELP_BROWSER_get(void) {
18090 PyObject
*pyobj
= 0;
18094 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_BROWSER
)->c_str(), (&wxPyART_HELP_BROWSER
)->Len());
18096 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_BROWSER
)->c_str(), (&wxPyART_HELP_BROWSER
)->Len());
18103 SWIGINTERN
int ART_MESSAGE_BOX_set(PyObject
*) {
18104 SWIG_Error(SWIG_AttributeError
,"Variable ART_MESSAGE_BOX is read-only.");
18109 SWIGINTERN PyObject
*ART_MESSAGE_BOX_get(void) {
18110 PyObject
*pyobj
= 0;
18114 pyobj
= PyUnicode_FromWideChar((&wxPyART_MESSAGE_BOX
)->c_str(), (&wxPyART_MESSAGE_BOX
)->Len());
18116 pyobj
= PyString_FromStringAndSize((&wxPyART_MESSAGE_BOX
)->c_str(), (&wxPyART_MESSAGE_BOX
)->Len());
18123 SWIGINTERN
int ART_BUTTON_set(PyObject
*) {
18124 SWIG_Error(SWIG_AttributeError
,"Variable ART_BUTTON is read-only.");
18129 SWIGINTERN PyObject
*ART_BUTTON_get(void) {
18130 PyObject
*pyobj
= 0;
18134 pyobj
= PyUnicode_FromWideChar((&wxPyART_BUTTON
)->c_str(), (&wxPyART_BUTTON
)->Len());
18136 pyobj
= PyString_FromStringAndSize((&wxPyART_BUTTON
)->c_str(), (&wxPyART_BUTTON
)->Len());
18143 SWIGINTERN
int ART_OTHER_set(PyObject
*) {
18144 SWIG_Error(SWIG_AttributeError
,"Variable ART_OTHER is read-only.");
18149 SWIGINTERN PyObject
*ART_OTHER_get(void) {
18150 PyObject
*pyobj
= 0;
18154 pyobj
= PyUnicode_FromWideChar((&wxPyART_OTHER
)->c_str(), (&wxPyART_OTHER
)->Len());
18156 pyobj
= PyString_FromStringAndSize((&wxPyART_OTHER
)->c_str(), (&wxPyART_OTHER
)->Len());
18163 SWIGINTERN
int ART_ADD_BOOKMARK_set(PyObject
*) {
18164 SWIG_Error(SWIG_AttributeError
,"Variable ART_ADD_BOOKMARK is read-only.");
18169 SWIGINTERN PyObject
*ART_ADD_BOOKMARK_get(void) {
18170 PyObject
*pyobj
= 0;
18174 pyobj
= PyUnicode_FromWideChar((&wxPyART_ADD_BOOKMARK
)->c_str(), (&wxPyART_ADD_BOOKMARK
)->Len());
18176 pyobj
= PyString_FromStringAndSize((&wxPyART_ADD_BOOKMARK
)->c_str(), (&wxPyART_ADD_BOOKMARK
)->Len());
18183 SWIGINTERN
int ART_DEL_BOOKMARK_set(PyObject
*) {
18184 SWIG_Error(SWIG_AttributeError
,"Variable ART_DEL_BOOKMARK is read-only.");
18189 SWIGINTERN PyObject
*ART_DEL_BOOKMARK_get(void) {
18190 PyObject
*pyobj
= 0;
18194 pyobj
= PyUnicode_FromWideChar((&wxPyART_DEL_BOOKMARK
)->c_str(), (&wxPyART_DEL_BOOKMARK
)->Len());
18196 pyobj
= PyString_FromStringAndSize((&wxPyART_DEL_BOOKMARK
)->c_str(), (&wxPyART_DEL_BOOKMARK
)->Len());
18203 SWIGINTERN
int ART_HELP_SIDE_PANEL_set(PyObject
*) {
18204 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_SIDE_PANEL is read-only.");
18209 SWIGINTERN PyObject
*ART_HELP_SIDE_PANEL_get(void) {
18210 PyObject
*pyobj
= 0;
18214 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_SIDE_PANEL
)->c_str(), (&wxPyART_HELP_SIDE_PANEL
)->Len());
18216 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_SIDE_PANEL
)->c_str(), (&wxPyART_HELP_SIDE_PANEL
)->Len());
18223 SWIGINTERN
int ART_HELP_SETTINGS_set(PyObject
*) {
18224 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_SETTINGS is read-only.");
18229 SWIGINTERN PyObject
*ART_HELP_SETTINGS_get(void) {
18230 PyObject
*pyobj
= 0;
18234 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_SETTINGS
)->c_str(), (&wxPyART_HELP_SETTINGS
)->Len());
18236 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_SETTINGS
)->c_str(), (&wxPyART_HELP_SETTINGS
)->Len());
18243 SWIGINTERN
int ART_HELP_BOOK_set(PyObject
*) {
18244 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_BOOK is read-only.");
18249 SWIGINTERN PyObject
*ART_HELP_BOOK_get(void) {
18250 PyObject
*pyobj
= 0;
18254 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_BOOK
)->c_str(), (&wxPyART_HELP_BOOK
)->Len());
18256 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_BOOK
)->c_str(), (&wxPyART_HELP_BOOK
)->Len());
18263 SWIGINTERN
int ART_HELP_FOLDER_set(PyObject
*) {
18264 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_FOLDER is read-only.");
18269 SWIGINTERN PyObject
*ART_HELP_FOLDER_get(void) {
18270 PyObject
*pyobj
= 0;
18274 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_FOLDER
)->c_str(), (&wxPyART_HELP_FOLDER
)->Len());
18276 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_FOLDER
)->c_str(), (&wxPyART_HELP_FOLDER
)->Len());
18283 SWIGINTERN
int ART_HELP_PAGE_set(PyObject
*) {
18284 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP_PAGE is read-only.");
18289 SWIGINTERN PyObject
*ART_HELP_PAGE_get(void) {
18290 PyObject
*pyobj
= 0;
18294 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP_PAGE
)->c_str(), (&wxPyART_HELP_PAGE
)->Len());
18296 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP_PAGE
)->c_str(), (&wxPyART_HELP_PAGE
)->Len());
18303 SWIGINTERN
int ART_GO_BACK_set(PyObject
*) {
18304 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_BACK is read-only.");
18309 SWIGINTERN PyObject
*ART_GO_BACK_get(void) {
18310 PyObject
*pyobj
= 0;
18314 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_BACK
)->c_str(), (&wxPyART_GO_BACK
)->Len());
18316 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_BACK
)->c_str(), (&wxPyART_GO_BACK
)->Len());
18323 SWIGINTERN
int ART_GO_FORWARD_set(PyObject
*) {
18324 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_FORWARD is read-only.");
18329 SWIGINTERN PyObject
*ART_GO_FORWARD_get(void) {
18330 PyObject
*pyobj
= 0;
18334 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_FORWARD
)->c_str(), (&wxPyART_GO_FORWARD
)->Len());
18336 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_FORWARD
)->c_str(), (&wxPyART_GO_FORWARD
)->Len());
18343 SWIGINTERN
int ART_GO_UP_set(PyObject
*) {
18344 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_UP is read-only.");
18349 SWIGINTERN PyObject
*ART_GO_UP_get(void) {
18350 PyObject
*pyobj
= 0;
18354 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_UP
)->c_str(), (&wxPyART_GO_UP
)->Len());
18356 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_UP
)->c_str(), (&wxPyART_GO_UP
)->Len());
18363 SWIGINTERN
int ART_GO_DOWN_set(PyObject
*) {
18364 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_DOWN is read-only.");
18369 SWIGINTERN PyObject
*ART_GO_DOWN_get(void) {
18370 PyObject
*pyobj
= 0;
18374 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_DOWN
)->c_str(), (&wxPyART_GO_DOWN
)->Len());
18376 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_DOWN
)->c_str(), (&wxPyART_GO_DOWN
)->Len());
18383 SWIGINTERN
int ART_GO_TO_PARENT_set(PyObject
*) {
18384 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_TO_PARENT is read-only.");
18389 SWIGINTERN PyObject
*ART_GO_TO_PARENT_get(void) {
18390 PyObject
*pyobj
= 0;
18394 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_TO_PARENT
)->c_str(), (&wxPyART_GO_TO_PARENT
)->Len());
18396 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_TO_PARENT
)->c_str(), (&wxPyART_GO_TO_PARENT
)->Len());
18403 SWIGINTERN
int ART_GO_HOME_set(PyObject
*) {
18404 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_HOME is read-only.");
18409 SWIGINTERN PyObject
*ART_GO_HOME_get(void) {
18410 PyObject
*pyobj
= 0;
18414 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_HOME
)->c_str(), (&wxPyART_GO_HOME
)->Len());
18416 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_HOME
)->c_str(), (&wxPyART_GO_HOME
)->Len());
18423 SWIGINTERN
int ART_FILE_OPEN_set(PyObject
*) {
18424 SWIG_Error(SWIG_AttributeError
,"Variable ART_FILE_OPEN is read-only.");
18429 SWIGINTERN PyObject
*ART_FILE_OPEN_get(void) {
18430 PyObject
*pyobj
= 0;
18434 pyobj
= PyUnicode_FromWideChar((&wxPyART_FILE_OPEN
)->c_str(), (&wxPyART_FILE_OPEN
)->Len());
18436 pyobj
= PyString_FromStringAndSize((&wxPyART_FILE_OPEN
)->c_str(), (&wxPyART_FILE_OPEN
)->Len());
18443 SWIGINTERN
int ART_FILE_SAVE_set(PyObject
*) {
18444 SWIG_Error(SWIG_AttributeError
,"Variable ART_FILE_SAVE is read-only.");
18449 SWIGINTERN PyObject
*ART_FILE_SAVE_get(void) {
18450 PyObject
*pyobj
= 0;
18454 pyobj
= PyUnicode_FromWideChar((&wxPyART_FILE_SAVE
)->c_str(), (&wxPyART_FILE_SAVE
)->Len());
18456 pyobj
= PyString_FromStringAndSize((&wxPyART_FILE_SAVE
)->c_str(), (&wxPyART_FILE_SAVE
)->Len());
18463 SWIGINTERN
int ART_FILE_SAVE_AS_set(PyObject
*) {
18464 SWIG_Error(SWIG_AttributeError
,"Variable ART_FILE_SAVE_AS is read-only.");
18469 SWIGINTERN PyObject
*ART_FILE_SAVE_AS_get(void) {
18470 PyObject
*pyobj
= 0;
18474 pyobj
= PyUnicode_FromWideChar((&wxPyART_FILE_SAVE_AS
)->c_str(), (&wxPyART_FILE_SAVE_AS
)->Len());
18476 pyobj
= PyString_FromStringAndSize((&wxPyART_FILE_SAVE_AS
)->c_str(), (&wxPyART_FILE_SAVE_AS
)->Len());
18483 SWIGINTERN
int ART_PRINT_set(PyObject
*) {
18484 SWIG_Error(SWIG_AttributeError
,"Variable ART_PRINT is read-only.");
18489 SWIGINTERN PyObject
*ART_PRINT_get(void) {
18490 PyObject
*pyobj
= 0;
18494 pyobj
= PyUnicode_FromWideChar((&wxPyART_PRINT
)->c_str(), (&wxPyART_PRINT
)->Len());
18496 pyobj
= PyString_FromStringAndSize((&wxPyART_PRINT
)->c_str(), (&wxPyART_PRINT
)->Len());
18503 SWIGINTERN
int ART_HELP_set(PyObject
*) {
18504 SWIG_Error(SWIG_AttributeError
,"Variable ART_HELP is read-only.");
18509 SWIGINTERN PyObject
*ART_HELP_get(void) {
18510 PyObject
*pyobj
= 0;
18514 pyobj
= PyUnicode_FromWideChar((&wxPyART_HELP
)->c_str(), (&wxPyART_HELP
)->Len());
18516 pyobj
= PyString_FromStringAndSize((&wxPyART_HELP
)->c_str(), (&wxPyART_HELP
)->Len());
18523 SWIGINTERN
int ART_TIP_set(PyObject
*) {
18524 SWIG_Error(SWIG_AttributeError
,"Variable ART_TIP is read-only.");
18529 SWIGINTERN PyObject
*ART_TIP_get(void) {
18530 PyObject
*pyobj
= 0;
18534 pyobj
= PyUnicode_FromWideChar((&wxPyART_TIP
)->c_str(), (&wxPyART_TIP
)->Len());
18536 pyobj
= PyString_FromStringAndSize((&wxPyART_TIP
)->c_str(), (&wxPyART_TIP
)->Len());
18543 SWIGINTERN
int ART_REPORT_VIEW_set(PyObject
*) {
18544 SWIG_Error(SWIG_AttributeError
,"Variable ART_REPORT_VIEW is read-only.");
18549 SWIGINTERN PyObject
*ART_REPORT_VIEW_get(void) {
18550 PyObject
*pyobj
= 0;
18554 pyobj
= PyUnicode_FromWideChar((&wxPyART_REPORT_VIEW
)->c_str(), (&wxPyART_REPORT_VIEW
)->Len());
18556 pyobj
= PyString_FromStringAndSize((&wxPyART_REPORT_VIEW
)->c_str(), (&wxPyART_REPORT_VIEW
)->Len());
18563 SWIGINTERN
int ART_LIST_VIEW_set(PyObject
*) {
18564 SWIG_Error(SWIG_AttributeError
,"Variable ART_LIST_VIEW is read-only.");
18569 SWIGINTERN PyObject
*ART_LIST_VIEW_get(void) {
18570 PyObject
*pyobj
= 0;
18574 pyobj
= PyUnicode_FromWideChar((&wxPyART_LIST_VIEW
)->c_str(), (&wxPyART_LIST_VIEW
)->Len());
18576 pyobj
= PyString_FromStringAndSize((&wxPyART_LIST_VIEW
)->c_str(), (&wxPyART_LIST_VIEW
)->Len());
18583 SWIGINTERN
int ART_NEW_DIR_set(PyObject
*) {
18584 SWIG_Error(SWIG_AttributeError
,"Variable ART_NEW_DIR is read-only.");
18589 SWIGINTERN PyObject
*ART_NEW_DIR_get(void) {
18590 PyObject
*pyobj
= 0;
18594 pyobj
= PyUnicode_FromWideChar((&wxPyART_NEW_DIR
)->c_str(), (&wxPyART_NEW_DIR
)->Len());
18596 pyobj
= PyString_FromStringAndSize((&wxPyART_NEW_DIR
)->c_str(), (&wxPyART_NEW_DIR
)->Len());
18603 SWIGINTERN
int ART_HARDDISK_set(PyObject
*) {
18604 SWIG_Error(SWIG_AttributeError
,"Variable ART_HARDDISK is read-only.");
18609 SWIGINTERN PyObject
*ART_HARDDISK_get(void) {
18610 PyObject
*pyobj
= 0;
18614 pyobj
= PyUnicode_FromWideChar((&wxPyART_HARDDISK
)->c_str(), (&wxPyART_HARDDISK
)->Len());
18616 pyobj
= PyString_FromStringAndSize((&wxPyART_HARDDISK
)->c_str(), (&wxPyART_HARDDISK
)->Len());
18623 SWIGINTERN
int ART_FLOPPY_set(PyObject
*) {
18624 SWIG_Error(SWIG_AttributeError
,"Variable ART_FLOPPY is read-only.");
18629 SWIGINTERN PyObject
*ART_FLOPPY_get(void) {
18630 PyObject
*pyobj
= 0;
18634 pyobj
= PyUnicode_FromWideChar((&wxPyART_FLOPPY
)->c_str(), (&wxPyART_FLOPPY
)->Len());
18636 pyobj
= PyString_FromStringAndSize((&wxPyART_FLOPPY
)->c_str(), (&wxPyART_FLOPPY
)->Len());
18643 SWIGINTERN
int ART_CDROM_set(PyObject
*) {
18644 SWIG_Error(SWIG_AttributeError
,"Variable ART_CDROM is read-only.");
18649 SWIGINTERN PyObject
*ART_CDROM_get(void) {
18650 PyObject
*pyobj
= 0;
18654 pyobj
= PyUnicode_FromWideChar((&wxPyART_CDROM
)->c_str(), (&wxPyART_CDROM
)->Len());
18656 pyobj
= PyString_FromStringAndSize((&wxPyART_CDROM
)->c_str(), (&wxPyART_CDROM
)->Len());
18663 SWIGINTERN
int ART_REMOVABLE_set(PyObject
*) {
18664 SWIG_Error(SWIG_AttributeError
,"Variable ART_REMOVABLE is read-only.");
18669 SWIGINTERN PyObject
*ART_REMOVABLE_get(void) {
18670 PyObject
*pyobj
= 0;
18674 pyobj
= PyUnicode_FromWideChar((&wxPyART_REMOVABLE
)->c_str(), (&wxPyART_REMOVABLE
)->Len());
18676 pyobj
= PyString_FromStringAndSize((&wxPyART_REMOVABLE
)->c_str(), (&wxPyART_REMOVABLE
)->Len());
18683 SWIGINTERN
int ART_FOLDER_set(PyObject
*) {
18684 SWIG_Error(SWIG_AttributeError
,"Variable ART_FOLDER is read-only.");
18689 SWIGINTERN PyObject
*ART_FOLDER_get(void) {
18690 PyObject
*pyobj
= 0;
18694 pyobj
= PyUnicode_FromWideChar((&wxPyART_FOLDER
)->c_str(), (&wxPyART_FOLDER
)->Len());
18696 pyobj
= PyString_FromStringAndSize((&wxPyART_FOLDER
)->c_str(), (&wxPyART_FOLDER
)->Len());
18703 SWIGINTERN
int ART_FOLDER_OPEN_set(PyObject
*) {
18704 SWIG_Error(SWIG_AttributeError
,"Variable ART_FOLDER_OPEN is read-only.");
18709 SWIGINTERN PyObject
*ART_FOLDER_OPEN_get(void) {
18710 PyObject
*pyobj
= 0;
18714 pyobj
= PyUnicode_FromWideChar((&wxPyART_FOLDER_OPEN
)->c_str(), (&wxPyART_FOLDER_OPEN
)->Len());
18716 pyobj
= PyString_FromStringAndSize((&wxPyART_FOLDER_OPEN
)->c_str(), (&wxPyART_FOLDER_OPEN
)->Len());
18723 SWIGINTERN
int ART_GO_DIR_UP_set(PyObject
*) {
18724 SWIG_Error(SWIG_AttributeError
,"Variable ART_GO_DIR_UP is read-only.");
18729 SWIGINTERN PyObject
*ART_GO_DIR_UP_get(void) {
18730 PyObject
*pyobj
= 0;
18734 pyobj
= PyUnicode_FromWideChar((&wxPyART_GO_DIR_UP
)->c_str(), (&wxPyART_GO_DIR_UP
)->Len());
18736 pyobj
= PyString_FromStringAndSize((&wxPyART_GO_DIR_UP
)->c_str(), (&wxPyART_GO_DIR_UP
)->Len());
18743 SWIGINTERN
int ART_EXECUTABLE_FILE_set(PyObject
*) {
18744 SWIG_Error(SWIG_AttributeError
,"Variable ART_EXECUTABLE_FILE is read-only.");
18749 SWIGINTERN PyObject
*ART_EXECUTABLE_FILE_get(void) {
18750 PyObject
*pyobj
= 0;
18754 pyobj
= PyUnicode_FromWideChar((&wxPyART_EXECUTABLE_FILE
)->c_str(), (&wxPyART_EXECUTABLE_FILE
)->Len());
18756 pyobj
= PyString_FromStringAndSize((&wxPyART_EXECUTABLE_FILE
)->c_str(), (&wxPyART_EXECUTABLE_FILE
)->Len());
18763 SWIGINTERN
int ART_NORMAL_FILE_set(PyObject
*) {
18764 SWIG_Error(SWIG_AttributeError
,"Variable ART_NORMAL_FILE is read-only.");
18769 SWIGINTERN PyObject
*ART_NORMAL_FILE_get(void) {
18770 PyObject
*pyobj
= 0;
18774 pyobj
= PyUnicode_FromWideChar((&wxPyART_NORMAL_FILE
)->c_str(), (&wxPyART_NORMAL_FILE
)->Len());
18776 pyobj
= PyString_FromStringAndSize((&wxPyART_NORMAL_FILE
)->c_str(), (&wxPyART_NORMAL_FILE
)->Len());
18783 SWIGINTERN
int ART_TICK_MARK_set(PyObject
*) {
18784 SWIG_Error(SWIG_AttributeError
,"Variable ART_TICK_MARK is read-only.");
18789 SWIGINTERN PyObject
*ART_TICK_MARK_get(void) {
18790 PyObject
*pyobj
= 0;
18794 pyobj
= PyUnicode_FromWideChar((&wxPyART_TICK_MARK
)->c_str(), (&wxPyART_TICK_MARK
)->Len());
18796 pyobj
= PyString_FromStringAndSize((&wxPyART_TICK_MARK
)->c_str(), (&wxPyART_TICK_MARK
)->Len());
18803 SWIGINTERN
int ART_CROSS_MARK_set(PyObject
*) {
18804 SWIG_Error(SWIG_AttributeError
,"Variable ART_CROSS_MARK is read-only.");
18809 SWIGINTERN PyObject
*ART_CROSS_MARK_get(void) {
18810 PyObject
*pyobj
= 0;
18814 pyobj
= PyUnicode_FromWideChar((&wxPyART_CROSS_MARK
)->c_str(), (&wxPyART_CROSS_MARK
)->Len());
18816 pyobj
= PyString_FromStringAndSize((&wxPyART_CROSS_MARK
)->c_str(), (&wxPyART_CROSS_MARK
)->Len());
18823 SWIGINTERN
int ART_ERROR_set(PyObject
*) {
18824 SWIG_Error(SWIG_AttributeError
,"Variable ART_ERROR is read-only.");
18829 SWIGINTERN PyObject
*ART_ERROR_get(void) {
18830 PyObject
*pyobj
= 0;
18834 pyobj
= PyUnicode_FromWideChar((&wxPyART_ERROR
)->c_str(), (&wxPyART_ERROR
)->Len());
18836 pyobj
= PyString_FromStringAndSize((&wxPyART_ERROR
)->c_str(), (&wxPyART_ERROR
)->Len());
18843 SWIGINTERN
int ART_QUESTION_set(PyObject
*) {
18844 SWIG_Error(SWIG_AttributeError
,"Variable ART_QUESTION is read-only.");
18849 SWIGINTERN PyObject
*ART_QUESTION_get(void) {
18850 PyObject
*pyobj
= 0;
18854 pyobj
= PyUnicode_FromWideChar((&wxPyART_QUESTION
)->c_str(), (&wxPyART_QUESTION
)->Len());
18856 pyobj
= PyString_FromStringAndSize((&wxPyART_QUESTION
)->c_str(), (&wxPyART_QUESTION
)->Len());
18863 SWIGINTERN
int ART_WARNING_set(PyObject
*) {
18864 SWIG_Error(SWIG_AttributeError
,"Variable ART_WARNING is read-only.");
18869 SWIGINTERN PyObject
*ART_WARNING_get(void) {
18870 PyObject
*pyobj
= 0;
18874 pyobj
= PyUnicode_FromWideChar((&wxPyART_WARNING
)->c_str(), (&wxPyART_WARNING
)->Len());
18876 pyobj
= PyString_FromStringAndSize((&wxPyART_WARNING
)->c_str(), (&wxPyART_WARNING
)->Len());
18883 SWIGINTERN
int ART_INFORMATION_set(PyObject
*) {
18884 SWIG_Error(SWIG_AttributeError
,"Variable ART_INFORMATION is read-only.");
18889 SWIGINTERN PyObject
*ART_INFORMATION_get(void) {
18890 PyObject
*pyobj
= 0;
18894 pyobj
= PyUnicode_FromWideChar((&wxPyART_INFORMATION
)->c_str(), (&wxPyART_INFORMATION
)->Len());
18896 pyobj
= PyString_FromStringAndSize((&wxPyART_INFORMATION
)->c_str(), (&wxPyART_INFORMATION
)->Len());
18903 SWIGINTERN
int ART_MISSING_IMAGE_set(PyObject
*) {
18904 SWIG_Error(SWIG_AttributeError
,"Variable ART_MISSING_IMAGE is read-only.");
18909 SWIGINTERN PyObject
*ART_MISSING_IMAGE_get(void) {
18910 PyObject
*pyobj
= 0;
18914 pyobj
= PyUnicode_FromWideChar((&wxPyART_MISSING_IMAGE
)->c_str(), (&wxPyART_MISSING_IMAGE
)->Len());
18916 pyobj
= PyString_FromStringAndSize((&wxPyART_MISSING_IMAGE
)->c_str(), (&wxPyART_MISSING_IMAGE
)->Len());
18923 SWIGINTERN
int ART_COPY_set(PyObject
*) {
18924 SWIG_Error(SWIG_AttributeError
,"Variable ART_COPY is read-only.");
18929 SWIGINTERN PyObject
*ART_COPY_get(void) {
18930 PyObject
*pyobj
= 0;
18934 pyobj
= PyUnicode_FromWideChar((&wxPyART_COPY
)->c_str(), (&wxPyART_COPY
)->Len());
18936 pyobj
= PyString_FromStringAndSize((&wxPyART_COPY
)->c_str(), (&wxPyART_COPY
)->Len());
18943 SWIGINTERN
int ART_CUT_set(PyObject
*) {
18944 SWIG_Error(SWIG_AttributeError
,"Variable ART_CUT is read-only.");
18949 SWIGINTERN PyObject
*ART_CUT_get(void) {
18950 PyObject
*pyobj
= 0;
18954 pyobj
= PyUnicode_FromWideChar((&wxPyART_CUT
)->c_str(), (&wxPyART_CUT
)->Len());
18956 pyobj
= PyString_FromStringAndSize((&wxPyART_CUT
)->c_str(), (&wxPyART_CUT
)->Len());
18963 SWIGINTERN
int ART_PASTE_set(PyObject
*) {
18964 SWIG_Error(SWIG_AttributeError
,"Variable ART_PASTE is read-only.");
18969 SWIGINTERN PyObject
*ART_PASTE_get(void) {
18970 PyObject
*pyobj
= 0;
18974 pyobj
= PyUnicode_FromWideChar((&wxPyART_PASTE
)->c_str(), (&wxPyART_PASTE
)->Len());
18976 pyobj
= PyString_FromStringAndSize((&wxPyART_PASTE
)->c_str(), (&wxPyART_PASTE
)->Len());
18983 SWIGINTERN
int ART_DELETE_set(PyObject
*) {
18984 SWIG_Error(SWIG_AttributeError
,"Variable ART_DELETE is read-only.");
18989 SWIGINTERN PyObject
*ART_DELETE_get(void) {
18990 PyObject
*pyobj
= 0;
18994 pyobj
= PyUnicode_FromWideChar((&wxPyART_DELETE
)->c_str(), (&wxPyART_DELETE
)->Len());
18996 pyobj
= PyString_FromStringAndSize((&wxPyART_DELETE
)->c_str(), (&wxPyART_DELETE
)->Len());
19003 SWIGINTERN
int ART_NEW_set(PyObject
*) {
19004 SWIG_Error(SWIG_AttributeError
,"Variable ART_NEW is read-only.");
19009 SWIGINTERN PyObject
*ART_NEW_get(void) {
19010 PyObject
*pyobj
= 0;
19014 pyobj
= PyUnicode_FromWideChar((&wxPyART_NEW
)->c_str(), (&wxPyART_NEW
)->Len());
19016 pyobj
= PyString_FromStringAndSize((&wxPyART_NEW
)->c_str(), (&wxPyART_NEW
)->Len());
19023 SWIGINTERN
int ART_UNDO_set(PyObject
*) {
19024 SWIG_Error(SWIG_AttributeError
,"Variable ART_UNDO is read-only.");
19029 SWIGINTERN PyObject
*ART_UNDO_get(void) {
19030 PyObject
*pyobj
= 0;
19034 pyobj
= PyUnicode_FromWideChar((&wxPyART_UNDO
)->c_str(), (&wxPyART_UNDO
)->Len());
19036 pyobj
= PyString_FromStringAndSize((&wxPyART_UNDO
)->c_str(), (&wxPyART_UNDO
)->Len());
19043 SWIGINTERN
int ART_REDO_set(PyObject
*) {
19044 SWIG_Error(SWIG_AttributeError
,"Variable ART_REDO is read-only.");
19049 SWIGINTERN PyObject
*ART_REDO_get(void) {
19050 PyObject
*pyobj
= 0;
19054 pyobj
= PyUnicode_FromWideChar((&wxPyART_REDO
)->c_str(), (&wxPyART_REDO
)->Len());
19056 pyobj
= PyString_FromStringAndSize((&wxPyART_REDO
)->c_str(), (&wxPyART_REDO
)->Len());
19063 SWIGINTERN
int ART_QUIT_set(PyObject
*) {
19064 SWIG_Error(SWIG_AttributeError
,"Variable ART_QUIT is read-only.");
19069 SWIGINTERN PyObject
*ART_QUIT_get(void) {
19070 PyObject
*pyobj
= 0;
19074 pyobj
= PyUnicode_FromWideChar((&wxPyART_QUIT
)->c_str(), (&wxPyART_QUIT
)->Len());
19076 pyobj
= PyString_FromStringAndSize((&wxPyART_QUIT
)->c_str(), (&wxPyART_QUIT
)->Len());
19083 SWIGINTERN
int ART_FIND_set(PyObject
*) {
19084 SWIG_Error(SWIG_AttributeError
,"Variable ART_FIND is read-only.");
19089 SWIGINTERN PyObject
*ART_FIND_get(void) {
19090 PyObject
*pyobj
= 0;
19094 pyobj
= PyUnicode_FromWideChar((&wxPyART_FIND
)->c_str(), (&wxPyART_FIND
)->Len());
19096 pyobj
= PyString_FromStringAndSize((&wxPyART_FIND
)->c_str(), (&wxPyART_FIND
)->Len());
19103 SWIGINTERN
int ART_FIND_AND_REPLACE_set(PyObject
*) {
19104 SWIG_Error(SWIG_AttributeError
,"Variable ART_FIND_AND_REPLACE is read-only.");
19109 SWIGINTERN PyObject
*ART_FIND_AND_REPLACE_get(void) {
19110 PyObject
*pyobj
= 0;
19114 pyobj
= PyUnicode_FromWideChar((&wxPyART_FIND_AND_REPLACE
)->c_str(), (&wxPyART_FIND_AND_REPLACE
)->Len());
19116 pyobj
= PyString_FromStringAndSize((&wxPyART_FIND_AND_REPLACE
)->c_str(), (&wxPyART_FIND_AND_REPLACE
)->Len());
19123 SWIGINTERN PyObject
*_wrap_new_ArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19124 PyObject
*resultobj
= 0;
19125 wxPyArtProvider
*result
= 0 ;
19127 if (!SWIG_Python_UnpackTuple(args
,"new_ArtProvider",0,0,0)) SWIG_fail
;
19129 if (!wxPyCheckForApp()) SWIG_fail
;
19130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19131 result
= (wxPyArtProvider
*)new wxPyArtProvider();
19132 wxPyEndAllowThreads(__tstate
);
19133 if (PyErr_Occurred()) SWIG_fail
;
19135 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyArtProvider
, SWIG_POINTER_NEW
| 0 );
19142 SWIGINTERN PyObject
*_wrap_delete_ArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19143 PyObject
*resultobj
= 0;
19144 wxPyArtProvider
*arg1
= (wxPyArtProvider
*) 0 ;
19147 PyObject
*swig_obj
[1] ;
19149 if (!args
) SWIG_fail
;
19150 swig_obj
[0] = args
;
19151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyArtProvider
, SWIG_POINTER_DISOWN
| 0 );
19152 if (!SWIG_IsOK(res1
)) {
19153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ArtProvider" "', expected argument " "1"" of type '" "wxPyArtProvider *""'");
19155 arg1
= reinterpret_cast< wxPyArtProvider
* >(argp1
);
19157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19160 wxPyEndAllowThreads(__tstate
);
19161 if (PyErr_Occurred()) SWIG_fail
;
19163 resultobj
= SWIG_Py_Void();
19170 SWIGINTERN PyObject
*_wrap_ArtProvider__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19171 PyObject
*resultobj
= 0;
19172 wxPyArtProvider
*arg1
= (wxPyArtProvider
*) 0 ;
19173 PyObject
*arg2
= (PyObject
*) 0 ;
19174 PyObject
*arg3
= (PyObject
*) 0 ;
19177 PyObject
* obj0
= 0 ;
19178 PyObject
* obj1
= 0 ;
19179 PyObject
* obj2
= 0 ;
19180 char * kwnames
[] = {
19181 (char *) "self",(char *) "self",(char *) "_class", NULL
19184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ArtProvider__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19185 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyArtProvider
, 0 | 0 );
19186 if (!SWIG_IsOK(res1
)) {
19187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ArtProvider__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyArtProvider *""'");
19189 arg1
= reinterpret_cast< wxPyArtProvider
* >(argp1
);
19193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19194 (arg1
)->_setCallbackInfo(arg2
,arg3
);
19195 wxPyEndAllowThreads(__tstate
);
19196 if (PyErr_Occurred()) SWIG_fail
;
19198 resultobj
= SWIG_Py_Void();
19205 SWIGINTERN PyObject
*_wrap_ArtProvider_PushProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19206 PyObject
*resultobj
= 0;
19207 wxPyArtProvider
*arg1
= (wxPyArtProvider
*) 0 ;
19209 PyObject
* obj0
= 0 ;
19210 char * kwnames
[] = {
19211 (char *) "provider", NULL
19214 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ArtProvider_PushProvider",kwnames
,&obj0
)) SWIG_fail
;
19215 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyArtProvider
, SWIG_POINTER_DISOWN
| 0 );
19216 if (!SWIG_IsOK(res1
)) {
19217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ArtProvider_PushProvider" "', expected argument " "1"" of type '" "wxPyArtProvider *""'");
19220 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19221 wxPyArtProvider::PushProvider(arg1
);
19222 wxPyEndAllowThreads(__tstate
);
19223 if (PyErr_Occurred()) SWIG_fail
;
19225 resultobj
= SWIG_Py_Void();
19232 SWIGINTERN PyObject
*_wrap_ArtProvider_PopProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19233 PyObject
*resultobj
= 0;
19236 if (!SWIG_Python_UnpackTuple(args
,"ArtProvider_PopProvider",0,0,0)) SWIG_fail
;
19238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19239 result
= (bool)wxPyArtProvider::PopProvider();
19240 wxPyEndAllowThreads(__tstate
);
19241 if (PyErr_Occurred()) SWIG_fail
;
19244 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19252 SWIGINTERN PyObject
*_wrap_ArtProvider_RemoveProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19253 PyObject
*resultobj
= 0;
19254 wxPyArtProvider
*arg1
= (wxPyArtProvider
*) 0 ;
19258 PyObject
* obj0
= 0 ;
19259 char * kwnames
[] = {
19260 (char *) "provider", NULL
19263 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ArtProvider_RemoveProvider",kwnames
,&obj0
)) SWIG_fail
;
19264 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyArtProvider
, 0 | 0 );
19265 if (!SWIG_IsOK(res1
)) {
19266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ArtProvider_RemoveProvider" "', expected argument " "1"" of type '" "wxPyArtProvider *""'");
19268 arg1
= reinterpret_cast< wxPyArtProvider
* >(argp1
);
19270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19271 result
= (bool)wxPyArtProvider::RemoveProvider(arg1
);
19272 wxPyEndAllowThreads(__tstate
);
19273 if (PyErr_Occurred()) SWIG_fail
;
19276 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19284 SWIGINTERN PyObject
*_wrap_ArtProvider_GetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19285 PyObject
*resultobj
= 0;
19286 wxString
*arg1
= 0 ;
19287 wxString
const &arg2_defvalue
= wxPyART_OTHER
;
19288 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
19289 wxSize
const &arg3_defvalue
= wxDefaultSize
;
19290 wxSize
*arg3
= (wxSize
*) &arg3_defvalue
;
19292 bool temp1
= false ;
19293 bool temp2
= false ;
19295 PyObject
* obj0
= 0 ;
19296 PyObject
* obj1
= 0 ;
19297 PyObject
* obj2
= 0 ;
19298 char * kwnames
[] = {
19299 (char *) "id",(char *) "client",(char *) "size", NULL
19302 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:ArtProvider_GetBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19304 arg1
= wxString_in_helper(obj0
);
19305 if (arg1
== NULL
) SWIG_fail
;
19310 arg2
= wxString_in_helper(obj1
);
19311 if (arg2
== NULL
) SWIG_fail
;
19318 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
19322 if (!wxPyCheckForApp()) SWIG_fail
;
19323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19324 result
= wxPyArtProvider::GetBitmap((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxSize
const &)*arg3
);
19325 wxPyEndAllowThreads(__tstate
);
19326 if (PyErr_Occurred()) SWIG_fail
;
19328 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
19351 SWIGINTERN PyObject
*_wrap_ArtProvider_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19352 PyObject
*resultobj
= 0;
19353 wxString
*arg1
= 0 ;
19354 wxString
const &arg2_defvalue
= wxPyART_OTHER
;
19355 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
19356 wxSize
const &arg3_defvalue
= wxDefaultSize
;
19357 wxSize
*arg3
= (wxSize
*) &arg3_defvalue
;
19359 bool temp1
= false ;
19360 bool temp2
= false ;
19362 PyObject
* obj0
= 0 ;
19363 PyObject
* obj1
= 0 ;
19364 PyObject
* obj2
= 0 ;
19365 char * kwnames
[] = {
19366 (char *) "id",(char *) "client",(char *) "size", NULL
19369 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:ArtProvider_GetIcon",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19371 arg1
= wxString_in_helper(obj0
);
19372 if (arg1
== NULL
) SWIG_fail
;
19377 arg2
= wxString_in_helper(obj1
);
19378 if (arg2
== NULL
) SWIG_fail
;
19385 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
19389 if (!wxPyCheckForApp()) SWIG_fail
;
19390 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19391 result
= wxPyArtProvider::GetIcon((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxSize
const &)*arg3
);
19392 wxPyEndAllowThreads(__tstate
);
19393 if (PyErr_Occurred()) SWIG_fail
;
19395 resultobj
= SWIG_NewPointerObj((new wxIcon(static_cast< const wxIcon
& >(result
))), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
19418 SWIGINTERN PyObject
*_wrap_ArtProvider_GetSizeHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19419 PyObject
*resultobj
= 0;
19420 wxString
*arg1
= 0 ;
19421 bool arg2
= (bool) false ;
19423 bool temp1
= false ;
19426 PyObject
* obj0
= 0 ;
19427 PyObject
* obj1
= 0 ;
19428 char * kwnames
[] = {
19429 (char *) "client",(char *) "platform_dependent", NULL
19432 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ArtProvider_GetSizeHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19434 arg1
= wxString_in_helper(obj0
);
19435 if (arg1
== NULL
) SWIG_fail
;
19439 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19440 if (!SWIG_IsOK(ecode2
)) {
19441 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ArtProvider_GetSizeHint" "', expected argument " "2"" of type '" "bool""'");
19443 arg2
= static_cast< bool >(val2
);
19446 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19447 result
= wxPyArtProvider::GetSizeHint((wxString
const &)*arg1
,arg2
);
19448 wxPyEndAllowThreads(__tstate
);
19449 if (PyErr_Occurred()) SWIG_fail
;
19451 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
19466 SWIGINTERN PyObject
*_wrap_ArtProvider_Destroy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19467 PyObject
*resultobj
= 0;
19468 wxPyArtProvider
*arg1
= (wxPyArtProvider
*) 0 ;
19471 PyObject
*swig_obj
[1] ;
19473 if (!args
) SWIG_fail
;
19474 swig_obj
[0] = args
;
19475 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyArtProvider
, 0 | 0 );
19476 if (!SWIG_IsOK(res1
)) {
19477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ArtProvider_Destroy" "', expected argument " "1"" of type '" "wxPyArtProvider *""'");
19479 arg1
= reinterpret_cast< wxPyArtProvider
* >(argp1
);
19481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19482 wxPyArtProvider_Destroy(arg1
);
19483 wxPyEndAllowThreads(__tstate
);
19484 if (PyErr_Occurred()) SWIG_fail
;
19486 resultobj
= SWIG_Py_Void();
19493 SWIGINTERN PyObject
*ArtProvider_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19495 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19496 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyArtProvider
, SWIG_NewClientData(obj
));
19497 return SWIG_Py_Void();
19500 SWIGINTERN PyObject
*ArtProvider_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19501 return SWIG_Python_InitShadowInstance(args
);
19504 SWIGINTERN PyObject
*_wrap_delete_ConfigBase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19505 PyObject
*resultobj
= 0;
19506 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19509 PyObject
*swig_obj
[1] ;
19511 if (!args
) SWIG_fail
;
19512 swig_obj
[0] = args
;
19513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_DISOWN
| 0 );
19514 if (!SWIG_IsOK(res1
)) {
19515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ConfigBase" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19517 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19522 wxPyEndAllowThreads(__tstate
);
19523 if (PyErr_Occurred()) SWIG_fail
;
19525 resultobj
= SWIG_Py_Void();
19532 SWIGINTERN PyObject
*_wrap_ConfigBase_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19533 PyObject
*resultobj
= 0;
19534 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19535 wxConfigBase
*result
= 0 ;
19537 PyObject
* obj0
= 0 ;
19538 char * kwnames
[] = {
19539 (char *) "config", NULL
19542 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ConfigBase_Set",kwnames
,&obj0
)) SWIG_fail
;
19543 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_DISOWN
| 0 );
19544 if (!SWIG_IsOK(res1
)) {
19545 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_Set" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19549 result
= (wxConfigBase
*)wxConfigBase::Set(arg1
);
19550 wxPyEndAllowThreads(__tstate
);
19551 if (PyErr_Occurred()) SWIG_fail
;
19553 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19560 SWIGINTERN PyObject
*_wrap_ConfigBase_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19561 PyObject
*resultobj
= 0;
19562 bool arg1
= (bool) true ;
19563 wxConfigBase
*result
= 0 ;
19566 PyObject
* obj0
= 0 ;
19567 char * kwnames
[] = {
19568 (char *) "createOnDemand", NULL
19571 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ConfigBase_Get",kwnames
,&obj0
)) SWIG_fail
;
19573 ecode1
= SWIG_AsVal_bool(obj0
, &val1
);
19574 if (!SWIG_IsOK(ecode1
)) {
19575 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "ConfigBase_Get" "', expected argument " "1"" of type '" "bool""'");
19577 arg1
= static_cast< bool >(val1
);
19580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19581 result
= (wxConfigBase
*)wxConfigBase::Get(arg1
);
19582 wxPyEndAllowThreads(__tstate
);
19583 if (PyErr_Occurred()) SWIG_fail
;
19585 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19592 SWIGINTERN PyObject
*_wrap_ConfigBase_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19593 PyObject
*resultobj
= 0;
19594 wxConfigBase
*result
= 0 ;
19596 if (!SWIG_Python_UnpackTuple(args
,"ConfigBase_Create",0,0,0)) SWIG_fail
;
19598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19599 result
= (wxConfigBase
*)wxConfigBase::Create();
19600 wxPyEndAllowThreads(__tstate
);
19601 if (PyErr_Occurred()) SWIG_fail
;
19603 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19610 SWIGINTERN PyObject
*_wrap_ConfigBase_DontCreateOnDemand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19611 PyObject
*resultobj
= 0;
19613 if (!SWIG_Python_UnpackTuple(args
,"ConfigBase_DontCreateOnDemand",0,0,0)) SWIG_fail
;
19615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19616 wxConfigBase::DontCreateOnDemand();
19617 wxPyEndAllowThreads(__tstate
);
19618 if (PyErr_Occurred()) SWIG_fail
;
19620 resultobj
= SWIG_Py_Void();
19627 SWIGINTERN PyObject
*_wrap_ConfigBase_SetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19628 PyObject
*resultobj
= 0;
19629 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19630 wxString
*arg2
= 0 ;
19633 bool temp2
= false ;
19634 PyObject
* obj0
= 0 ;
19635 PyObject
* obj1
= 0 ;
19636 char * kwnames
[] = {
19637 (char *) "self",(char *) "path", NULL
19640 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_SetPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19641 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19642 if (!SWIG_IsOK(res1
)) {
19643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetPath" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19645 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19647 arg2
= wxString_in_helper(obj1
);
19648 if (arg2
== NULL
) SWIG_fail
;
19652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19653 (arg1
)->SetPath((wxString
const &)*arg2
);
19654 wxPyEndAllowThreads(__tstate
);
19655 if (PyErr_Occurred()) SWIG_fail
;
19657 resultobj
= SWIG_Py_Void();
19672 SWIGINTERN PyObject
*_wrap_ConfigBase_GetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19673 PyObject
*resultobj
= 0;
19674 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19675 wxString
*result
= 0 ;
19678 PyObject
*swig_obj
[1] ;
19680 if (!args
) SWIG_fail
;
19681 swig_obj
[0] = args
;
19682 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19683 if (!SWIG_IsOK(res1
)) {
19684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetPath" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
19686 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19690 wxString
const &_result_ref
= ((wxConfigBase
const *)arg1
)->GetPath();
19691 result
= (wxString
*) &_result_ref
;
19693 wxPyEndAllowThreads(__tstate
);
19694 if (PyErr_Occurred()) SWIG_fail
;
19698 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19700 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19709 SWIGINTERN PyObject
*_wrap_ConfigBase_GetFirstGroup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19710 PyObject
*resultobj
= 0;
19711 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19712 PyObject
*result
= 0 ;
19715 PyObject
*swig_obj
[1] ;
19717 if (!args
) SWIG_fail
;
19718 swig_obj
[0] = args
;
19719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19720 if (!SWIG_IsOK(res1
)) {
19721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetFirstGroup" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19723 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19726 result
= (PyObject
*)wxConfigBase_GetFirstGroup(arg1
);
19727 wxPyEndAllowThreads(__tstate
);
19728 if (PyErr_Occurred()) SWIG_fail
;
19730 resultobj
= result
;
19737 SWIGINTERN PyObject
*_wrap_ConfigBase_GetNextGroup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19738 PyObject
*resultobj
= 0;
19739 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19741 PyObject
*result
= 0 ;
19746 PyObject
* obj0
= 0 ;
19747 PyObject
* obj1
= 0 ;
19748 char * kwnames
[] = {
19749 (char *) "self",(char *) "index", NULL
19752 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_GetNextGroup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19753 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19754 if (!SWIG_IsOK(res1
)) {
19755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetNextGroup" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19757 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19758 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
19759 if (!SWIG_IsOK(ecode2
)) {
19760 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_GetNextGroup" "', expected argument " "2"" of type '" "long""'");
19762 arg2
= static_cast< long >(val2
);
19764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19765 result
= (PyObject
*)wxConfigBase_GetNextGroup(arg1
,arg2
);
19766 wxPyEndAllowThreads(__tstate
);
19767 if (PyErr_Occurred()) SWIG_fail
;
19769 resultobj
= result
;
19776 SWIGINTERN PyObject
*_wrap_ConfigBase_GetFirstEntry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19777 PyObject
*resultobj
= 0;
19778 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19779 PyObject
*result
= 0 ;
19782 PyObject
*swig_obj
[1] ;
19784 if (!args
) SWIG_fail
;
19785 swig_obj
[0] = args
;
19786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19787 if (!SWIG_IsOK(res1
)) {
19788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetFirstEntry" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19790 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19793 result
= (PyObject
*)wxConfigBase_GetFirstEntry(arg1
);
19794 wxPyEndAllowThreads(__tstate
);
19795 if (PyErr_Occurred()) SWIG_fail
;
19797 resultobj
= result
;
19804 SWIGINTERN PyObject
*_wrap_ConfigBase_GetNextEntry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19805 PyObject
*resultobj
= 0;
19806 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19808 PyObject
*result
= 0 ;
19813 PyObject
* obj0
= 0 ;
19814 PyObject
* obj1
= 0 ;
19815 char * kwnames
[] = {
19816 (char *) "self",(char *) "index", NULL
19819 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_GetNextEntry",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19820 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19821 if (!SWIG_IsOK(res1
)) {
19822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetNextEntry" "', expected argument " "1"" of type '" "wxConfigBase *""'");
19824 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19825 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
19826 if (!SWIG_IsOK(ecode2
)) {
19827 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_GetNextEntry" "', expected argument " "2"" of type '" "long""'");
19829 arg2
= static_cast< long >(val2
);
19831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19832 result
= (PyObject
*)wxConfigBase_GetNextEntry(arg1
,arg2
);
19833 wxPyEndAllowThreads(__tstate
);
19834 if (PyErr_Occurred()) SWIG_fail
;
19836 resultobj
= result
;
19843 SWIGINTERN PyObject
*_wrap_ConfigBase_GetNumberOfEntries(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19844 PyObject
*resultobj
= 0;
19845 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19846 bool arg2
= (bool) false ;
19852 PyObject
* obj0
= 0 ;
19853 PyObject
* obj1
= 0 ;
19854 char * kwnames
[] = {
19855 (char *) "self",(char *) "recursive", NULL
19858 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ConfigBase_GetNumberOfEntries",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19859 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19860 if (!SWIG_IsOK(res1
)) {
19861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetNumberOfEntries" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
19863 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19865 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19866 if (!SWIG_IsOK(ecode2
)) {
19867 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_GetNumberOfEntries" "', expected argument " "2"" of type '" "bool""'");
19869 arg2
= static_cast< bool >(val2
);
19872 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19873 result
= (size_t)((wxConfigBase
const *)arg1
)->GetNumberOfEntries(arg2
);
19874 wxPyEndAllowThreads(__tstate
);
19875 if (PyErr_Occurred()) SWIG_fail
;
19877 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
19884 SWIGINTERN PyObject
*_wrap_ConfigBase_GetNumberOfGroups(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19885 PyObject
*resultobj
= 0;
19886 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19887 bool arg2
= (bool) false ;
19893 PyObject
* obj0
= 0 ;
19894 PyObject
* obj1
= 0 ;
19895 char * kwnames
[] = {
19896 (char *) "self",(char *) "recursive", NULL
19899 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ConfigBase_GetNumberOfGroups",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19900 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19901 if (!SWIG_IsOK(res1
)) {
19902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetNumberOfGroups" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
19904 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19906 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19907 if (!SWIG_IsOK(ecode2
)) {
19908 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_GetNumberOfGroups" "', expected argument " "2"" of type '" "bool""'");
19910 arg2
= static_cast< bool >(val2
);
19913 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19914 result
= (size_t)((wxConfigBase
const *)arg1
)->GetNumberOfGroups(arg2
);
19915 wxPyEndAllowThreads(__tstate
);
19916 if (PyErr_Occurred()) SWIG_fail
;
19918 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
19925 SWIGINTERN PyObject
*_wrap_ConfigBase_HasGroup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19926 PyObject
*resultobj
= 0;
19927 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19928 wxString
*arg2
= 0 ;
19932 bool temp2
= false ;
19933 PyObject
* obj0
= 0 ;
19934 PyObject
* obj1
= 0 ;
19935 char * kwnames
[] = {
19936 (char *) "self",(char *) "name", NULL
19939 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_HasGroup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19940 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19941 if (!SWIG_IsOK(res1
)) {
19942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_HasGroup" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
19944 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19946 arg2
= wxString_in_helper(obj1
);
19947 if (arg2
== NULL
) SWIG_fail
;
19951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19952 result
= (bool)((wxConfigBase
const *)arg1
)->HasGroup((wxString
const &)*arg2
);
19953 wxPyEndAllowThreads(__tstate
);
19954 if (PyErr_Occurred()) SWIG_fail
;
19957 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19973 SWIGINTERN PyObject
*_wrap_ConfigBase_HasEntry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19974 PyObject
*resultobj
= 0;
19975 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
19976 wxString
*arg2
= 0 ;
19980 bool temp2
= false ;
19981 PyObject
* obj0
= 0 ;
19982 PyObject
* obj1
= 0 ;
19983 char * kwnames
[] = {
19984 (char *) "self",(char *) "name", NULL
19987 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_HasEntry",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19988 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
19989 if (!SWIG_IsOK(res1
)) {
19990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_HasEntry" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
19992 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
19994 arg2
= wxString_in_helper(obj1
);
19995 if (arg2
== NULL
) SWIG_fail
;
19999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20000 result
= (bool)((wxConfigBase
const *)arg1
)->HasEntry((wxString
const &)*arg2
);
20001 wxPyEndAllowThreads(__tstate
);
20002 if (PyErr_Occurred()) SWIG_fail
;
20005 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20021 SWIGINTERN PyObject
*_wrap_ConfigBase_Exists(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20022 PyObject
*resultobj
= 0;
20023 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20024 wxString
*arg2
= 0 ;
20028 bool temp2
= false ;
20029 PyObject
* obj0
= 0 ;
20030 PyObject
* obj1
= 0 ;
20031 char * kwnames
[] = {
20032 (char *) "self",(char *) "name", NULL
20035 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_Exists",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20036 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20037 if (!SWIG_IsOK(res1
)) {
20038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_Exists" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
20040 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20042 arg2
= wxString_in_helper(obj1
);
20043 if (arg2
== NULL
) SWIG_fail
;
20047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20048 result
= (bool)((wxConfigBase
const *)arg1
)->Exists((wxString
const &)*arg2
);
20049 wxPyEndAllowThreads(__tstate
);
20050 if (PyErr_Occurred()) SWIG_fail
;
20053 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20069 SWIGINTERN PyObject
*_wrap_ConfigBase_GetEntryType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20070 PyObject
*resultobj
= 0;
20071 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20072 wxString
*arg2
= 0 ;
20073 wxConfigBase::EntryType result
;
20076 bool temp2
= false ;
20077 PyObject
* obj0
= 0 ;
20078 PyObject
* obj1
= 0 ;
20079 char * kwnames
[] = {
20080 (char *) "self",(char *) "name", NULL
20083 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_GetEntryType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20084 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20085 if (!SWIG_IsOK(res1
)) {
20086 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetEntryType" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
20088 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20090 arg2
= wxString_in_helper(obj1
);
20091 if (arg2
== NULL
) SWIG_fail
;
20095 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20096 result
= (wxConfigBase::EntryType
)((wxConfigBase
const *)arg1
)->GetEntryType((wxString
const &)*arg2
);
20097 wxPyEndAllowThreads(__tstate
);
20098 if (PyErr_Occurred()) SWIG_fail
;
20100 resultobj
= SWIG_From_int(static_cast< int >(result
));
20115 SWIGINTERN PyObject
*_wrap_ConfigBase_Read(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20116 PyObject
*resultobj
= 0;
20117 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20118 wxString
*arg2
= 0 ;
20119 wxString
const &arg3_defvalue
= wxPyEmptyString
;
20120 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
20124 bool temp2
= false ;
20125 bool temp3
= false ;
20126 PyObject
* obj0
= 0 ;
20127 PyObject
* obj1
= 0 ;
20128 PyObject
* obj2
= 0 ;
20129 char * kwnames
[] = {
20130 (char *) "self",(char *) "key",(char *) "defaultVal", NULL
20133 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ConfigBase_Read",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20134 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20135 if (!SWIG_IsOK(res1
)) {
20136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_Read" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20138 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20140 arg2
= wxString_in_helper(obj1
);
20141 if (arg2
== NULL
) SWIG_fail
;
20146 arg3
= wxString_in_helper(obj2
);
20147 if (arg3
== NULL
) SWIG_fail
;
20152 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20153 result
= (arg1
)->Read((wxString
const &)*arg2
,(wxString
const &)*arg3
);
20154 wxPyEndAllowThreads(__tstate
);
20155 if (PyErr_Occurred()) SWIG_fail
;
20159 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20161 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20186 SWIGINTERN PyObject
*_wrap_ConfigBase_ReadInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20187 PyObject
*resultobj
= 0;
20188 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20189 wxString
*arg2
= 0 ;
20190 long arg3
= (long) 0 ;
20194 bool temp2
= false ;
20197 PyObject
* obj0
= 0 ;
20198 PyObject
* obj1
= 0 ;
20199 PyObject
* obj2
= 0 ;
20200 char * kwnames
[] = {
20201 (char *) "self",(char *) "key",(char *) "defaultVal", NULL
20204 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ConfigBase_ReadInt",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20205 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20206 if (!SWIG_IsOK(res1
)) {
20207 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_ReadInt" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20209 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20211 arg2
= wxString_in_helper(obj1
);
20212 if (arg2
== NULL
) SWIG_fail
;
20216 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
20217 if (!SWIG_IsOK(ecode3
)) {
20218 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_ReadInt" "', expected argument " "3"" of type '" "long""'");
20220 arg3
= static_cast< long >(val3
);
20223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20224 result
= (long)wxConfigBase_ReadInt(arg1
,(wxString
const &)*arg2
,arg3
);
20225 wxPyEndAllowThreads(__tstate
);
20226 if (PyErr_Occurred()) SWIG_fail
;
20228 resultobj
= SWIG_From_long(static_cast< long >(result
));
20243 SWIGINTERN PyObject
*_wrap_ConfigBase_ReadFloat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20244 PyObject
*resultobj
= 0;
20245 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20246 wxString
*arg2
= 0 ;
20247 double arg3
= (double) 0.0 ;
20251 bool temp2
= false ;
20254 PyObject
* obj0
= 0 ;
20255 PyObject
* obj1
= 0 ;
20256 PyObject
* obj2
= 0 ;
20257 char * kwnames
[] = {
20258 (char *) "self",(char *) "key",(char *) "defaultVal", NULL
20261 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ConfigBase_ReadFloat",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20262 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20263 if (!SWIG_IsOK(res1
)) {
20264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_ReadFloat" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20266 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20268 arg2
= wxString_in_helper(obj1
);
20269 if (arg2
== NULL
) SWIG_fail
;
20273 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
20274 if (!SWIG_IsOK(ecode3
)) {
20275 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_ReadFloat" "', expected argument " "3"" of type '" "double""'");
20277 arg3
= static_cast< double >(val3
);
20280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20281 result
= (double)wxConfigBase_ReadFloat(arg1
,(wxString
const &)*arg2
,arg3
);
20282 wxPyEndAllowThreads(__tstate
);
20283 if (PyErr_Occurred()) SWIG_fail
;
20285 resultobj
= SWIG_From_double(static_cast< double >(result
));
20300 SWIGINTERN PyObject
*_wrap_ConfigBase_ReadBool(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20301 PyObject
*resultobj
= 0;
20302 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20303 wxString
*arg2
= 0 ;
20304 bool arg3
= (bool) false ;
20308 bool temp2
= false ;
20311 PyObject
* obj0
= 0 ;
20312 PyObject
* obj1
= 0 ;
20313 PyObject
* obj2
= 0 ;
20314 char * kwnames
[] = {
20315 (char *) "self",(char *) "key",(char *) "defaultVal", NULL
20318 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ConfigBase_ReadBool",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20319 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20320 if (!SWIG_IsOK(res1
)) {
20321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_ReadBool" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20323 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20325 arg2
= wxString_in_helper(obj1
);
20326 if (arg2
== NULL
) SWIG_fail
;
20330 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
20331 if (!SWIG_IsOK(ecode3
)) {
20332 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_ReadBool" "', expected argument " "3"" of type '" "bool""'");
20334 arg3
= static_cast< bool >(val3
);
20337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20338 result
= (bool)wxConfigBase_ReadBool(arg1
,(wxString
const &)*arg2
,arg3
);
20339 wxPyEndAllowThreads(__tstate
);
20340 if (PyErr_Occurred()) SWIG_fail
;
20343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20359 SWIGINTERN PyObject
*_wrap_ConfigBase_Write(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20360 PyObject
*resultobj
= 0;
20361 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20362 wxString
*arg2
= 0 ;
20363 wxString
*arg3
= 0 ;
20367 bool temp2
= false ;
20368 bool temp3
= false ;
20369 PyObject
* obj0
= 0 ;
20370 PyObject
* obj1
= 0 ;
20371 PyObject
* obj2
= 0 ;
20372 char * kwnames
[] = {
20373 (char *) "self",(char *) "key",(char *) "value", NULL
20376 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_Write",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20377 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20378 if (!SWIG_IsOK(res1
)) {
20379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_Write" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20381 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20383 arg2
= wxString_in_helper(obj1
);
20384 if (arg2
== NULL
) SWIG_fail
;
20388 arg3
= wxString_in_helper(obj2
);
20389 if (arg3
== NULL
) SWIG_fail
;
20393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20394 result
= (bool)(arg1
)->Write((wxString
const &)*arg2
,(wxString
const &)*arg3
);
20395 wxPyEndAllowThreads(__tstate
);
20396 if (PyErr_Occurred()) SWIG_fail
;
20399 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20423 SWIGINTERN PyObject
*_wrap_ConfigBase_WriteInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20424 PyObject
*resultobj
= 0;
20425 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20426 wxString
*arg2
= 0 ;
20431 bool temp2
= false ;
20434 PyObject
* obj0
= 0 ;
20435 PyObject
* obj1
= 0 ;
20436 PyObject
* obj2
= 0 ;
20437 char * kwnames
[] = {
20438 (char *) "self",(char *) "key",(char *) "value", NULL
20441 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_WriteInt",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20442 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20443 if (!SWIG_IsOK(res1
)) {
20444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_WriteInt" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20446 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20448 arg2
= wxString_in_helper(obj1
);
20449 if (arg2
== NULL
) SWIG_fail
;
20452 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
20453 if (!SWIG_IsOK(ecode3
)) {
20454 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_WriteInt" "', expected argument " "3"" of type '" "long""'");
20456 arg3
= static_cast< long >(val3
);
20458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20459 result
= (bool)(arg1
)->Write((wxString
const &)*arg2
,arg3
);
20460 wxPyEndAllowThreads(__tstate
);
20461 if (PyErr_Occurred()) SWIG_fail
;
20464 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20480 SWIGINTERN PyObject
*_wrap_ConfigBase_WriteFloat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20481 PyObject
*resultobj
= 0;
20482 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20483 wxString
*arg2
= 0 ;
20488 bool temp2
= false ;
20491 PyObject
* obj0
= 0 ;
20492 PyObject
* obj1
= 0 ;
20493 PyObject
* obj2
= 0 ;
20494 char * kwnames
[] = {
20495 (char *) "self",(char *) "key",(char *) "value", NULL
20498 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_WriteFloat",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20499 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20500 if (!SWIG_IsOK(res1
)) {
20501 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_WriteFloat" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20503 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20505 arg2
= wxString_in_helper(obj1
);
20506 if (arg2
== NULL
) SWIG_fail
;
20509 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
20510 if (!SWIG_IsOK(ecode3
)) {
20511 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_WriteFloat" "', expected argument " "3"" of type '" "double""'");
20513 arg3
= static_cast< double >(val3
);
20515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20516 result
= (bool)(arg1
)->Write((wxString
const &)*arg2
,arg3
);
20517 wxPyEndAllowThreads(__tstate
);
20518 if (PyErr_Occurred()) SWIG_fail
;
20521 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20537 SWIGINTERN PyObject
*_wrap_ConfigBase_WriteBool(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20538 PyObject
*resultobj
= 0;
20539 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20540 wxString
*arg2
= 0 ;
20545 bool temp2
= false ;
20548 PyObject
* obj0
= 0 ;
20549 PyObject
* obj1
= 0 ;
20550 PyObject
* obj2
= 0 ;
20551 char * kwnames
[] = {
20552 (char *) "self",(char *) "key",(char *) "value", NULL
20555 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_WriteBool",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20556 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20557 if (!SWIG_IsOK(res1
)) {
20558 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_WriteBool" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20560 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20562 arg2
= wxString_in_helper(obj1
);
20563 if (arg2
== NULL
) SWIG_fail
;
20566 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
20567 if (!SWIG_IsOK(ecode3
)) {
20568 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_WriteBool" "', expected argument " "3"" of type '" "bool""'");
20570 arg3
= static_cast< bool >(val3
);
20572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20573 result
= (bool)(arg1
)->Write((wxString
const &)*arg2
,arg3
);
20574 wxPyEndAllowThreads(__tstate
);
20575 if (PyErr_Occurred()) SWIG_fail
;
20578 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20594 SWIGINTERN PyObject
*_wrap_ConfigBase_Flush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20595 PyObject
*resultobj
= 0;
20596 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20597 bool arg2
= (bool) false ;
20603 PyObject
* obj0
= 0 ;
20604 PyObject
* obj1
= 0 ;
20605 char * kwnames
[] = {
20606 (char *) "self",(char *) "currentOnly", NULL
20609 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ConfigBase_Flush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20610 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20611 if (!SWIG_IsOK(res1
)) {
20612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_Flush" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20614 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20616 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20617 if (!SWIG_IsOK(ecode2
)) {
20618 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_Flush" "', expected argument " "2"" of type '" "bool""'");
20620 arg2
= static_cast< bool >(val2
);
20623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20624 result
= (bool)(arg1
)->Flush(arg2
);
20625 wxPyEndAllowThreads(__tstate
);
20626 if (PyErr_Occurred()) SWIG_fail
;
20629 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20637 SWIGINTERN PyObject
*_wrap_ConfigBase_RenameEntry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20638 PyObject
*resultobj
= 0;
20639 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20640 wxString
*arg2
= 0 ;
20641 wxString
*arg3
= 0 ;
20645 bool temp2
= false ;
20646 bool temp3
= false ;
20647 PyObject
* obj0
= 0 ;
20648 PyObject
* obj1
= 0 ;
20649 PyObject
* obj2
= 0 ;
20650 char * kwnames
[] = {
20651 (char *) "self",(char *) "oldName",(char *) "newName", NULL
20654 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_RenameEntry",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20655 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20656 if (!SWIG_IsOK(res1
)) {
20657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_RenameEntry" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20659 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20661 arg2
= wxString_in_helper(obj1
);
20662 if (arg2
== NULL
) SWIG_fail
;
20666 arg3
= wxString_in_helper(obj2
);
20667 if (arg3
== NULL
) SWIG_fail
;
20671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20672 result
= (bool)(arg1
)->RenameEntry((wxString
const &)*arg2
,(wxString
const &)*arg3
);
20673 wxPyEndAllowThreads(__tstate
);
20674 if (PyErr_Occurred()) SWIG_fail
;
20677 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20701 SWIGINTERN PyObject
*_wrap_ConfigBase_RenameGroup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20702 PyObject
*resultobj
= 0;
20703 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20704 wxString
*arg2
= 0 ;
20705 wxString
*arg3
= 0 ;
20709 bool temp2
= false ;
20710 bool temp3
= false ;
20711 PyObject
* obj0
= 0 ;
20712 PyObject
* obj1
= 0 ;
20713 PyObject
* obj2
= 0 ;
20714 char * kwnames
[] = {
20715 (char *) "self",(char *) "oldName",(char *) "newName", NULL
20718 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ConfigBase_RenameGroup",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20719 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20720 if (!SWIG_IsOK(res1
)) {
20721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_RenameGroup" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20723 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20725 arg2
= wxString_in_helper(obj1
);
20726 if (arg2
== NULL
) SWIG_fail
;
20730 arg3
= wxString_in_helper(obj2
);
20731 if (arg3
== NULL
) SWIG_fail
;
20735 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20736 result
= (bool)(arg1
)->RenameGroup((wxString
const &)*arg2
,(wxString
const &)*arg3
);
20737 wxPyEndAllowThreads(__tstate
);
20738 if (PyErr_Occurred()) SWIG_fail
;
20741 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20765 SWIGINTERN PyObject
*_wrap_ConfigBase_DeleteEntry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20766 PyObject
*resultobj
= 0;
20767 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20768 wxString
*arg2
= 0 ;
20769 bool arg3
= (bool) true ;
20773 bool temp2
= false ;
20776 PyObject
* obj0
= 0 ;
20777 PyObject
* obj1
= 0 ;
20778 PyObject
* obj2
= 0 ;
20779 char * kwnames
[] = {
20780 (char *) "self",(char *) "key",(char *) "deleteGroupIfEmpty", NULL
20783 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ConfigBase_DeleteEntry",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20784 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20785 if (!SWIG_IsOK(res1
)) {
20786 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_DeleteEntry" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20788 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20790 arg2
= wxString_in_helper(obj1
);
20791 if (arg2
== NULL
) SWIG_fail
;
20795 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
20796 if (!SWIG_IsOK(ecode3
)) {
20797 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ConfigBase_DeleteEntry" "', expected argument " "3"" of type '" "bool""'");
20799 arg3
= static_cast< bool >(val3
);
20802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20803 result
= (bool)(arg1
)->DeleteEntry((wxString
const &)*arg2
,arg3
);
20804 wxPyEndAllowThreads(__tstate
);
20805 if (PyErr_Occurred()) SWIG_fail
;
20808 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20824 SWIGINTERN PyObject
*_wrap_ConfigBase_DeleteGroup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20825 PyObject
*resultobj
= 0;
20826 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20827 wxString
*arg2
= 0 ;
20831 bool temp2
= false ;
20832 PyObject
* obj0
= 0 ;
20833 PyObject
* obj1
= 0 ;
20834 char * kwnames
[] = {
20835 (char *) "self",(char *) "key", NULL
20838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_DeleteGroup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20840 if (!SWIG_IsOK(res1
)) {
20841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_DeleteGroup" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20843 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20845 arg2
= wxString_in_helper(obj1
);
20846 if (arg2
== NULL
) SWIG_fail
;
20850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20851 result
= (bool)(arg1
)->DeleteGroup((wxString
const &)*arg2
);
20852 wxPyEndAllowThreads(__tstate
);
20853 if (PyErr_Occurred()) SWIG_fail
;
20856 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20872 SWIGINTERN PyObject
*_wrap_ConfigBase_DeleteAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20873 PyObject
*resultobj
= 0;
20874 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20878 PyObject
*swig_obj
[1] ;
20880 if (!args
) SWIG_fail
;
20881 swig_obj
[0] = args
;
20882 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20883 if (!SWIG_IsOK(res1
)) {
20884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_DeleteAll" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20886 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20889 result
= (bool)(arg1
)->DeleteAll();
20890 wxPyEndAllowThreads(__tstate
);
20891 if (PyErr_Occurred()) SWIG_fail
;
20894 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20902 SWIGINTERN PyObject
*_wrap_ConfigBase_SetExpandEnvVars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20903 PyObject
*resultobj
= 0;
20904 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20905 bool arg2
= (bool) true ;
20910 PyObject
* obj0
= 0 ;
20911 PyObject
* obj1
= 0 ;
20912 char * kwnames
[] = {
20913 (char *) "self",(char *) "doIt", NULL
20916 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ConfigBase_SetExpandEnvVars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20917 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20918 if (!SWIG_IsOK(res1
)) {
20919 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetExpandEnvVars" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20921 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20923 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20924 if (!SWIG_IsOK(ecode2
)) {
20925 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_SetExpandEnvVars" "', expected argument " "2"" of type '" "bool""'");
20927 arg2
= static_cast< bool >(val2
);
20930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20931 (arg1
)->SetExpandEnvVars(arg2
);
20932 wxPyEndAllowThreads(__tstate
);
20933 if (PyErr_Occurred()) SWIG_fail
;
20935 resultobj
= SWIG_Py_Void();
20942 SWIGINTERN PyObject
*_wrap_ConfigBase_IsExpandingEnvVars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20943 PyObject
*resultobj
= 0;
20944 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20948 PyObject
*swig_obj
[1] ;
20950 if (!args
) SWIG_fail
;
20951 swig_obj
[0] = args
;
20952 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20953 if (!SWIG_IsOK(res1
)) {
20954 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_IsExpandingEnvVars" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
20956 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20959 result
= (bool)((wxConfigBase
const *)arg1
)->IsExpandingEnvVars();
20960 wxPyEndAllowThreads(__tstate
);
20961 if (PyErr_Occurred()) SWIG_fail
;
20964 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20972 SWIGINTERN PyObject
*_wrap_ConfigBase_SetRecordDefaults(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20973 PyObject
*resultobj
= 0;
20974 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
20975 bool arg2
= (bool) true ;
20980 PyObject
* obj0
= 0 ;
20981 PyObject
* obj1
= 0 ;
20982 char * kwnames
[] = {
20983 (char *) "self",(char *) "doIt", NULL
20986 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ConfigBase_SetRecordDefaults",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20987 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
20988 if (!SWIG_IsOK(res1
)) {
20989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetRecordDefaults" "', expected argument " "1"" of type '" "wxConfigBase *""'");
20991 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
20993 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20994 if (!SWIG_IsOK(ecode2
)) {
20995 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_SetRecordDefaults" "', expected argument " "2"" of type '" "bool""'");
20997 arg2
= static_cast< bool >(val2
);
21000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21001 (arg1
)->SetRecordDefaults(arg2
);
21002 wxPyEndAllowThreads(__tstate
);
21003 if (PyErr_Occurred()) SWIG_fail
;
21005 resultobj
= SWIG_Py_Void();
21012 SWIGINTERN PyObject
*_wrap_ConfigBase_IsRecordingDefaults(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21013 PyObject
*resultobj
= 0;
21014 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21018 PyObject
*swig_obj
[1] ;
21020 if (!args
) SWIG_fail
;
21021 swig_obj
[0] = args
;
21022 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21023 if (!SWIG_IsOK(res1
)) {
21024 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_IsRecordingDefaults" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21026 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21029 result
= (bool)((wxConfigBase
const *)arg1
)->IsRecordingDefaults();
21030 wxPyEndAllowThreads(__tstate
);
21031 if (PyErr_Occurred()) SWIG_fail
;
21034 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21042 SWIGINTERN PyObject
*_wrap_ConfigBase_ExpandEnvVars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21043 PyObject
*resultobj
= 0;
21044 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21045 wxString
*arg2
= 0 ;
21049 bool temp2
= false ;
21050 PyObject
* obj0
= 0 ;
21051 PyObject
* obj1
= 0 ;
21052 char * kwnames
[] = {
21053 (char *) "self",(char *) "str", NULL
21056 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_ExpandEnvVars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21057 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21058 if (!SWIG_IsOK(res1
)) {
21059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_ExpandEnvVars" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21061 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21063 arg2
= wxString_in_helper(obj1
);
21064 if (arg2
== NULL
) SWIG_fail
;
21068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21069 result
= ((wxConfigBase
const *)arg1
)->ExpandEnvVars((wxString
const &)*arg2
);
21070 wxPyEndAllowThreads(__tstate
);
21071 if (PyErr_Occurred()) SWIG_fail
;
21075 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21077 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21094 SWIGINTERN PyObject
*_wrap_ConfigBase_GetAppName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21095 PyObject
*resultobj
= 0;
21096 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21100 PyObject
*swig_obj
[1] ;
21102 if (!args
) SWIG_fail
;
21103 swig_obj
[0] = args
;
21104 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21105 if (!SWIG_IsOK(res1
)) {
21106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetAppName" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21108 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21111 result
= ((wxConfigBase
const *)arg1
)->GetAppName();
21112 wxPyEndAllowThreads(__tstate
);
21113 if (PyErr_Occurred()) SWIG_fail
;
21117 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21119 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21128 SWIGINTERN PyObject
*_wrap_ConfigBase_GetVendorName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21129 PyObject
*resultobj
= 0;
21130 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21134 PyObject
*swig_obj
[1] ;
21136 if (!args
) SWIG_fail
;
21137 swig_obj
[0] = args
;
21138 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21139 if (!SWIG_IsOK(res1
)) {
21140 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetVendorName" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21142 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21145 result
= ((wxConfigBase
const *)arg1
)->GetVendorName();
21146 wxPyEndAllowThreads(__tstate
);
21147 if (PyErr_Occurred()) SWIG_fail
;
21151 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21153 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21162 SWIGINTERN PyObject
*_wrap_ConfigBase_SetAppName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21163 PyObject
*resultobj
= 0;
21164 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21165 wxString
*arg2
= 0 ;
21168 bool temp2
= false ;
21169 PyObject
* obj0
= 0 ;
21170 PyObject
* obj1
= 0 ;
21171 char * kwnames
[] = {
21172 (char *) "self",(char *) "appName", NULL
21175 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_SetAppName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21176 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21177 if (!SWIG_IsOK(res1
)) {
21178 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetAppName" "', expected argument " "1"" of type '" "wxConfigBase *""'");
21180 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21182 arg2
= wxString_in_helper(obj1
);
21183 if (arg2
== NULL
) SWIG_fail
;
21187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21188 (arg1
)->SetAppName((wxString
const &)*arg2
);
21189 wxPyEndAllowThreads(__tstate
);
21190 if (PyErr_Occurred()) SWIG_fail
;
21192 resultobj
= SWIG_Py_Void();
21207 SWIGINTERN PyObject
*_wrap_ConfigBase_SetVendorName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21208 PyObject
*resultobj
= 0;
21209 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21210 wxString
*arg2
= 0 ;
21213 bool temp2
= false ;
21214 PyObject
* obj0
= 0 ;
21215 PyObject
* obj1
= 0 ;
21216 char * kwnames
[] = {
21217 (char *) "self",(char *) "vendorName", NULL
21220 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_SetVendorName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21221 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21222 if (!SWIG_IsOK(res1
)) {
21223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetVendorName" "', expected argument " "1"" of type '" "wxConfigBase *""'");
21225 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21227 arg2
= wxString_in_helper(obj1
);
21228 if (arg2
== NULL
) SWIG_fail
;
21232 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21233 (arg1
)->SetVendorName((wxString
const &)*arg2
);
21234 wxPyEndAllowThreads(__tstate
);
21235 if (PyErr_Occurred()) SWIG_fail
;
21237 resultobj
= SWIG_Py_Void();
21252 SWIGINTERN PyObject
*_wrap_ConfigBase_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21253 PyObject
*resultobj
= 0;
21254 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21260 PyObject
* obj0
= 0 ;
21261 PyObject
* obj1
= 0 ;
21262 char * kwnames
[] = {
21263 (char *) "self",(char *) "style", NULL
21266 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ConfigBase_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21267 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21268 if (!SWIG_IsOK(res1
)) {
21269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_SetStyle" "', expected argument " "1"" of type '" "wxConfigBase *""'");
21271 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21272 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
21273 if (!SWIG_IsOK(ecode2
)) {
21274 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ConfigBase_SetStyle" "', expected argument " "2"" of type '" "long""'");
21276 arg2
= static_cast< long >(val2
);
21278 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21279 (arg1
)->SetStyle(arg2
);
21280 wxPyEndAllowThreads(__tstate
);
21281 if (PyErr_Occurred()) SWIG_fail
;
21283 resultobj
= SWIG_Py_Void();
21290 SWIGINTERN PyObject
*_wrap_ConfigBase_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21291 PyObject
*resultobj
= 0;
21292 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21296 PyObject
*swig_obj
[1] ;
21298 if (!args
) SWIG_fail
;
21299 swig_obj
[0] = args
;
21300 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21301 if (!SWIG_IsOK(res1
)) {
21302 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigBase_GetStyle" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21304 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21307 result
= (long)((wxConfigBase
const *)arg1
)->GetStyle();
21308 wxPyEndAllowThreads(__tstate
);
21309 if (PyErr_Occurred()) SWIG_fail
;
21311 resultobj
= SWIG_From_long(static_cast< long >(result
));
21318 SWIGINTERN PyObject
*ConfigBase_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21320 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21321 SWIG_TypeNewClientData(SWIGTYPE_p_wxConfigBase
, SWIG_NewClientData(obj
));
21322 return SWIG_Py_Void();
21325 SWIGINTERN PyObject
*_wrap_new_Config(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21326 PyObject
*resultobj
= 0;
21327 wxString
const &arg1_defvalue
= wxPyEmptyString
;
21328 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
21329 wxString
const &arg2_defvalue
= wxPyEmptyString
;
21330 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
21331 wxString
const &arg3_defvalue
= wxPyEmptyString
;
21332 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
21333 wxString
const &arg4_defvalue
= wxPyEmptyString
;
21334 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
21335 long arg5
= (long) wxCONFIG_USE_LOCAL_FILE
|wxCONFIG_USE_GLOBAL_FILE
;
21336 wxConfig
*result
= 0 ;
21337 bool temp1
= false ;
21338 bool temp2
= false ;
21339 bool temp3
= false ;
21340 bool temp4
= false ;
21343 PyObject
* obj0
= 0 ;
21344 PyObject
* obj1
= 0 ;
21345 PyObject
* obj2
= 0 ;
21346 PyObject
* obj3
= 0 ;
21347 PyObject
* obj4
= 0 ;
21348 char * kwnames
[] = {
21349 (char *) "appName",(char *) "vendorName",(char *) "localFilename",(char *) "globalFilename",(char *) "style", NULL
21352 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOOO:new_Config",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
21355 arg1
= wxString_in_helper(obj0
);
21356 if (arg1
== NULL
) SWIG_fail
;
21362 arg2
= wxString_in_helper(obj1
);
21363 if (arg2
== NULL
) SWIG_fail
;
21369 arg3
= wxString_in_helper(obj2
);
21370 if (arg3
== NULL
) SWIG_fail
;
21376 arg4
= wxString_in_helper(obj3
);
21377 if (arg4
== NULL
) SWIG_fail
;
21382 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
21383 if (!SWIG_IsOK(ecode5
)) {
21384 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_Config" "', expected argument " "5"" of type '" "long""'");
21386 arg5
= static_cast< long >(val5
);
21389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21390 result
= (wxConfig
*)new wxConfig((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
);
21391 wxPyEndAllowThreads(__tstate
);
21392 if (PyErr_Occurred()) SWIG_fail
;
21394 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxConfig
, SWIG_POINTER_NEW
| 0 );
21433 SWIGINTERN PyObject
*_wrap_delete_Config(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21434 PyObject
*resultobj
= 0;
21435 wxConfig
*arg1
= (wxConfig
*) 0 ;
21438 PyObject
*swig_obj
[1] ;
21440 if (!args
) SWIG_fail
;
21441 swig_obj
[0] = args
;
21442 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfig
, SWIG_POINTER_DISOWN
| 0 );
21443 if (!SWIG_IsOK(res1
)) {
21444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Config" "', expected argument " "1"" of type '" "wxConfig *""'");
21446 arg1
= reinterpret_cast< wxConfig
* >(argp1
);
21448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21451 wxPyEndAllowThreads(__tstate
);
21452 if (PyErr_Occurred()) SWIG_fail
;
21454 resultobj
= SWIG_Py_Void();
21461 SWIGINTERN PyObject
*Config_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21463 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21464 SWIG_TypeNewClientData(SWIGTYPE_p_wxConfig
, SWIG_NewClientData(obj
));
21465 return SWIG_Py_Void();
21468 SWIGINTERN PyObject
*Config_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21469 return SWIG_Python_InitShadowInstance(args
);
21472 SWIGINTERN PyObject
*_wrap_new_FileConfig(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21473 PyObject
*resultobj
= 0;
21474 wxString
const &arg1_defvalue
= wxPyEmptyString
;
21475 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
21476 wxString
const &arg2_defvalue
= wxPyEmptyString
;
21477 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
21478 wxString
const &arg3_defvalue
= wxPyEmptyString
;
21479 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
21480 wxString
const &arg4_defvalue
= wxPyEmptyString
;
21481 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
21482 long arg5
= (long) wxCONFIG_USE_LOCAL_FILE
|wxCONFIG_USE_GLOBAL_FILE
;
21483 wxFileConfig
*result
= 0 ;
21484 bool temp1
= false ;
21485 bool temp2
= false ;
21486 bool temp3
= false ;
21487 bool temp4
= false ;
21490 PyObject
* obj0
= 0 ;
21491 PyObject
* obj1
= 0 ;
21492 PyObject
* obj2
= 0 ;
21493 PyObject
* obj3
= 0 ;
21494 PyObject
* obj4
= 0 ;
21495 char * kwnames
[] = {
21496 (char *) "appName",(char *) "vendorName",(char *) "localFilename",(char *) "globalFilename",(char *) "style", NULL
21499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOOO:new_FileConfig",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
21502 arg1
= wxString_in_helper(obj0
);
21503 if (arg1
== NULL
) SWIG_fail
;
21509 arg2
= wxString_in_helper(obj1
);
21510 if (arg2
== NULL
) SWIG_fail
;
21516 arg3
= wxString_in_helper(obj2
);
21517 if (arg3
== NULL
) SWIG_fail
;
21523 arg4
= wxString_in_helper(obj3
);
21524 if (arg4
== NULL
) SWIG_fail
;
21529 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
21530 if (!SWIG_IsOK(ecode5
)) {
21531 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_FileConfig" "', expected argument " "5"" of type '" "long""'");
21533 arg5
= static_cast< long >(val5
);
21536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21537 result
= (wxFileConfig
*)new wxFileConfig((wxString
const &)*arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
);
21538 wxPyEndAllowThreads(__tstate
);
21539 if (PyErr_Occurred()) SWIG_fail
;
21541 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileConfig
, SWIG_POINTER_NEW
| 0 );
21580 SWIGINTERN PyObject
*_wrap_delete_FileConfig(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21581 PyObject
*resultobj
= 0;
21582 wxFileConfig
*arg1
= (wxFileConfig
*) 0 ;
21585 PyObject
*swig_obj
[1] ;
21587 if (!args
) SWIG_fail
;
21588 swig_obj
[0] = args
;
21589 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileConfig
, SWIG_POINTER_DISOWN
| 0 );
21590 if (!SWIG_IsOK(res1
)) {
21591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FileConfig" "', expected argument " "1"" of type '" "wxFileConfig *""'");
21593 arg1
= reinterpret_cast< wxFileConfig
* >(argp1
);
21595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21598 wxPyEndAllowThreads(__tstate
);
21599 if (PyErr_Occurred()) SWIG_fail
;
21601 resultobj
= SWIG_Py_Void();
21608 SWIGINTERN PyObject
*FileConfig_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21610 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21611 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileConfig
, SWIG_NewClientData(obj
));
21612 return SWIG_Py_Void();
21615 SWIGINTERN PyObject
*FileConfig_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21616 return SWIG_Python_InitShadowInstance(args
);
21619 SWIGINTERN PyObject
*_wrap_new_ConfigPathChanger(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21620 PyObject
*resultobj
= 0;
21621 wxConfigBase
*arg1
= (wxConfigBase
*) 0 ;
21622 wxString
*arg2
= 0 ;
21623 wxConfigPathChanger
*result
= 0 ;
21626 bool temp2
= false ;
21627 PyObject
* obj0
= 0 ;
21628 PyObject
* obj1
= 0 ;
21629 char * kwnames
[] = {
21630 (char *) "config",(char *) "entry", NULL
21633 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_ConfigPathChanger",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21634 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxConfigBase
, 0 | 0 );
21635 if (!SWIG_IsOK(res1
)) {
21636 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ConfigPathChanger" "', expected argument " "1"" of type '" "wxConfigBase const *""'");
21638 arg1
= reinterpret_cast< wxConfigBase
* >(argp1
);
21640 arg2
= wxString_in_helper(obj1
);
21641 if (arg2
== NULL
) SWIG_fail
;
21645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21646 result
= (wxConfigPathChanger
*)new wxConfigPathChanger((wxConfigBase
const *)arg1
,(wxString
const &)*arg2
);
21647 wxPyEndAllowThreads(__tstate
);
21648 if (PyErr_Occurred()) SWIG_fail
;
21650 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxConfigPathChanger
, SWIG_POINTER_NEW
| 0 );
21665 SWIGINTERN PyObject
*_wrap_delete_ConfigPathChanger(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21666 PyObject
*resultobj
= 0;
21667 wxConfigPathChanger
*arg1
= (wxConfigPathChanger
*) 0 ;
21670 PyObject
*swig_obj
[1] ;
21672 if (!args
) SWIG_fail
;
21673 swig_obj
[0] = args
;
21674 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigPathChanger
, SWIG_POINTER_DISOWN
| 0 );
21675 if (!SWIG_IsOK(res1
)) {
21676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ConfigPathChanger" "', expected argument " "1"" of type '" "wxConfigPathChanger *""'");
21678 arg1
= reinterpret_cast< wxConfigPathChanger
* >(argp1
);
21680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21683 wxPyEndAllowThreads(__tstate
);
21684 if (PyErr_Occurred()) SWIG_fail
;
21686 resultobj
= SWIG_Py_Void();
21693 SWIGINTERN PyObject
*_wrap_ConfigPathChanger_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21694 PyObject
*resultobj
= 0;
21695 wxConfigPathChanger
*arg1
= (wxConfigPathChanger
*) 0 ;
21696 wxString
*result
= 0 ;
21699 PyObject
*swig_obj
[1] ;
21701 if (!args
) SWIG_fail
;
21702 swig_obj
[0] = args
;
21703 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxConfigPathChanger
, 0 | 0 );
21704 if (!SWIG_IsOK(res1
)) {
21705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ConfigPathChanger_Name" "', expected argument " "1"" of type '" "wxConfigPathChanger const *""'");
21707 arg1
= reinterpret_cast< wxConfigPathChanger
* >(argp1
);
21709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21711 wxString
const &_result_ref
= ((wxConfigPathChanger
const *)arg1
)->Name();
21712 result
= (wxString
*) &_result_ref
;
21714 wxPyEndAllowThreads(__tstate
);
21715 if (PyErr_Occurred()) SWIG_fail
;
21719 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
21721 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
21730 SWIGINTERN PyObject
*ConfigPathChanger_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21732 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21733 SWIG_TypeNewClientData(SWIGTYPE_p_wxConfigPathChanger
, SWIG_NewClientData(obj
));
21734 return SWIG_Py_Void();
21737 SWIGINTERN PyObject
*ConfigPathChanger_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21738 return SWIG_Python_InitShadowInstance(args
);
21741 SWIGINTERN PyObject
*_wrap_ExpandEnvVars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21742 PyObject
*resultobj
= 0;
21743 wxString
*arg1
= 0 ;
21745 bool temp1
= false ;
21746 PyObject
* obj0
= 0 ;
21747 char * kwnames
[] = {
21748 (char *) "sz", NULL
21751 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ExpandEnvVars",kwnames
,&obj0
)) SWIG_fail
;
21753 arg1
= wxString_in_helper(obj0
);
21754 if (arg1
== NULL
) SWIG_fail
;
21758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21759 result
= wxExpandEnvVars((wxString
const &)*arg1
);
21760 wxPyEndAllowThreads(__tstate
);
21761 if (PyErr_Occurred()) SWIG_fail
;
21765 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21767 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21784 SWIGINTERN
int DefaultDateTimeFormat_set(PyObject
*) {
21785 SWIG_Error(SWIG_AttributeError
,"Variable DefaultDateTimeFormat is read-only.");
21790 SWIGINTERN PyObject
*DefaultDateTimeFormat_get(void) {
21791 PyObject
*pyobj
= 0;
21795 pyobj
= PyUnicode_FromWideChar((&wxPyDefaultDateTimeFormat
)->c_str(), (&wxPyDefaultDateTimeFormat
)->Len());
21797 pyobj
= PyString_FromStringAndSize((&wxPyDefaultDateTimeFormat
)->c_str(), (&wxPyDefaultDateTimeFormat
)->Len());
21804 SWIGINTERN
int DefaultTimeSpanFormat_set(PyObject
*) {
21805 SWIG_Error(SWIG_AttributeError
,"Variable DefaultTimeSpanFormat is read-only.");
21810 SWIGINTERN PyObject
*DefaultTimeSpanFormat_get(void) {
21811 PyObject
*pyobj
= 0;
21815 pyobj
= PyUnicode_FromWideChar((&wxPyDefaultTimeSpanFormat
)->c_str(), (&wxPyDefaultTimeSpanFormat
)->Len());
21817 pyobj
= PyString_FromStringAndSize((&wxPyDefaultTimeSpanFormat
)->c_str(), (&wxPyDefaultTimeSpanFormat
)->Len());
21824 SWIGINTERN PyObject
*_wrap_DateTime_SetCountry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21825 PyObject
*resultobj
= 0;
21826 wxDateTime::Country arg1
;
21829 PyObject
* obj0
= 0 ;
21830 char * kwnames
[] = {
21831 (char *) "country", NULL
21834 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateTime_SetCountry",kwnames
,&obj0
)) SWIG_fail
;
21835 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
21836 if (!SWIG_IsOK(ecode1
)) {
21837 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_SetCountry" "', expected argument " "1"" of type '" "wxDateTime::Country""'");
21839 arg1
= static_cast< wxDateTime::Country
>(val1
);
21841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21842 wxDateTime::SetCountry(arg1
);
21843 wxPyEndAllowThreads(__tstate
);
21844 if (PyErr_Occurred()) SWIG_fail
;
21846 resultobj
= SWIG_Py_Void();
21853 SWIGINTERN PyObject
*_wrap_DateTime_GetCountry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21854 PyObject
*resultobj
= 0;
21855 wxDateTime::Country result
;
21857 if (!SWIG_Python_UnpackTuple(args
,"DateTime_GetCountry",0,0,0)) SWIG_fail
;
21859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21860 result
= (wxDateTime::Country
)wxDateTime::GetCountry();
21861 wxPyEndAllowThreads(__tstate
);
21862 if (PyErr_Occurred()) SWIG_fail
;
21864 resultobj
= SWIG_From_int(static_cast< int >(result
));
21871 SWIGINTERN PyObject
*_wrap_DateTime_IsWestEuropeanCountry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21872 PyObject
*resultobj
= 0;
21873 wxDateTime::Country arg1
= (wxDateTime::Country
) wxDateTime::Country_Default
;
21877 PyObject
* obj0
= 0 ;
21878 char * kwnames
[] = {
21879 (char *) "country", NULL
21882 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:DateTime_IsWestEuropeanCountry",kwnames
,&obj0
)) SWIG_fail
;
21884 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
21885 if (!SWIG_IsOK(ecode1
)) {
21886 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_IsWestEuropeanCountry" "', expected argument " "1"" of type '" "wxDateTime::Country""'");
21888 arg1
= static_cast< wxDateTime::Country
>(val1
);
21891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21892 result
= (bool)wxDateTime::IsWestEuropeanCountry(arg1
);
21893 wxPyEndAllowThreads(__tstate
);
21894 if (PyErr_Occurred()) SWIG_fail
;
21897 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21905 SWIGINTERN PyObject
*_wrap_DateTime_GetCurrentYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21906 PyObject
*resultobj
= 0;
21907 wxDateTime::Calendar arg1
= (wxDateTime::Calendar
) wxDateTime::Gregorian
;
21911 PyObject
* obj0
= 0 ;
21912 char * kwnames
[] = {
21913 (char *) "cal", NULL
21916 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:DateTime_GetCurrentYear",kwnames
,&obj0
)) SWIG_fail
;
21918 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
21919 if (!SWIG_IsOK(ecode1
)) {
21920 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetCurrentYear" "', expected argument " "1"" of type '" "wxDateTime::Calendar""'");
21922 arg1
= static_cast< wxDateTime::Calendar
>(val1
);
21925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21926 result
= (int)wxDateTime::GetCurrentYear(arg1
);
21927 wxPyEndAllowThreads(__tstate
);
21928 if (PyErr_Occurred()) SWIG_fail
;
21930 resultobj
= SWIG_From_int(static_cast< int >(result
));
21937 SWIGINTERN PyObject
*_wrap_DateTime_ConvertYearToBC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21938 PyObject
*resultobj
= 0;
21943 PyObject
* obj0
= 0 ;
21944 char * kwnames
[] = {
21945 (char *) "year", NULL
21948 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateTime_ConvertYearToBC",kwnames
,&obj0
)) SWIG_fail
;
21949 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
21950 if (!SWIG_IsOK(ecode1
)) {
21951 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_ConvertYearToBC" "', expected argument " "1"" of type '" "int""'");
21953 arg1
= static_cast< int >(val1
);
21955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21956 result
= (int)wxDateTime::ConvertYearToBC(arg1
);
21957 wxPyEndAllowThreads(__tstate
);
21958 if (PyErr_Occurred()) SWIG_fail
;
21960 resultobj
= SWIG_From_int(static_cast< int >(result
));
21967 SWIGINTERN PyObject
*_wrap_DateTime_GetCurrentMonth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21968 PyObject
*resultobj
= 0;
21969 wxDateTime::Calendar arg1
= (wxDateTime::Calendar
) wxDateTime::Gregorian
;
21970 wxDateTime::Month result
;
21973 PyObject
* obj0
= 0 ;
21974 char * kwnames
[] = {
21975 (char *) "cal", NULL
21978 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:DateTime_GetCurrentMonth",kwnames
,&obj0
)) SWIG_fail
;
21980 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
21981 if (!SWIG_IsOK(ecode1
)) {
21982 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetCurrentMonth" "', expected argument " "1"" of type '" "wxDateTime::Calendar""'");
21984 arg1
= static_cast< wxDateTime::Calendar
>(val1
);
21987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21988 result
= (wxDateTime::Month
)wxDateTime::GetCurrentMonth(arg1
);
21989 wxPyEndAllowThreads(__tstate
);
21990 if (PyErr_Occurred()) SWIG_fail
;
21992 resultobj
= SWIG_From_int(static_cast< int >(result
));
21999 SWIGINTERN PyObject
*_wrap_DateTime_IsLeapYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22000 PyObject
*resultobj
= 0;
22001 int arg1
= (int) wxDateTime::Inv_Year
;
22002 wxDateTime::Calendar arg2
= (wxDateTime::Calendar
) wxDateTime::Gregorian
;
22008 PyObject
* obj0
= 0 ;
22009 PyObject
* obj1
= 0 ;
22010 char * kwnames
[] = {
22011 (char *) "year",(char *) "cal", NULL
22014 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:DateTime_IsLeapYear",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22016 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22017 if (!SWIG_IsOK(ecode1
)) {
22018 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_IsLeapYear" "', expected argument " "1"" of type '" "int""'");
22020 arg1
= static_cast< int >(val1
);
22023 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22024 if (!SWIG_IsOK(ecode2
)) {
22025 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_IsLeapYear" "', expected argument " "2"" of type '" "wxDateTime::Calendar""'");
22027 arg2
= static_cast< wxDateTime::Calendar
>(val2
);
22030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22031 result
= (bool)wxDateTime::IsLeapYear(arg1
,arg2
);
22032 wxPyEndAllowThreads(__tstate
);
22033 if (PyErr_Occurred()) SWIG_fail
;
22036 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22044 SWIGINTERN PyObject
*_wrap_DateTime_GetCentury(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22045 PyObject
*resultobj
= 0;
22046 int arg1
= (int) wxDateTime::Inv_Year
;
22050 PyObject
* obj0
= 0 ;
22051 char * kwnames
[] = {
22052 (char *) "year", NULL
22055 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:DateTime_GetCentury",kwnames
,&obj0
)) SWIG_fail
;
22057 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22058 if (!SWIG_IsOK(ecode1
)) {
22059 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetCentury" "', expected argument " "1"" of type '" "int""'");
22061 arg1
= static_cast< int >(val1
);
22064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22065 result
= (int)wxDateTime::GetCentury(arg1
);
22066 wxPyEndAllowThreads(__tstate
);
22067 if (PyErr_Occurred()) SWIG_fail
;
22069 resultobj
= SWIG_From_int(static_cast< int >(result
));
22076 SWIGINTERN PyObject
*_wrap_DateTime_GetNumberOfDaysinYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22077 PyObject
*resultobj
= 0;
22079 wxDateTime::Calendar arg2
= (wxDateTime::Calendar
) wxDateTime::Gregorian
;
22085 PyObject
* obj0
= 0 ;
22086 PyObject
* obj1
= 0 ;
22087 char * kwnames
[] = {
22088 (char *) "year",(char *) "cal", NULL
22091 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetNumberOfDaysinYear",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22092 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22093 if (!SWIG_IsOK(ecode1
)) {
22094 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetNumberOfDaysinYear" "', expected argument " "1"" of type '" "int""'");
22096 arg1
= static_cast< int >(val1
);
22098 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22099 if (!SWIG_IsOK(ecode2
)) {
22100 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetNumberOfDaysinYear" "', expected argument " "2"" of type '" "wxDateTime::Calendar""'");
22102 arg2
= static_cast< wxDateTime::Calendar
>(val2
);
22105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22106 result
= (int)wxDateTime::GetNumberOfDays(arg1
,arg2
);
22107 wxPyEndAllowThreads(__tstate
);
22108 if (PyErr_Occurred()) SWIG_fail
;
22110 resultobj
= SWIG_From_int(static_cast< int >(result
));
22117 SWIGINTERN PyObject
*_wrap_DateTime_GetNumberOfDaysInMonth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22118 PyObject
*resultobj
= 0;
22119 wxDateTime::Month arg1
;
22120 int arg2
= (int) wxDateTime::Inv_Year
;
22121 wxDateTime::Calendar arg3
= (wxDateTime::Calendar
) wxDateTime::Gregorian
;
22129 PyObject
* obj0
= 0 ;
22130 PyObject
* obj1
= 0 ;
22131 PyObject
* obj2
= 0 ;
22132 char * kwnames
[] = {
22133 (char *) "month",(char *) "year",(char *) "cal", NULL
22136 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_GetNumberOfDaysInMonth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22137 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22138 if (!SWIG_IsOK(ecode1
)) {
22139 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetNumberOfDaysInMonth" "', expected argument " "1"" of type '" "wxDateTime::Month""'");
22141 arg1
= static_cast< wxDateTime::Month
>(val1
);
22143 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22144 if (!SWIG_IsOK(ecode2
)) {
22145 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetNumberOfDaysInMonth" "', expected argument " "2"" of type '" "int""'");
22147 arg2
= static_cast< int >(val2
);
22150 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22151 if (!SWIG_IsOK(ecode3
)) {
22152 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_GetNumberOfDaysInMonth" "', expected argument " "3"" of type '" "wxDateTime::Calendar""'");
22154 arg3
= static_cast< wxDateTime::Calendar
>(val3
);
22157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22158 result
= (int)wxDateTime::GetNumberOfDays(arg1
,arg2
,arg3
);
22159 wxPyEndAllowThreads(__tstate
);
22160 if (PyErr_Occurred()) SWIG_fail
;
22162 resultobj
= SWIG_From_int(static_cast< int >(result
));
22169 SWIGINTERN PyObject
*_wrap_DateTime_GetMonthName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22170 PyObject
*resultobj
= 0;
22171 wxDateTime::Month arg1
;
22172 wxDateTime::NameFlags arg2
= (wxDateTime::NameFlags
) wxDateTime::Name_Full
;
22178 PyObject
* obj0
= 0 ;
22179 PyObject
* obj1
= 0 ;
22180 char * kwnames
[] = {
22181 (char *) "month",(char *) "flags", NULL
22184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetMonthName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22185 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22186 if (!SWIG_IsOK(ecode1
)) {
22187 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetMonthName" "', expected argument " "1"" of type '" "wxDateTime::Month""'");
22189 arg1
= static_cast< wxDateTime::Month
>(val1
);
22191 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22192 if (!SWIG_IsOK(ecode2
)) {
22193 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetMonthName" "', expected argument " "2"" of type '" "wxDateTime::NameFlags""'");
22195 arg2
= static_cast< wxDateTime::NameFlags
>(val2
);
22198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22199 result
= wxDateTime::GetMonthName(arg1
,arg2
);
22200 wxPyEndAllowThreads(__tstate
);
22201 if (PyErr_Occurred()) SWIG_fail
;
22205 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
22207 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
22216 SWIGINTERN PyObject
*_wrap_DateTime_GetWeekDayName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22217 PyObject
*resultobj
= 0;
22218 wxDateTime::WeekDay arg1
;
22219 wxDateTime::NameFlags arg2
= (wxDateTime::NameFlags
) wxDateTime::Name_Full
;
22225 PyObject
* obj0
= 0 ;
22226 PyObject
* obj1
= 0 ;
22227 char * kwnames
[] = {
22228 (char *) "weekday",(char *) "flags", NULL
22231 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetWeekDayName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22232 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22233 if (!SWIG_IsOK(ecode1
)) {
22234 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetWeekDayName" "', expected argument " "1"" of type '" "wxDateTime::WeekDay""'");
22236 arg1
= static_cast< wxDateTime::WeekDay
>(val1
);
22238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22239 if (!SWIG_IsOK(ecode2
)) {
22240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetWeekDayName" "', expected argument " "2"" of type '" "wxDateTime::NameFlags""'");
22242 arg2
= static_cast< wxDateTime::NameFlags
>(val2
);
22245 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22246 result
= wxDateTime::GetWeekDayName(arg1
,arg2
);
22247 wxPyEndAllowThreads(__tstate
);
22248 if (PyErr_Occurred()) SWIG_fail
;
22252 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
22254 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
22263 SWIGINTERN PyObject
*_wrap_DateTime_GetAmPmStrings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22264 PyObject
*resultobj
= 0;
22265 PyObject
*result
= 0 ;
22267 if (!SWIG_Python_UnpackTuple(args
,"DateTime_GetAmPmStrings",0,0,0)) SWIG_fail
;
22269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22270 result
= (PyObject
*)wxDateTime_GetAmPmStrings();
22271 wxPyEndAllowThreads(__tstate
);
22272 if (PyErr_Occurred()) SWIG_fail
;
22274 resultobj
= result
;
22281 SWIGINTERN PyObject
*_wrap_DateTime_IsDSTApplicable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22282 PyObject
*resultobj
= 0;
22283 int arg1
= (int) wxDateTime::Inv_Year
;
22284 wxDateTime::Country arg2
= (wxDateTime::Country
) wxDateTime::Country_Default
;
22290 PyObject
* obj0
= 0 ;
22291 PyObject
* obj1
= 0 ;
22292 char * kwnames
[] = {
22293 (char *) "year",(char *) "country", NULL
22296 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:DateTime_IsDSTApplicable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22298 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22299 if (!SWIG_IsOK(ecode1
)) {
22300 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_IsDSTApplicable" "', expected argument " "1"" of type '" "int""'");
22302 arg1
= static_cast< int >(val1
);
22305 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22306 if (!SWIG_IsOK(ecode2
)) {
22307 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_IsDSTApplicable" "', expected argument " "2"" of type '" "wxDateTime::Country""'");
22309 arg2
= static_cast< wxDateTime::Country
>(val2
);
22312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22313 result
= (bool)wxDateTime::IsDSTApplicable(arg1
,arg2
);
22314 wxPyEndAllowThreads(__tstate
);
22315 if (PyErr_Occurred()) SWIG_fail
;
22318 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22326 SWIGINTERN PyObject
*_wrap_DateTime_GetBeginDST(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22327 PyObject
*resultobj
= 0;
22328 int arg1
= (int) wxDateTime::Inv_Year
;
22329 wxDateTime::Country arg2
= (wxDateTime::Country
) wxDateTime::Country_Default
;
22335 PyObject
* obj0
= 0 ;
22336 PyObject
* obj1
= 0 ;
22337 char * kwnames
[] = {
22338 (char *) "year",(char *) "country", NULL
22341 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:DateTime_GetBeginDST",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22343 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22344 if (!SWIG_IsOK(ecode1
)) {
22345 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetBeginDST" "', expected argument " "1"" of type '" "int""'");
22347 arg1
= static_cast< int >(val1
);
22350 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22351 if (!SWIG_IsOK(ecode2
)) {
22352 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetBeginDST" "', expected argument " "2"" of type '" "wxDateTime::Country""'");
22354 arg2
= static_cast< wxDateTime::Country
>(val2
);
22357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22358 result
= wxDateTime::GetBeginDST(arg1
,arg2
);
22359 wxPyEndAllowThreads(__tstate
);
22360 if (PyErr_Occurred()) SWIG_fail
;
22362 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22369 SWIGINTERN PyObject
*_wrap_DateTime_GetEndDST(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22370 PyObject
*resultobj
= 0;
22371 int arg1
= (int) wxDateTime::Inv_Year
;
22372 wxDateTime::Country arg2
= (wxDateTime::Country
) wxDateTime::Country_Default
;
22378 PyObject
* obj0
= 0 ;
22379 PyObject
* obj1
= 0 ;
22380 char * kwnames
[] = {
22381 (char *) "year",(char *) "country", NULL
22384 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:DateTime_GetEndDST",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22386 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22387 if (!SWIG_IsOK(ecode1
)) {
22388 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_GetEndDST" "', expected argument " "1"" of type '" "int""'");
22390 arg1
= static_cast< int >(val1
);
22393 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22394 if (!SWIG_IsOK(ecode2
)) {
22395 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetEndDST" "', expected argument " "2"" of type '" "wxDateTime::Country""'");
22397 arg2
= static_cast< wxDateTime::Country
>(val2
);
22400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22401 result
= wxDateTime::GetEndDST(arg1
,arg2
);
22402 wxPyEndAllowThreads(__tstate
);
22403 if (PyErr_Occurred()) SWIG_fail
;
22405 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22412 SWIGINTERN PyObject
*_wrap_DateTime_Now(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22413 PyObject
*resultobj
= 0;
22416 if (!SWIG_Python_UnpackTuple(args
,"DateTime_Now",0,0,0)) SWIG_fail
;
22418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22419 result
= wxDateTime::Now();
22420 wxPyEndAllowThreads(__tstate
);
22421 if (PyErr_Occurred()) SWIG_fail
;
22423 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22430 SWIGINTERN PyObject
*_wrap_DateTime_UNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22431 PyObject
*resultobj
= 0;
22434 if (!SWIG_Python_UnpackTuple(args
,"DateTime_UNow",0,0,0)) SWIG_fail
;
22436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22437 result
= wxDateTime::UNow();
22438 wxPyEndAllowThreads(__tstate
);
22439 if (PyErr_Occurred()) SWIG_fail
;
22441 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22448 SWIGINTERN PyObject
*_wrap_DateTime_Today(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22449 PyObject
*resultobj
= 0;
22452 if (!SWIG_Python_UnpackTuple(args
,"DateTime_Today",0,0,0)) SWIG_fail
;
22454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22455 result
= wxDateTime::Today();
22456 wxPyEndAllowThreads(__tstate
);
22457 if (PyErr_Occurred()) SWIG_fail
;
22459 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22466 SWIGINTERN PyObject
*_wrap_new_DateTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22467 PyObject
*resultobj
= 0;
22468 wxDateTime
*result
= 0 ;
22470 if (!SWIG_Python_UnpackTuple(args
,"new_DateTime",0,0,0)) SWIG_fail
;
22472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22473 result
= (wxDateTime
*)new wxDateTime();
22474 wxPyEndAllowThreads(__tstate
);
22475 if (PyErr_Occurred()) SWIG_fail
;
22477 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_NEW
| 0 );
22484 SWIGINTERN PyObject
*_wrap_new_DateTimeFromTimeT(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22485 PyObject
*resultobj
= 0;
22487 wxDateTime
*result
= 0 ;
22488 unsigned int val1
;
22490 PyObject
* obj0
= 0 ;
22491 char * kwnames
[] = {
22492 (char *) "timet", NULL
22495 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_DateTimeFromTimeT",kwnames
,&obj0
)) SWIG_fail
;
22496 ecode1
= SWIG_AsVal_unsigned_SS_int(obj0
, &val1
);
22497 if (!SWIG_IsOK(ecode1
)) {
22498 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DateTimeFromTimeT" "', expected argument " "1"" of type '" "time_t""'");
22500 arg1
= static_cast< time_t >(val1
);
22502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22503 result
= (wxDateTime
*)new wxDateTime(arg1
);
22504 wxPyEndAllowThreads(__tstate
);
22505 if (PyErr_Occurred()) SWIG_fail
;
22507 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22514 SWIGINTERN PyObject
*_wrap_new_DateTimeFromJDN(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22515 PyObject
*resultobj
= 0;
22517 wxDateTime
*result
= 0 ;
22520 PyObject
* obj0
= 0 ;
22521 char * kwnames
[] = {
22522 (char *) "jdn", NULL
22525 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_DateTimeFromJDN",kwnames
,&obj0
)) SWIG_fail
;
22526 ecode1
= SWIG_AsVal_double(obj0
, &val1
);
22527 if (!SWIG_IsOK(ecode1
)) {
22528 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DateTimeFromJDN" "', expected argument " "1"" of type '" "double""'");
22530 arg1
= static_cast< double >(val1
);
22532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22533 result
= (wxDateTime
*)new wxDateTime(arg1
);
22534 wxPyEndAllowThreads(__tstate
);
22535 if (PyErr_Occurred()) SWIG_fail
;
22537 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22544 SWIGINTERN PyObject
*_wrap_new_DateTimeFromHMS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22545 PyObject
*resultobj
= 0;
22547 int arg2
= (int) 0 ;
22548 int arg3
= (int) 0 ;
22549 int arg4
= (int) 0 ;
22550 wxDateTime
*result
= 0 ;
22559 PyObject
* obj0
= 0 ;
22560 PyObject
* obj1
= 0 ;
22561 PyObject
* obj2
= 0 ;
22562 PyObject
* obj3
= 0 ;
22563 char * kwnames
[] = {
22564 (char *) "hour",(char *) "minute",(char *) "second",(char *) "millisec", NULL
22567 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:new_DateTimeFromHMS",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
22568 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22569 if (!SWIG_IsOK(ecode1
)) {
22570 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DateTimeFromHMS" "', expected argument " "1"" of type '" "int""'");
22572 arg1
= static_cast< int >(val1
);
22574 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22575 if (!SWIG_IsOK(ecode2
)) {
22576 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_DateTimeFromHMS" "', expected argument " "2"" of type '" "int""'");
22578 arg2
= static_cast< int >(val2
);
22581 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22582 if (!SWIG_IsOK(ecode3
)) {
22583 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_DateTimeFromHMS" "', expected argument " "3"" of type '" "int""'");
22585 arg3
= static_cast< int >(val3
);
22588 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22589 if (!SWIG_IsOK(ecode4
)) {
22590 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DateTimeFromHMS" "', expected argument " "4"" of type '" "int""'");
22592 arg4
= static_cast< int >(val4
);
22595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22596 result
= (wxDateTime
*)new wxDateTime(arg1
,arg2
,arg3
,arg4
);
22597 wxPyEndAllowThreads(__tstate
);
22598 if (PyErr_Occurred()) SWIG_fail
;
22600 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22607 SWIGINTERN PyObject
*_wrap_new_DateTimeFromDMY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22608 PyObject
*resultobj
= 0;
22610 wxDateTime::Month arg2
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
22611 int arg3
= (int) wxDateTime::Inv_Year
;
22612 int arg4
= (int) 0 ;
22613 int arg5
= (int) 0 ;
22614 int arg6
= (int) 0 ;
22615 int arg7
= (int) 0 ;
22616 wxDateTime
*result
= 0 ;
22631 PyObject
* obj0
= 0 ;
22632 PyObject
* obj1
= 0 ;
22633 PyObject
* obj2
= 0 ;
22634 PyObject
* obj3
= 0 ;
22635 PyObject
* obj4
= 0 ;
22636 PyObject
* obj5
= 0 ;
22637 PyObject
* obj6
= 0 ;
22638 char * kwnames
[] = {
22639 (char *) "day",(char *) "month",(char *) "year",(char *) "hour",(char *) "minute",(char *) "second",(char *) "millisec", NULL
22642 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_DateTimeFromDMY",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
22643 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
22644 if (!SWIG_IsOK(ecode1
)) {
22645 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DateTimeFromDMY" "', expected argument " "1"" of type '" "int""'");
22647 arg1
= static_cast< int >(val1
);
22649 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22650 if (!SWIG_IsOK(ecode2
)) {
22651 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_DateTimeFromDMY" "', expected argument " "2"" of type '" "wxDateTime::Month""'");
22653 arg2
= static_cast< wxDateTime::Month
>(val2
);
22656 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22657 if (!SWIG_IsOK(ecode3
)) {
22658 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_DateTimeFromDMY" "', expected argument " "3"" of type '" "int""'");
22660 arg3
= static_cast< int >(val3
);
22663 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22664 if (!SWIG_IsOK(ecode4
)) {
22665 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DateTimeFromDMY" "', expected argument " "4"" of type '" "int""'");
22667 arg4
= static_cast< int >(val4
);
22670 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22671 if (!SWIG_IsOK(ecode5
)) {
22672 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_DateTimeFromDMY" "', expected argument " "5"" of type '" "int""'");
22674 arg5
= static_cast< int >(val5
);
22677 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
22678 if (!SWIG_IsOK(ecode6
)) {
22679 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_DateTimeFromDMY" "', expected argument " "6"" of type '" "int""'");
22681 arg6
= static_cast< int >(val6
);
22684 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
22685 if (!SWIG_IsOK(ecode7
)) {
22686 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "new_DateTimeFromDMY" "', expected argument " "7"" of type '" "int""'");
22688 arg7
= static_cast< int >(val7
);
22691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22692 result
= (wxDateTime
*)new wxDateTime(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
22693 wxPyEndAllowThreads(__tstate
);
22694 if (PyErr_Occurred()) SWIG_fail
;
22696 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22703 SWIGINTERN PyObject
*_wrap_new_DateTimeFromDateTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22704 PyObject
*resultobj
= 0;
22705 wxDateTime
*arg1
= 0 ;
22706 wxDateTime
*result
= 0 ;
22709 PyObject
* obj0
= 0 ;
22710 char * kwnames
[] = {
22711 (char *) "date", NULL
22714 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_DateTimeFromDateTime",kwnames
,&obj0
)) SWIG_fail
;
22715 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxDateTime
, 0 | 0);
22716 if (!SWIG_IsOK(res1
)) {
22717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DateTimeFromDateTime" "', expected argument " "1"" of type '" "wxDateTime const &""'");
22720 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DateTimeFromDateTime" "', expected argument " "1"" of type '" "wxDateTime const &""'");
22722 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22725 result
= (wxDateTime
*)new wxDateTime((wxDateTime
const &)*arg1
);
22726 wxPyEndAllowThreads(__tstate
);
22727 if (PyErr_Occurred()) SWIG_fail
;
22729 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
22736 SWIGINTERN PyObject
*_wrap_delete_DateTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22737 PyObject
*resultobj
= 0;
22738 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22741 PyObject
*swig_obj
[1] ;
22743 if (!args
) SWIG_fail
;
22744 swig_obj
[0] = args
;
22745 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, SWIG_POINTER_DISOWN
| 0 );
22746 if (!SWIG_IsOK(res1
)) {
22747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DateTime" "', expected argument " "1"" of type '" "wxDateTime *""'");
22749 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22754 wxPyEndAllowThreads(__tstate
);
22755 if (PyErr_Occurred()) SWIG_fail
;
22757 resultobj
= SWIG_Py_Void();
22764 SWIGINTERN PyObject
*_wrap_DateTime_SetToCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22765 PyObject
*resultobj
= 0;
22766 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22767 wxDateTime
*result
= 0 ;
22770 PyObject
*swig_obj
[1] ;
22772 if (!args
) SWIG_fail
;
22773 swig_obj
[0] = args
;
22774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
22775 if (!SWIG_IsOK(res1
)) {
22776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToCurrent" "', expected argument " "1"" of type '" "wxDateTime *""'");
22778 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22782 wxDateTime
&_result_ref
= (arg1
)->SetToCurrent();
22783 result
= (wxDateTime
*) &_result_ref
;
22785 wxPyEndAllowThreads(__tstate
);
22786 if (PyErr_Occurred()) SWIG_fail
;
22788 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
22795 SWIGINTERN PyObject
*_wrap_DateTime_SetTimeT(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22796 PyObject
*resultobj
= 0;
22797 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22799 wxDateTime
*result
= 0 ;
22802 unsigned int val2
;
22804 PyObject
* obj0
= 0 ;
22805 PyObject
* obj1
= 0 ;
22806 char * kwnames
[] = {
22807 (char *) "self",(char *) "timet", NULL
22810 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetTimeT",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22811 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
22812 if (!SWIG_IsOK(res1
)) {
22813 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetTimeT" "', expected argument " "1"" of type '" "wxDateTime *""'");
22815 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22816 ecode2
= SWIG_AsVal_unsigned_SS_int(obj1
, &val2
);
22817 if (!SWIG_IsOK(ecode2
)) {
22818 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetTimeT" "', expected argument " "2"" of type '" "time_t""'");
22820 arg2
= static_cast< time_t >(val2
);
22822 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22824 wxDateTime
&_result_ref
= (arg1
)->Set(arg2
);
22825 result
= (wxDateTime
*) &_result_ref
;
22827 wxPyEndAllowThreads(__tstate
);
22828 if (PyErr_Occurred()) SWIG_fail
;
22830 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
22837 SWIGINTERN PyObject
*_wrap_DateTime_SetJDN(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22838 PyObject
*resultobj
= 0;
22839 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22841 wxDateTime
*result
= 0 ;
22846 PyObject
* obj0
= 0 ;
22847 PyObject
* obj1
= 0 ;
22848 char * kwnames
[] = {
22849 (char *) "self",(char *) "jdn", NULL
22852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetJDN",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
22854 if (!SWIG_IsOK(res1
)) {
22855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetJDN" "', expected argument " "1"" of type '" "wxDateTime *""'");
22857 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22858 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
22859 if (!SWIG_IsOK(ecode2
)) {
22860 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetJDN" "', expected argument " "2"" of type '" "double""'");
22862 arg2
= static_cast< double >(val2
);
22864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22866 wxDateTime
&_result_ref
= (arg1
)->Set(arg2
);
22867 result
= (wxDateTime
*) &_result_ref
;
22869 wxPyEndAllowThreads(__tstate
);
22870 if (PyErr_Occurred()) SWIG_fail
;
22872 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
22879 SWIGINTERN PyObject
*_wrap_DateTime_SetHMS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22880 PyObject
*resultobj
= 0;
22881 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22883 int arg3
= (int) 0 ;
22884 int arg4
= (int) 0 ;
22885 int arg5
= (int) 0 ;
22886 wxDateTime
*result
= 0 ;
22897 PyObject
* obj0
= 0 ;
22898 PyObject
* obj1
= 0 ;
22899 PyObject
* obj2
= 0 ;
22900 PyObject
* obj3
= 0 ;
22901 PyObject
* obj4
= 0 ;
22902 char * kwnames
[] = {
22903 (char *) "self",(char *) "hour",(char *) "minute",(char *) "second",(char *) "millisec", NULL
22906 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:DateTime_SetHMS",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
22907 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
22908 if (!SWIG_IsOK(res1
)) {
22909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetHMS" "', expected argument " "1"" of type '" "wxDateTime *""'");
22911 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22912 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22913 if (!SWIG_IsOK(ecode2
)) {
22914 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetHMS" "', expected argument " "2"" of type '" "int""'");
22916 arg2
= static_cast< int >(val2
);
22918 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22919 if (!SWIG_IsOK(ecode3
)) {
22920 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetHMS" "', expected argument " "3"" of type '" "int""'");
22922 arg3
= static_cast< int >(val3
);
22925 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22926 if (!SWIG_IsOK(ecode4
)) {
22927 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_SetHMS" "', expected argument " "4"" of type '" "int""'");
22929 arg4
= static_cast< int >(val4
);
22932 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22933 if (!SWIG_IsOK(ecode5
)) {
22934 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DateTime_SetHMS" "', expected argument " "5"" of type '" "int""'");
22936 arg5
= static_cast< int >(val5
);
22939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22941 wxDateTime
&_result_ref
= (arg1
)->Set(arg2
,arg3
,arg4
,arg5
);
22942 result
= (wxDateTime
*) &_result_ref
;
22944 wxPyEndAllowThreads(__tstate
);
22945 if (PyErr_Occurred()) SWIG_fail
;
22947 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
22954 SWIGINTERN PyObject
*_wrap_DateTime_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22955 PyObject
*resultobj
= 0;
22956 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
22958 wxDateTime::Month arg3
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
22959 int arg4
= (int) wxDateTime::Inv_Year
;
22960 int arg5
= (int) 0 ;
22961 int arg6
= (int) 0 ;
22962 int arg7
= (int) 0 ;
22963 int arg8
= (int) 0 ;
22964 wxDateTime
*result
= 0 ;
22981 PyObject
* obj0
= 0 ;
22982 PyObject
* obj1
= 0 ;
22983 PyObject
* obj2
= 0 ;
22984 PyObject
* obj3
= 0 ;
22985 PyObject
* obj4
= 0 ;
22986 PyObject
* obj5
= 0 ;
22987 PyObject
* obj6
= 0 ;
22988 PyObject
* obj7
= 0 ;
22989 char * kwnames
[] = {
22990 (char *) "self",(char *) "day",(char *) "month",(char *) "year",(char *) "hour",(char *) "minute",(char *) "second",(char *) "millisec", NULL
22993 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:DateTime_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
22994 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
22995 if (!SWIG_IsOK(res1
)) {
22996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_Set" "', expected argument " "1"" of type '" "wxDateTime *""'");
22998 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
22999 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23000 if (!SWIG_IsOK(ecode2
)) {
23001 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_Set" "', expected argument " "2"" of type '" "int""'");
23003 arg2
= static_cast< int >(val2
);
23005 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23006 if (!SWIG_IsOK(ecode3
)) {
23007 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_Set" "', expected argument " "3"" of type '" "wxDateTime::Month""'");
23009 arg3
= static_cast< wxDateTime::Month
>(val3
);
23012 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23013 if (!SWIG_IsOK(ecode4
)) {
23014 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_Set" "', expected argument " "4"" of type '" "int""'");
23016 arg4
= static_cast< int >(val4
);
23019 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
23020 if (!SWIG_IsOK(ecode5
)) {
23021 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DateTime_Set" "', expected argument " "5"" of type '" "int""'");
23023 arg5
= static_cast< int >(val5
);
23026 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
23027 if (!SWIG_IsOK(ecode6
)) {
23028 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DateTime_Set" "', expected argument " "6"" of type '" "int""'");
23030 arg6
= static_cast< int >(val6
);
23033 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
23034 if (!SWIG_IsOK(ecode7
)) {
23035 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "DateTime_Set" "', expected argument " "7"" of type '" "int""'");
23037 arg7
= static_cast< int >(val7
);
23040 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
23041 if (!SWIG_IsOK(ecode8
)) {
23042 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "DateTime_Set" "', expected argument " "8"" of type '" "int""'");
23044 arg8
= static_cast< int >(val8
);
23047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23049 wxDateTime
&_result_ref
= (arg1
)->Set(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
23050 result
= (wxDateTime
*) &_result_ref
;
23052 wxPyEndAllowThreads(__tstate
);
23053 if (PyErr_Occurred()) SWIG_fail
;
23055 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23062 SWIGINTERN PyObject
*_wrap_DateTime_ResetTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23063 PyObject
*resultobj
= 0;
23064 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23065 wxDateTime
*result
= 0 ;
23068 PyObject
*swig_obj
[1] ;
23070 if (!args
) SWIG_fail
;
23071 swig_obj
[0] = args
;
23072 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23073 if (!SWIG_IsOK(res1
)) {
23074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ResetTime" "', expected argument " "1"" of type '" "wxDateTime *""'");
23076 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23080 wxDateTime
&_result_ref
= (arg1
)->ResetTime();
23081 result
= (wxDateTime
*) &_result_ref
;
23083 wxPyEndAllowThreads(__tstate
);
23084 if (PyErr_Occurred()) SWIG_fail
;
23086 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23093 SWIGINTERN PyObject
*_wrap_DateTime_SetYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23094 PyObject
*resultobj
= 0;
23095 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23097 wxDateTime
*result
= 0 ;
23102 PyObject
* obj0
= 0 ;
23103 PyObject
* obj1
= 0 ;
23104 char * kwnames
[] = {
23105 (char *) "self",(char *) "year", NULL
23108 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetYear",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23109 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23110 if (!SWIG_IsOK(res1
)) {
23111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetYear" "', expected argument " "1"" of type '" "wxDateTime *""'");
23113 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23114 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23115 if (!SWIG_IsOK(ecode2
)) {
23116 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetYear" "', expected argument " "2"" of type '" "int""'");
23118 arg2
= static_cast< int >(val2
);
23120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23122 wxDateTime
&_result_ref
= (arg1
)->SetYear(arg2
);
23123 result
= (wxDateTime
*) &_result_ref
;
23125 wxPyEndAllowThreads(__tstate
);
23126 if (PyErr_Occurred()) SWIG_fail
;
23128 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23135 SWIGINTERN PyObject
*_wrap_DateTime_SetMonth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23136 PyObject
*resultobj
= 0;
23137 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23138 wxDateTime::Month arg2
;
23139 wxDateTime
*result
= 0 ;
23144 PyObject
* obj0
= 0 ;
23145 PyObject
* obj1
= 0 ;
23146 char * kwnames
[] = {
23147 (char *) "self",(char *) "month", NULL
23150 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetMonth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23151 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23152 if (!SWIG_IsOK(res1
)) {
23153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetMonth" "', expected argument " "1"" of type '" "wxDateTime *""'");
23155 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23156 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23157 if (!SWIG_IsOK(ecode2
)) {
23158 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetMonth" "', expected argument " "2"" of type '" "wxDateTime::Month""'");
23160 arg2
= static_cast< wxDateTime::Month
>(val2
);
23162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23164 wxDateTime
&_result_ref
= (arg1
)->SetMonth(arg2
);
23165 result
= (wxDateTime
*) &_result_ref
;
23167 wxPyEndAllowThreads(__tstate
);
23168 if (PyErr_Occurred()) SWIG_fail
;
23170 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23177 SWIGINTERN PyObject
*_wrap_DateTime_SetDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23178 PyObject
*resultobj
= 0;
23179 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23181 wxDateTime
*result
= 0 ;
23186 PyObject
* obj0
= 0 ;
23187 PyObject
* obj1
= 0 ;
23188 char * kwnames
[] = {
23189 (char *) "self",(char *) "day", NULL
23192 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23193 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23194 if (!SWIG_IsOK(res1
)) {
23195 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23197 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23198 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23199 if (!SWIG_IsOK(ecode2
)) {
23200 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetDay" "', expected argument " "2"" of type '" "int""'");
23202 arg2
= static_cast< int >(val2
);
23204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23206 wxDateTime
&_result_ref
= (arg1
)->SetDay(arg2
);
23207 result
= (wxDateTime
*) &_result_ref
;
23209 wxPyEndAllowThreads(__tstate
);
23210 if (PyErr_Occurred()) SWIG_fail
;
23212 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23219 SWIGINTERN PyObject
*_wrap_DateTime_SetHour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23220 PyObject
*resultobj
= 0;
23221 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23223 wxDateTime
*result
= 0 ;
23228 PyObject
* obj0
= 0 ;
23229 PyObject
* obj1
= 0 ;
23230 char * kwnames
[] = {
23231 (char *) "self",(char *) "hour", NULL
23234 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetHour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23235 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23236 if (!SWIG_IsOK(res1
)) {
23237 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetHour" "', expected argument " "1"" of type '" "wxDateTime *""'");
23239 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23240 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23241 if (!SWIG_IsOK(ecode2
)) {
23242 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetHour" "', expected argument " "2"" of type '" "int""'");
23244 arg2
= static_cast< int >(val2
);
23246 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23248 wxDateTime
&_result_ref
= (arg1
)->SetHour(arg2
);
23249 result
= (wxDateTime
*) &_result_ref
;
23251 wxPyEndAllowThreads(__tstate
);
23252 if (PyErr_Occurred()) SWIG_fail
;
23254 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23261 SWIGINTERN PyObject
*_wrap_DateTime_SetMinute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23262 PyObject
*resultobj
= 0;
23263 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23265 wxDateTime
*result
= 0 ;
23270 PyObject
* obj0
= 0 ;
23271 PyObject
* obj1
= 0 ;
23272 char * kwnames
[] = {
23273 (char *) "self",(char *) "minute", NULL
23276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetMinute",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23278 if (!SWIG_IsOK(res1
)) {
23279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetMinute" "', expected argument " "1"" of type '" "wxDateTime *""'");
23281 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23282 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23283 if (!SWIG_IsOK(ecode2
)) {
23284 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetMinute" "', expected argument " "2"" of type '" "int""'");
23286 arg2
= static_cast< int >(val2
);
23288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23290 wxDateTime
&_result_ref
= (arg1
)->SetMinute(arg2
);
23291 result
= (wxDateTime
*) &_result_ref
;
23293 wxPyEndAllowThreads(__tstate
);
23294 if (PyErr_Occurred()) SWIG_fail
;
23296 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23303 SWIGINTERN PyObject
*_wrap_DateTime_SetSecond(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23304 PyObject
*resultobj
= 0;
23305 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23307 wxDateTime
*result
= 0 ;
23312 PyObject
* obj0
= 0 ;
23313 PyObject
* obj1
= 0 ;
23314 char * kwnames
[] = {
23315 (char *) "self",(char *) "second", NULL
23318 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetSecond",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23319 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23320 if (!SWIG_IsOK(res1
)) {
23321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetSecond" "', expected argument " "1"" of type '" "wxDateTime *""'");
23323 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23324 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23325 if (!SWIG_IsOK(ecode2
)) {
23326 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetSecond" "', expected argument " "2"" of type '" "int""'");
23328 arg2
= static_cast< int >(val2
);
23330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23332 wxDateTime
&_result_ref
= (arg1
)->SetSecond(arg2
);
23333 result
= (wxDateTime
*) &_result_ref
;
23335 wxPyEndAllowThreads(__tstate
);
23336 if (PyErr_Occurred()) SWIG_fail
;
23338 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23345 SWIGINTERN PyObject
*_wrap_DateTime_SetMillisecond(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23346 PyObject
*resultobj
= 0;
23347 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23349 wxDateTime
*result
= 0 ;
23354 PyObject
* obj0
= 0 ;
23355 PyObject
* obj1
= 0 ;
23356 char * kwnames
[] = {
23357 (char *) "self",(char *) "millisecond", NULL
23360 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetMillisecond",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23361 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23362 if (!SWIG_IsOK(res1
)) {
23363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetMillisecond" "', expected argument " "1"" of type '" "wxDateTime *""'");
23365 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23366 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23367 if (!SWIG_IsOK(ecode2
)) {
23368 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetMillisecond" "', expected argument " "2"" of type '" "int""'");
23370 arg2
= static_cast< int >(val2
);
23372 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23374 wxDateTime
&_result_ref
= (arg1
)->SetMillisecond(arg2
);
23375 result
= (wxDateTime
*) &_result_ref
;
23377 wxPyEndAllowThreads(__tstate
);
23378 if (PyErr_Occurred()) SWIG_fail
;
23380 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23387 SWIGINTERN PyObject
*_wrap_DateTime_SetToWeekDayInSameWeek(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23388 PyObject
*resultobj
= 0;
23389 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23390 wxDateTime::WeekDay arg2
;
23391 wxDateTime::WeekFlags arg3
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
23392 wxDateTime
*result
= 0 ;
23399 PyObject
* obj0
= 0 ;
23400 PyObject
* obj1
= 0 ;
23401 PyObject
* obj2
= 0 ;
23402 char * kwnames
[] = {
23403 (char *) "self",(char *) "weekday",(char *) "flags", NULL
23406 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_SetToWeekDayInSameWeek",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23407 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23408 if (!SWIG_IsOK(res1
)) {
23409 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToWeekDayInSameWeek" "', expected argument " "1"" of type '" "wxDateTime *""'");
23411 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23412 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23413 if (!SWIG_IsOK(ecode2
)) {
23414 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToWeekDayInSameWeek" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23416 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23418 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23419 if (!SWIG_IsOK(ecode3
)) {
23420 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToWeekDayInSameWeek" "', expected argument " "3"" of type '" "wxDateTime::WeekFlags""'");
23422 arg3
= static_cast< wxDateTime::WeekFlags
>(val3
);
23425 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23427 wxDateTime
&_result_ref
= (arg1
)->SetToWeekDayInSameWeek(arg2
,arg3
);
23428 result
= (wxDateTime
*) &_result_ref
;
23430 wxPyEndAllowThreads(__tstate
);
23431 if (PyErr_Occurred()) SWIG_fail
;
23433 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23440 SWIGINTERN PyObject
*_wrap_DateTime_GetWeekDayInSameWeek(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23441 PyObject
*resultobj
= 0;
23442 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23443 wxDateTime::WeekDay arg2
;
23444 wxDateTime::WeekFlags arg3
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
23452 PyObject
* obj0
= 0 ;
23453 PyObject
* obj1
= 0 ;
23454 PyObject
* obj2
= 0 ;
23455 char * kwnames
[] = {
23456 (char *) "self",(char *) "weekday",(char *) "flags", NULL
23459 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_GetWeekDayInSameWeek",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23460 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23461 if (!SWIG_IsOK(res1
)) {
23462 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetWeekDayInSameWeek" "', expected argument " "1"" of type '" "wxDateTime *""'");
23464 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23465 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23466 if (!SWIG_IsOK(ecode2
)) {
23467 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetWeekDayInSameWeek" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23469 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23471 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23472 if (!SWIG_IsOK(ecode3
)) {
23473 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_GetWeekDayInSameWeek" "', expected argument " "3"" of type '" "wxDateTime::WeekFlags""'");
23475 arg3
= static_cast< wxDateTime::WeekFlags
>(val3
);
23478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23479 result
= (arg1
)->GetWeekDayInSameWeek(arg2
,arg3
);
23480 wxPyEndAllowThreads(__tstate
);
23481 if (PyErr_Occurred()) SWIG_fail
;
23483 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
23490 SWIGINTERN PyObject
*_wrap_DateTime_SetToNextWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23491 PyObject
*resultobj
= 0;
23492 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23493 wxDateTime::WeekDay arg2
;
23494 wxDateTime
*result
= 0 ;
23499 PyObject
* obj0
= 0 ;
23500 PyObject
* obj1
= 0 ;
23501 char * kwnames
[] = {
23502 (char *) "self",(char *) "weekday", NULL
23505 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetToNextWeekDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23506 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23507 if (!SWIG_IsOK(res1
)) {
23508 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToNextWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23510 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23511 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23512 if (!SWIG_IsOK(ecode2
)) {
23513 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToNextWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23515 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23519 wxDateTime
&_result_ref
= (arg1
)->SetToNextWeekDay(arg2
);
23520 result
= (wxDateTime
*) &_result_ref
;
23522 wxPyEndAllowThreads(__tstate
);
23523 if (PyErr_Occurred()) SWIG_fail
;
23525 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23532 SWIGINTERN PyObject
*_wrap_DateTime_GetNextWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23533 PyObject
*resultobj
= 0;
23534 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23535 wxDateTime::WeekDay arg2
;
23541 PyObject
* obj0
= 0 ;
23542 PyObject
* obj1
= 0 ;
23543 char * kwnames
[] = {
23544 (char *) "self",(char *) "weekday", NULL
23547 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_GetNextWeekDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23548 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23549 if (!SWIG_IsOK(res1
)) {
23550 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetNextWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23552 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23553 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23554 if (!SWIG_IsOK(ecode2
)) {
23555 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetNextWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23557 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23560 result
= (arg1
)->GetNextWeekDay(arg2
);
23561 wxPyEndAllowThreads(__tstate
);
23562 if (PyErr_Occurred()) SWIG_fail
;
23564 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
23571 SWIGINTERN PyObject
*_wrap_DateTime_SetToPrevWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23572 PyObject
*resultobj
= 0;
23573 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23574 wxDateTime::WeekDay arg2
;
23575 wxDateTime
*result
= 0 ;
23580 PyObject
* obj0
= 0 ;
23581 PyObject
* obj1
= 0 ;
23582 char * kwnames
[] = {
23583 (char *) "self",(char *) "weekday", NULL
23586 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetToPrevWeekDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23587 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23588 if (!SWIG_IsOK(res1
)) {
23589 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToPrevWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23591 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23592 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23593 if (!SWIG_IsOK(ecode2
)) {
23594 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToPrevWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23596 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23600 wxDateTime
&_result_ref
= (arg1
)->SetToPrevWeekDay(arg2
);
23601 result
= (wxDateTime
*) &_result_ref
;
23603 wxPyEndAllowThreads(__tstate
);
23604 if (PyErr_Occurred()) SWIG_fail
;
23606 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
23613 SWIGINTERN PyObject
*_wrap_DateTime_GetPrevWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23614 PyObject
*resultobj
= 0;
23615 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23616 wxDateTime::WeekDay arg2
;
23622 PyObject
* obj0
= 0 ;
23623 PyObject
* obj1
= 0 ;
23624 char * kwnames
[] = {
23625 (char *) "self",(char *) "weekday", NULL
23628 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_GetPrevWeekDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23629 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23630 if (!SWIG_IsOK(res1
)) {
23631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetPrevWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23633 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23634 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23635 if (!SWIG_IsOK(ecode2
)) {
23636 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetPrevWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23638 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23641 result
= (arg1
)->GetPrevWeekDay(arg2
);
23642 wxPyEndAllowThreads(__tstate
);
23643 if (PyErr_Occurred()) SWIG_fail
;
23645 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
23652 SWIGINTERN PyObject
*_wrap_DateTime_SetToWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23653 PyObject
*resultobj
= 0;
23654 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23655 wxDateTime::WeekDay arg2
;
23656 int arg3
= (int) 1 ;
23657 wxDateTime::Month arg4
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
23658 int arg5
= (int) wxDateTime::Inv_Year
;
23670 PyObject
* obj0
= 0 ;
23671 PyObject
* obj1
= 0 ;
23672 PyObject
* obj2
= 0 ;
23673 PyObject
* obj3
= 0 ;
23674 PyObject
* obj4
= 0 ;
23675 char * kwnames
[] = {
23676 (char *) "self",(char *) "weekday",(char *) "n",(char *) "month",(char *) "year", NULL
23679 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:DateTime_SetToWeekDay",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
23680 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23681 if (!SWIG_IsOK(res1
)) {
23682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23684 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23685 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23686 if (!SWIG_IsOK(ecode2
)) {
23687 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23689 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23691 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23692 if (!SWIG_IsOK(ecode3
)) {
23693 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToWeekDay" "', expected argument " "3"" of type '" "int""'");
23695 arg3
= static_cast< int >(val3
);
23698 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23699 if (!SWIG_IsOK(ecode4
)) {
23700 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_SetToWeekDay" "', expected argument " "4"" of type '" "wxDateTime::Month""'");
23702 arg4
= static_cast< wxDateTime::Month
>(val4
);
23705 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
23706 if (!SWIG_IsOK(ecode5
)) {
23707 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DateTime_SetToWeekDay" "', expected argument " "5"" of type '" "int""'");
23709 arg5
= static_cast< int >(val5
);
23712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23713 result
= (bool)(arg1
)->SetToWeekDay(arg2
,arg3
,arg4
,arg5
);
23714 wxPyEndAllowThreads(__tstate
);
23715 if (PyErr_Occurred()) SWIG_fail
;
23718 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23726 SWIGINTERN PyObject
*_wrap_DateTime_SetToLastWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23727 PyObject
*resultobj
= 0;
23728 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23729 wxDateTime::WeekDay arg2
;
23730 wxDateTime::Month arg3
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
23731 int arg4
= (int) wxDateTime::Inv_Year
;
23741 PyObject
* obj0
= 0 ;
23742 PyObject
* obj1
= 0 ;
23743 PyObject
* obj2
= 0 ;
23744 PyObject
* obj3
= 0 ;
23745 char * kwnames
[] = {
23746 (char *) "self",(char *) "weekday",(char *) "month",(char *) "year", NULL
23749 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DateTime_SetToLastWeekDay",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23750 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23751 if (!SWIG_IsOK(res1
)) {
23752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToLastWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23754 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23755 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23756 if (!SWIG_IsOK(ecode2
)) {
23757 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToLastWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23759 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23761 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23762 if (!SWIG_IsOK(ecode3
)) {
23763 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToLastWeekDay" "', expected argument " "3"" of type '" "wxDateTime::Month""'");
23765 arg3
= static_cast< wxDateTime::Month
>(val3
);
23768 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23769 if (!SWIG_IsOK(ecode4
)) {
23770 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_SetToLastWeekDay" "', expected argument " "4"" of type '" "int""'");
23772 arg4
= static_cast< int >(val4
);
23775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23776 result
= (bool)(arg1
)->SetToLastWeekDay(arg2
,arg3
,arg4
);
23777 wxPyEndAllowThreads(__tstate
);
23778 if (PyErr_Occurred()) SWIG_fail
;
23781 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23789 SWIGINTERN PyObject
*_wrap_DateTime_GetLastWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23790 PyObject
*resultobj
= 0;
23791 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23792 wxDateTime::WeekDay arg2
;
23793 wxDateTime::Month arg3
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
23794 int arg4
= (int) wxDateTime::Inv_Year
;
23804 PyObject
* obj0
= 0 ;
23805 PyObject
* obj1
= 0 ;
23806 PyObject
* obj2
= 0 ;
23807 PyObject
* obj3
= 0 ;
23808 char * kwnames
[] = {
23809 (char *) "self",(char *) "weekday",(char *) "month",(char *) "year", NULL
23812 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DateTime_GetLastWeekDay",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23813 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23814 if (!SWIG_IsOK(res1
)) {
23815 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetLastWeekDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
23817 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23818 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23819 if (!SWIG_IsOK(ecode2
)) {
23820 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetLastWeekDay" "', expected argument " "2"" of type '" "wxDateTime::WeekDay""'");
23822 arg2
= static_cast< wxDateTime::WeekDay
>(val2
);
23824 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23825 if (!SWIG_IsOK(ecode3
)) {
23826 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_GetLastWeekDay" "', expected argument " "3"" of type '" "wxDateTime::Month""'");
23828 arg3
= static_cast< wxDateTime::Month
>(val3
);
23831 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23832 if (!SWIG_IsOK(ecode4
)) {
23833 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_GetLastWeekDay" "', expected argument " "4"" of type '" "int""'");
23835 arg4
= static_cast< int >(val4
);
23838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23839 result
= (arg1
)->GetLastWeekDay(arg2
,arg3
,arg4
);
23840 wxPyEndAllowThreads(__tstate
);
23841 if (PyErr_Occurred()) SWIG_fail
;
23843 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
23850 SWIGINTERN PyObject
*_wrap_DateTime_SetToTheWeek(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23851 PyObject
*resultobj
= 0;
23852 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23854 wxDateTime::WeekDay arg3
= (wxDateTime::WeekDay
) wxDateTime::Mon
;
23855 wxDateTime::WeekFlags arg4
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
23865 PyObject
* obj0
= 0 ;
23866 PyObject
* obj1
= 0 ;
23867 PyObject
* obj2
= 0 ;
23868 PyObject
* obj3
= 0 ;
23869 char * kwnames
[] = {
23870 (char *) "self",(char *) "numWeek",(char *) "weekday",(char *) "flags", NULL
23873 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DateTime_SetToTheWeek",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23874 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23875 if (!SWIG_IsOK(res1
)) {
23876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToTheWeek" "', expected argument " "1"" of type '" "wxDateTime *""'");
23878 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23879 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23880 if (!SWIG_IsOK(ecode2
)) {
23881 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToTheWeek" "', expected argument " "2"" of type '" "int""'");
23883 arg2
= static_cast< int >(val2
);
23885 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23886 if (!SWIG_IsOK(ecode3
)) {
23887 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToTheWeek" "', expected argument " "3"" of type '" "wxDateTime::WeekDay""'");
23889 arg3
= static_cast< wxDateTime::WeekDay
>(val3
);
23892 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23893 if (!SWIG_IsOK(ecode4
)) {
23894 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_SetToTheWeek" "', expected argument " "4"" of type '" "wxDateTime::WeekFlags""'");
23896 arg4
= static_cast< wxDateTime::WeekFlags
>(val4
);
23899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23900 result
= (bool)(arg1
)->SetToTheWeek(arg2
,arg3
,arg4
);
23901 wxPyEndAllowThreads(__tstate
);
23902 if (PyErr_Occurred()) SWIG_fail
;
23905 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23913 SWIGINTERN PyObject
*_wrap_DateTime_GetWeek(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23914 PyObject
*resultobj
= 0;
23915 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
23917 wxDateTime::WeekDay arg3
= (wxDateTime::WeekDay
) wxDateTime::Mon
;
23918 wxDateTime::WeekFlags arg4
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
23928 PyObject
* obj0
= 0 ;
23929 PyObject
* obj1
= 0 ;
23930 PyObject
* obj2
= 0 ;
23931 PyObject
* obj3
= 0 ;
23932 char * kwnames
[] = {
23933 (char *) "self",(char *) "numWeek",(char *) "weekday",(char *) "flags", NULL
23936 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DateTime_GetWeek",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23937 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
23938 if (!SWIG_IsOK(res1
)) {
23939 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetWeek" "', expected argument " "1"" of type '" "wxDateTime *""'");
23941 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
23942 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23943 if (!SWIG_IsOK(ecode2
)) {
23944 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetWeek" "', expected argument " "2"" of type '" "int""'");
23946 arg2
= static_cast< int >(val2
);
23948 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23949 if (!SWIG_IsOK(ecode3
)) {
23950 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_GetWeek" "', expected argument " "3"" of type '" "wxDateTime::WeekDay""'");
23952 arg3
= static_cast< wxDateTime::WeekDay
>(val3
);
23955 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23956 if (!SWIG_IsOK(ecode4
)) {
23957 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DateTime_GetWeek" "', expected argument " "4"" of type '" "wxDateTime::WeekFlags""'");
23959 arg4
= static_cast< wxDateTime::WeekFlags
>(val4
);
23962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23963 result
= (arg1
)->GetWeek(arg2
,arg3
,arg4
);
23964 wxPyEndAllowThreads(__tstate
);
23965 if (PyErr_Occurred()) SWIG_fail
;
23967 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
23974 SWIGINTERN PyObject
*_wrap_DateTime_SetToWeekOfYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23975 PyObject
*resultobj
= 0;
23978 wxDateTime::WeekDay arg3
= (wxDateTime::WeekDay
) wxDateTime::Mon
;
23986 PyObject
* obj0
= 0 ;
23987 PyObject
* obj1
= 0 ;
23988 PyObject
* obj2
= 0 ;
23989 char * kwnames
[] = {
23990 (char *) "year",(char *) "numWeek",(char *) "weekday", NULL
23993 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_SetToWeekOfYear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23994 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
23995 if (!SWIG_IsOK(ecode1
)) {
23996 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateTime_SetToWeekOfYear" "', expected argument " "1"" of type '" "int""'");
23998 arg1
= static_cast< int >(val1
);
23999 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24000 if (!SWIG_IsOK(ecode2
)) {
24001 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToWeekOfYear" "', expected argument " "2"" of type '" "int""'");
24003 arg2
= static_cast< int >(val2
);
24005 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
24006 if (!SWIG_IsOK(ecode3
)) {
24007 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToWeekOfYear" "', expected argument " "3"" of type '" "wxDateTime::WeekDay""'");
24009 arg3
= static_cast< wxDateTime::WeekDay
>(val3
);
24012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24013 result
= wxDateTime::SetToWeekOfYear(arg1
,arg2
,arg3
);
24014 wxPyEndAllowThreads(__tstate
);
24015 if (PyErr_Occurred()) SWIG_fail
;
24017 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24024 SWIGINTERN PyObject
*_wrap_DateTime_SetToLastMonthDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24025 PyObject
*resultobj
= 0;
24026 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24027 wxDateTime::Month arg2
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
24028 int arg3
= (int) wxDateTime::Inv_Year
;
24029 wxDateTime
*result
= 0 ;
24036 PyObject
* obj0
= 0 ;
24037 PyObject
* obj1
= 0 ;
24038 PyObject
* obj2
= 0 ;
24039 char * kwnames
[] = {
24040 (char *) "self",(char *) "month",(char *) "year", NULL
24043 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_SetToLastMonthDay",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24044 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24045 if (!SWIG_IsOK(res1
)) {
24046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToLastMonthDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
24048 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24050 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24051 if (!SWIG_IsOK(ecode2
)) {
24052 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToLastMonthDay" "', expected argument " "2"" of type '" "wxDateTime::Month""'");
24054 arg2
= static_cast< wxDateTime::Month
>(val2
);
24057 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
24058 if (!SWIG_IsOK(ecode3
)) {
24059 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_SetToLastMonthDay" "', expected argument " "3"" of type '" "int""'");
24061 arg3
= static_cast< int >(val3
);
24064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24066 wxDateTime
&_result_ref
= (arg1
)->SetToLastMonthDay(arg2
,arg3
);
24067 result
= (wxDateTime
*) &_result_ref
;
24069 wxPyEndAllowThreads(__tstate
);
24070 if (PyErr_Occurred()) SWIG_fail
;
24072 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24079 SWIGINTERN PyObject
*_wrap_DateTime_GetLastMonthDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24080 PyObject
*resultobj
= 0;
24081 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24082 wxDateTime::Month arg2
= (wxDateTime::Month
) wxDateTime::Inv_Month
;
24083 int arg3
= (int) wxDateTime::Inv_Year
;
24091 PyObject
* obj0
= 0 ;
24092 PyObject
* obj1
= 0 ;
24093 PyObject
* obj2
= 0 ;
24094 char * kwnames
[] = {
24095 (char *) "self",(char *) "month",(char *) "year", NULL
24098 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_GetLastMonthDay",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24099 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24100 if (!SWIG_IsOK(res1
)) {
24101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetLastMonthDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
24103 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24105 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24106 if (!SWIG_IsOK(ecode2
)) {
24107 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetLastMonthDay" "', expected argument " "2"" of type '" "wxDateTime::Month""'");
24109 arg2
= static_cast< wxDateTime::Month
>(val2
);
24112 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
24113 if (!SWIG_IsOK(ecode3
)) {
24114 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_GetLastMonthDay" "', expected argument " "3"" of type '" "int""'");
24116 arg3
= static_cast< int >(val3
);
24119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24120 result
= (arg1
)->GetLastMonthDay(arg2
,arg3
);
24121 wxPyEndAllowThreads(__tstate
);
24122 if (PyErr_Occurred()) SWIG_fail
;
24124 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24131 SWIGINTERN PyObject
*_wrap_DateTime_SetToYearDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24132 PyObject
*resultobj
= 0;
24133 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24135 wxDateTime
*result
= 0 ;
24140 PyObject
* obj0
= 0 ;
24141 PyObject
* obj1
= 0 ;
24142 char * kwnames
[] = {
24143 (char *) "self",(char *) "yday", NULL
24146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SetToYearDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24148 if (!SWIG_IsOK(res1
)) {
24149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SetToYearDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
24151 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24152 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24153 if (!SWIG_IsOK(ecode2
)) {
24154 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_SetToYearDay" "', expected argument " "2"" of type '" "int""'");
24156 arg2
= static_cast< int >(val2
);
24158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24160 wxDateTime
&_result_ref
= (arg1
)->SetToYearDay(arg2
);
24161 result
= (wxDateTime
*) &_result_ref
;
24163 wxPyEndAllowThreads(__tstate
);
24164 if (PyErr_Occurred()) SWIG_fail
;
24166 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24173 SWIGINTERN PyObject
*_wrap_DateTime_GetYearDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24174 PyObject
*resultobj
= 0;
24175 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24182 PyObject
* obj0
= 0 ;
24183 PyObject
* obj1
= 0 ;
24184 char * kwnames
[] = {
24185 (char *) "self",(char *) "yday", NULL
24188 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_GetYearDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24189 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24190 if (!SWIG_IsOK(res1
)) {
24191 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetYearDay" "', expected argument " "1"" of type '" "wxDateTime *""'");
24193 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24194 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24195 if (!SWIG_IsOK(ecode2
)) {
24196 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetYearDay" "', expected argument " "2"" of type '" "int""'");
24198 arg2
= static_cast< int >(val2
);
24200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24201 result
= (arg1
)->GetYearDay(arg2
);
24202 wxPyEndAllowThreads(__tstate
);
24203 if (PyErr_Occurred()) SWIG_fail
;
24205 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24212 SWIGINTERN PyObject
*_wrap_DateTime_GetJulianDayNumber(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24213 PyObject
*resultobj
= 0;
24214 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24218 PyObject
*swig_obj
[1] ;
24220 if (!args
) SWIG_fail
;
24221 swig_obj
[0] = args
;
24222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24223 if (!SWIG_IsOK(res1
)) {
24224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetJulianDayNumber" "', expected argument " "1"" of type '" "wxDateTime *""'");
24226 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24229 result
= (double)(arg1
)->GetJulianDayNumber();
24230 wxPyEndAllowThreads(__tstate
);
24231 if (PyErr_Occurred()) SWIG_fail
;
24233 resultobj
= SWIG_From_double(static_cast< double >(result
));
24240 SWIGINTERN PyObject
*_wrap_DateTime_GetJDN(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24241 PyObject
*resultobj
= 0;
24242 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24246 PyObject
*swig_obj
[1] ;
24248 if (!args
) SWIG_fail
;
24249 swig_obj
[0] = args
;
24250 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24251 if (!SWIG_IsOK(res1
)) {
24252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetJDN" "', expected argument " "1"" of type '" "wxDateTime *""'");
24254 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24257 result
= (double)(arg1
)->GetJDN();
24258 wxPyEndAllowThreads(__tstate
);
24259 if (PyErr_Occurred()) SWIG_fail
;
24261 resultobj
= SWIG_From_double(static_cast< double >(result
));
24268 SWIGINTERN PyObject
*_wrap_DateTime_GetModifiedJulianDayNumber(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24269 PyObject
*resultobj
= 0;
24270 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24274 PyObject
*swig_obj
[1] ;
24276 if (!args
) SWIG_fail
;
24277 swig_obj
[0] = args
;
24278 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24279 if (!SWIG_IsOK(res1
)) {
24280 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetModifiedJulianDayNumber" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24282 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24285 result
= (double)((wxDateTime
const *)arg1
)->GetModifiedJulianDayNumber();
24286 wxPyEndAllowThreads(__tstate
);
24287 if (PyErr_Occurred()) SWIG_fail
;
24289 resultobj
= SWIG_From_double(static_cast< double >(result
));
24296 SWIGINTERN PyObject
*_wrap_DateTime_GetMJD(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24297 PyObject
*resultobj
= 0;
24298 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24302 PyObject
*swig_obj
[1] ;
24304 if (!args
) SWIG_fail
;
24305 swig_obj
[0] = args
;
24306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24307 if (!SWIG_IsOK(res1
)) {
24308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetMJD" "', expected argument " "1"" of type '" "wxDateTime *""'");
24310 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24313 result
= (double)(arg1
)->GetMJD();
24314 wxPyEndAllowThreads(__tstate
);
24315 if (PyErr_Occurred()) SWIG_fail
;
24317 resultobj
= SWIG_From_double(static_cast< double >(result
));
24324 SWIGINTERN PyObject
*_wrap_DateTime_GetRataDie(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24325 PyObject
*resultobj
= 0;
24326 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24330 PyObject
*swig_obj
[1] ;
24332 if (!args
) SWIG_fail
;
24333 swig_obj
[0] = args
;
24334 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24335 if (!SWIG_IsOK(res1
)) {
24336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetRataDie" "', expected argument " "1"" of type '" "wxDateTime *""'");
24338 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24341 result
= (double)(arg1
)->GetRataDie();
24342 wxPyEndAllowThreads(__tstate
);
24343 if (PyErr_Occurred()) SWIG_fail
;
24345 resultobj
= SWIG_From_double(static_cast< double >(result
));
24352 SWIGINTERN PyObject
*_wrap_DateTime_ToTimezone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24353 PyObject
*resultobj
= 0;
24354 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24355 wxDateTime::TimeZone
*arg2
= 0 ;
24356 bool arg3
= (bool) false ;
24360 bool temp2
= false ;
24363 PyObject
* obj0
= 0 ;
24364 PyObject
* obj1
= 0 ;
24365 PyObject
* obj2
= 0 ;
24366 char * kwnames
[] = {
24367 (char *) "self",(char *) "tz",(char *) "noDST", NULL
24370 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_ToTimezone",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24371 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24372 if (!SWIG_IsOK(res1
)) {
24373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ToTimezone" "', expected argument " "1"" of type '" "wxDateTime *""'");
24375 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24377 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
24381 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
24382 if (!SWIG_IsOK(ecode3
)) {
24383 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_ToTimezone" "', expected argument " "3"" of type '" "bool""'");
24385 arg3
= static_cast< bool >(val3
);
24388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24389 result
= (arg1
)->ToTimezone((wxDateTime::TimeZone
const &)*arg2
,arg3
);
24390 wxPyEndAllowThreads(__tstate
);
24391 if (PyErr_Occurred()) SWIG_fail
;
24393 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24395 if (temp2
) delete arg2
;
24400 if (temp2
) delete arg2
;
24406 SWIGINTERN PyObject
*_wrap_DateTime_MakeTimezone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24407 PyObject
*resultobj
= 0;
24408 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24409 wxDateTime::TimeZone
*arg2
= 0 ;
24410 bool arg3
= (bool) false ;
24411 wxDateTime
*result
= 0 ;
24414 bool temp2
= false ;
24417 PyObject
* obj0
= 0 ;
24418 PyObject
* obj1
= 0 ;
24419 PyObject
* obj2
= 0 ;
24420 char * kwnames
[] = {
24421 (char *) "self",(char *) "tz",(char *) "noDST", NULL
24424 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_MakeTimezone",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24425 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24426 if (!SWIG_IsOK(res1
)) {
24427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_MakeTimezone" "', expected argument " "1"" of type '" "wxDateTime *""'");
24429 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24431 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
24435 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
24436 if (!SWIG_IsOK(ecode3
)) {
24437 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_MakeTimezone" "', expected argument " "3"" of type '" "bool""'");
24439 arg3
= static_cast< bool >(val3
);
24442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24444 wxDateTime
&_result_ref
= (arg1
)->MakeTimezone((wxDateTime::TimeZone
const &)*arg2
,arg3
);
24445 result
= (wxDateTime
*) &_result_ref
;
24447 wxPyEndAllowThreads(__tstate
);
24448 if (PyErr_Occurred()) SWIG_fail
;
24450 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24452 if (temp2
) delete arg2
;
24457 if (temp2
) delete arg2
;
24463 SWIGINTERN PyObject
*_wrap_DateTime_FromTimezone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24464 PyObject
*resultobj
= 0;
24465 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24466 wxDateTime::TimeZone
*arg2
= 0 ;
24467 bool arg3
= (bool) false ;
24471 bool temp2
= false ;
24474 PyObject
* obj0
= 0 ;
24475 PyObject
* obj1
= 0 ;
24476 PyObject
* obj2
= 0 ;
24477 char * kwnames
[] = {
24478 (char *) "self",(char *) "tz",(char *) "noDST", NULL
24481 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_FromTimezone",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24482 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24483 if (!SWIG_IsOK(res1
)) {
24484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FromTimezone" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24486 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24488 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
24492 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
24493 if (!SWIG_IsOK(ecode3
)) {
24494 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_FromTimezone" "', expected argument " "3"" of type '" "bool""'");
24496 arg3
= static_cast< bool >(val3
);
24499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24500 result
= ((wxDateTime
const *)arg1
)->FromTimezone((wxDateTime::TimeZone
const &)*arg2
,arg3
);
24501 wxPyEndAllowThreads(__tstate
);
24502 if (PyErr_Occurred()) SWIG_fail
;
24504 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24506 if (temp2
) delete arg2
;
24511 if (temp2
) delete arg2
;
24517 SWIGINTERN PyObject
*_wrap_DateTime_MakeFromTimezone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24518 PyObject
*resultobj
= 0;
24519 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24520 wxDateTime::TimeZone
*arg2
= 0 ;
24521 bool arg3
= (bool) false ;
24522 wxDateTime
*result
= 0 ;
24525 bool temp2
= false ;
24528 PyObject
* obj0
= 0 ;
24529 PyObject
* obj1
= 0 ;
24530 PyObject
* obj2
= 0 ;
24531 char * kwnames
[] = {
24532 (char *) "self",(char *) "tz",(char *) "noDST", NULL
24535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DateTime_MakeFromTimezone",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24536 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24537 if (!SWIG_IsOK(res1
)) {
24538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_MakeFromTimezone" "', expected argument " "1"" of type '" "wxDateTime *""'");
24540 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24542 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
24546 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
24547 if (!SWIG_IsOK(ecode3
)) {
24548 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DateTime_MakeFromTimezone" "', expected argument " "3"" of type '" "bool""'");
24550 arg3
= static_cast< bool >(val3
);
24553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24555 wxDateTime
&_result_ref
= (arg1
)->MakeFromTimezone((wxDateTime::TimeZone
const &)*arg2
,arg3
);
24556 result
= (wxDateTime
*) &_result_ref
;
24558 wxPyEndAllowThreads(__tstate
);
24559 if (PyErr_Occurred()) SWIG_fail
;
24561 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24563 if (temp2
) delete arg2
;
24568 if (temp2
) delete arg2
;
24574 SWIGINTERN PyObject
*_wrap_DateTime_ToUTC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24575 PyObject
*resultobj
= 0;
24576 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24577 bool arg2
= (bool) false ;
24583 PyObject
* obj0
= 0 ;
24584 PyObject
* obj1
= 0 ;
24585 char * kwnames
[] = {
24586 (char *) "self",(char *) "noDST", NULL
24589 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_ToUTC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24590 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24591 if (!SWIG_IsOK(res1
)) {
24592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ToUTC" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24594 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24596 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24597 if (!SWIG_IsOK(ecode2
)) {
24598 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_ToUTC" "', expected argument " "2"" of type '" "bool""'");
24600 arg2
= static_cast< bool >(val2
);
24603 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24604 result
= ((wxDateTime
const *)arg1
)->ToUTC(arg2
);
24605 wxPyEndAllowThreads(__tstate
);
24606 if (PyErr_Occurred()) SWIG_fail
;
24608 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24615 SWIGINTERN PyObject
*_wrap_DateTime_MakeUTC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24616 PyObject
*resultobj
= 0;
24617 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24618 bool arg2
= (bool) false ;
24619 wxDateTime
*result
= 0 ;
24624 PyObject
* obj0
= 0 ;
24625 PyObject
* obj1
= 0 ;
24626 char * kwnames
[] = {
24627 (char *) "self",(char *) "noDST", NULL
24630 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_MakeUTC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24631 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24632 if (!SWIG_IsOK(res1
)) {
24633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_MakeUTC" "', expected argument " "1"" of type '" "wxDateTime *""'");
24635 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24637 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24638 if (!SWIG_IsOK(ecode2
)) {
24639 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_MakeUTC" "', expected argument " "2"" of type '" "bool""'");
24641 arg2
= static_cast< bool >(val2
);
24644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24646 wxDateTime
&_result_ref
= (arg1
)->MakeUTC(arg2
);
24647 result
= (wxDateTime
*) &_result_ref
;
24649 wxPyEndAllowThreads(__tstate
);
24650 if (PyErr_Occurred()) SWIG_fail
;
24652 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24659 SWIGINTERN PyObject
*_wrap_DateTime_ToGMT(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24660 PyObject
*resultobj
= 0;
24661 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24662 bool arg2
= (bool) false ;
24668 PyObject
* obj0
= 0 ;
24669 PyObject
* obj1
= 0 ;
24670 char * kwnames
[] = {
24671 (char *) "self",(char *) "noDST", NULL
24674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_ToGMT",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24676 if (!SWIG_IsOK(res1
)) {
24677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ToGMT" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24679 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24681 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24682 if (!SWIG_IsOK(ecode2
)) {
24683 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_ToGMT" "', expected argument " "2"" of type '" "bool""'");
24685 arg2
= static_cast< bool >(val2
);
24688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24689 result
= ((wxDateTime
const *)arg1
)->ToGMT(arg2
);
24690 wxPyEndAllowThreads(__tstate
);
24691 if (PyErr_Occurred()) SWIG_fail
;
24693 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24700 SWIGINTERN PyObject
*_wrap_DateTime_MakeGMT(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24701 PyObject
*resultobj
= 0;
24702 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24703 bool arg2
= (bool) false ;
24704 wxDateTime
*result
= 0 ;
24709 PyObject
* obj0
= 0 ;
24710 PyObject
* obj1
= 0 ;
24711 char * kwnames
[] = {
24712 (char *) "self",(char *) "noDST", NULL
24715 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_MakeGMT",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24716 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24717 if (!SWIG_IsOK(res1
)) {
24718 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_MakeGMT" "', expected argument " "1"" of type '" "wxDateTime *""'");
24720 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24722 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24723 if (!SWIG_IsOK(ecode2
)) {
24724 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_MakeGMT" "', expected argument " "2"" of type '" "bool""'");
24726 arg2
= static_cast< bool >(val2
);
24729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24731 wxDateTime
&_result_ref
= (arg1
)->MakeGMT(arg2
);
24732 result
= (wxDateTime
*) &_result_ref
;
24734 wxPyEndAllowThreads(__tstate
);
24735 if (PyErr_Occurred()) SWIG_fail
;
24737 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24744 SWIGINTERN PyObject
*_wrap_DateTime_FromUTC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24745 PyObject
*resultobj
= 0;
24746 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24747 bool arg2
= (bool) false ;
24753 PyObject
* obj0
= 0 ;
24754 PyObject
* obj1
= 0 ;
24755 char * kwnames
[] = {
24756 (char *) "self",(char *) "noDST", NULL
24759 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_FromUTC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24760 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24761 if (!SWIG_IsOK(res1
)) {
24762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FromUTC" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24764 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24766 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24767 if (!SWIG_IsOK(ecode2
)) {
24768 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_FromUTC" "', expected argument " "2"" of type '" "bool""'");
24770 arg2
= static_cast< bool >(val2
);
24773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24774 result
= ((wxDateTime
const *)arg1
)->FromUTC(arg2
);
24775 wxPyEndAllowThreads(__tstate
);
24776 if (PyErr_Occurred()) SWIG_fail
;
24778 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
24785 SWIGINTERN PyObject
*_wrap_DateTime_MakeFromUTC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24786 PyObject
*resultobj
= 0;
24787 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24788 bool arg2
= (bool) false ;
24789 wxDateTime
*result
= 0 ;
24794 PyObject
* obj0
= 0 ;
24795 PyObject
* obj1
= 0 ;
24796 char * kwnames
[] = {
24797 (char *) "self",(char *) "noDST", NULL
24800 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_MakeFromUTC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24801 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24802 if (!SWIG_IsOK(res1
)) {
24803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_MakeFromUTC" "', expected argument " "1"" of type '" "wxDateTime *""'");
24805 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24807 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24808 if (!SWIG_IsOK(ecode2
)) {
24809 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_MakeFromUTC" "', expected argument " "2"" of type '" "bool""'");
24811 arg2
= static_cast< bool >(val2
);
24814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24816 wxDateTime
&_result_ref
= (arg1
)->MakeFromUTC(arg2
);
24817 result
= (wxDateTime
*) &_result_ref
;
24819 wxPyEndAllowThreads(__tstate
);
24820 if (PyErr_Occurred()) SWIG_fail
;
24822 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
24829 SWIGINTERN PyObject
*_wrap_DateTime_IsDST(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24830 PyObject
*resultobj
= 0;
24831 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24832 wxDateTime::Country arg2
= (wxDateTime::Country
) wxDateTime::Country_Default
;
24838 PyObject
* obj0
= 0 ;
24839 PyObject
* obj1
= 0 ;
24840 char * kwnames
[] = {
24841 (char *) "self",(char *) "country", NULL
24844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_IsDST",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24846 if (!SWIG_IsOK(res1
)) {
24847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsDST" "', expected argument " "1"" of type '" "wxDateTime *""'");
24849 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24851 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24852 if (!SWIG_IsOK(ecode2
)) {
24853 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_IsDST" "', expected argument " "2"" of type '" "wxDateTime::Country""'");
24855 arg2
= static_cast< wxDateTime::Country
>(val2
);
24858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24859 result
= (int)(arg1
)->IsDST(arg2
);
24860 wxPyEndAllowThreads(__tstate
);
24861 if (PyErr_Occurred()) SWIG_fail
;
24863 resultobj
= SWIG_From_int(static_cast< int >(result
));
24870 SWIGINTERN PyObject
*_wrap_DateTime_IsValid(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24871 PyObject
*resultobj
= 0;
24872 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24876 PyObject
*swig_obj
[1] ;
24878 if (!args
) SWIG_fail
;
24879 swig_obj
[0] = args
;
24880 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24881 if (!SWIG_IsOK(res1
)) {
24882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsValid" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24884 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24887 result
= (bool)((wxDateTime
const *)arg1
)->IsValid();
24888 wxPyEndAllowThreads(__tstate
);
24889 if (PyErr_Occurred()) SWIG_fail
;
24892 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24900 SWIGINTERN PyObject
*_wrap_DateTime_GetTicks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24901 PyObject
*resultobj
= 0;
24902 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24906 PyObject
*swig_obj
[1] ;
24908 if (!args
) SWIG_fail
;
24909 swig_obj
[0] = args
;
24910 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24911 if (!SWIG_IsOK(res1
)) {
24912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetTicks" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24914 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24917 result
= (time_t)((wxDateTime
const *)arg1
)->GetTicks();
24918 wxPyEndAllowThreads(__tstate
);
24919 if (PyErr_Occurred()) SWIG_fail
;
24921 resultobj
= SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result
));
24928 SWIGINTERN PyObject
*_wrap_DateTime_GetYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24929 PyObject
*resultobj
= 0;
24930 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24931 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
24932 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
24936 bool temp2
= false ;
24937 PyObject
* obj0
= 0 ;
24938 PyObject
* obj1
= 0 ;
24939 char * kwnames
[] = {
24940 (char *) "self",(char *) "tz", NULL
24943 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetYear",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24944 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24945 if (!SWIG_IsOK(res1
)) {
24946 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetYear" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24948 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24951 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
24956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24957 result
= (int)((wxDateTime
const *)arg1
)->GetYear((wxDateTime::TimeZone
const &)*arg2
);
24958 wxPyEndAllowThreads(__tstate
);
24959 if (PyErr_Occurred()) SWIG_fail
;
24961 resultobj
= SWIG_From_int(static_cast< int >(result
));
24963 if (temp2
) delete arg2
;
24968 if (temp2
) delete arg2
;
24974 SWIGINTERN PyObject
*_wrap_DateTime_GetMonth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24975 PyObject
*resultobj
= 0;
24976 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
24977 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
24978 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
24979 wxDateTime::Month result
;
24982 bool temp2
= false ;
24983 PyObject
* obj0
= 0 ;
24984 PyObject
* obj1
= 0 ;
24985 char * kwnames
[] = {
24986 (char *) "self",(char *) "tz", NULL
24989 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetMonth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24990 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
24991 if (!SWIG_IsOK(res1
)) {
24992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetMonth" "', expected argument " "1"" of type '" "wxDateTime const *""'");
24994 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
24997 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25003 result
= (wxDateTime::Month
)((wxDateTime
const *)arg1
)->GetMonth((wxDateTime::TimeZone
const &)*arg2
);
25004 wxPyEndAllowThreads(__tstate
);
25005 if (PyErr_Occurred()) SWIG_fail
;
25007 resultobj
= SWIG_From_int(static_cast< int >(result
));
25009 if (temp2
) delete arg2
;
25014 if (temp2
) delete arg2
;
25020 SWIGINTERN PyObject
*_wrap_DateTime_GetDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25021 PyObject
*resultobj
= 0;
25022 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25023 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25024 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25028 bool temp2
= false ;
25029 PyObject
* obj0
= 0 ;
25030 PyObject
* obj1
= 0 ;
25031 char * kwnames
[] = {
25032 (char *) "self",(char *) "tz", NULL
25035 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25036 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25037 if (!SWIG_IsOK(res1
)) {
25038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetDay" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25040 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25043 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25049 result
= (int)((wxDateTime
const *)arg1
)->GetDay((wxDateTime::TimeZone
const &)*arg2
);
25050 wxPyEndAllowThreads(__tstate
);
25051 if (PyErr_Occurred()) SWIG_fail
;
25053 resultobj
= SWIG_From_int(static_cast< int >(result
));
25055 if (temp2
) delete arg2
;
25060 if (temp2
) delete arg2
;
25066 SWIGINTERN PyObject
*_wrap_DateTime_GetWeekDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25067 PyObject
*resultobj
= 0;
25068 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25069 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25070 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25071 wxDateTime::WeekDay result
;
25074 bool temp2
= false ;
25075 PyObject
* obj0
= 0 ;
25076 PyObject
* obj1
= 0 ;
25077 char * kwnames
[] = {
25078 (char *) "self",(char *) "tz", NULL
25081 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetWeekDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25082 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25083 if (!SWIG_IsOK(res1
)) {
25084 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetWeekDay" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25086 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25089 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25095 result
= (wxDateTime::WeekDay
)((wxDateTime
const *)arg1
)->GetWeekDay((wxDateTime::TimeZone
const &)*arg2
);
25096 wxPyEndAllowThreads(__tstate
);
25097 if (PyErr_Occurred()) SWIG_fail
;
25099 resultobj
= SWIG_From_int(static_cast< int >(result
));
25101 if (temp2
) delete arg2
;
25106 if (temp2
) delete arg2
;
25112 SWIGINTERN PyObject
*_wrap_DateTime_GetHour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25113 PyObject
*resultobj
= 0;
25114 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25115 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25116 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25120 bool temp2
= false ;
25121 PyObject
* obj0
= 0 ;
25122 PyObject
* obj1
= 0 ;
25123 char * kwnames
[] = {
25124 (char *) "self",(char *) "tz", NULL
25127 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetHour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25128 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25129 if (!SWIG_IsOK(res1
)) {
25130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetHour" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25132 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25135 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25141 result
= (int)((wxDateTime
const *)arg1
)->GetHour((wxDateTime::TimeZone
const &)*arg2
);
25142 wxPyEndAllowThreads(__tstate
);
25143 if (PyErr_Occurred()) SWIG_fail
;
25145 resultobj
= SWIG_From_int(static_cast< int >(result
));
25147 if (temp2
) delete arg2
;
25152 if (temp2
) delete arg2
;
25158 SWIGINTERN PyObject
*_wrap_DateTime_GetMinute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25159 PyObject
*resultobj
= 0;
25160 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25161 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25162 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25166 bool temp2
= false ;
25167 PyObject
* obj0
= 0 ;
25168 PyObject
* obj1
= 0 ;
25169 char * kwnames
[] = {
25170 (char *) "self",(char *) "tz", NULL
25173 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetMinute",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25174 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25175 if (!SWIG_IsOK(res1
)) {
25176 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetMinute" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25178 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25181 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25187 result
= (int)((wxDateTime
const *)arg1
)->GetMinute((wxDateTime::TimeZone
const &)*arg2
);
25188 wxPyEndAllowThreads(__tstate
);
25189 if (PyErr_Occurred()) SWIG_fail
;
25191 resultobj
= SWIG_From_int(static_cast< int >(result
));
25193 if (temp2
) delete arg2
;
25198 if (temp2
) delete arg2
;
25204 SWIGINTERN PyObject
*_wrap_DateTime_GetSecond(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25205 PyObject
*resultobj
= 0;
25206 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25207 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25208 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25212 bool temp2
= false ;
25213 PyObject
* obj0
= 0 ;
25214 PyObject
* obj1
= 0 ;
25215 char * kwnames
[] = {
25216 (char *) "self",(char *) "tz", NULL
25219 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetSecond",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25220 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25221 if (!SWIG_IsOK(res1
)) {
25222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetSecond" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25224 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25227 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25232 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25233 result
= (int)((wxDateTime
const *)arg1
)->GetSecond((wxDateTime::TimeZone
const &)*arg2
);
25234 wxPyEndAllowThreads(__tstate
);
25235 if (PyErr_Occurred()) SWIG_fail
;
25237 resultobj
= SWIG_From_int(static_cast< int >(result
));
25239 if (temp2
) delete arg2
;
25244 if (temp2
) delete arg2
;
25250 SWIGINTERN PyObject
*_wrap_DateTime_GetMillisecond(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25251 PyObject
*resultobj
= 0;
25252 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25253 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25254 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25258 bool temp2
= false ;
25259 PyObject
* obj0
= 0 ;
25260 PyObject
* obj1
= 0 ;
25261 char * kwnames
[] = {
25262 (char *) "self",(char *) "tz", NULL
25265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetMillisecond",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25267 if (!SWIG_IsOK(res1
)) {
25268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetMillisecond" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25270 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25273 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25278 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25279 result
= (int)((wxDateTime
const *)arg1
)->GetMillisecond((wxDateTime::TimeZone
const &)*arg2
);
25280 wxPyEndAllowThreads(__tstate
);
25281 if (PyErr_Occurred()) SWIG_fail
;
25283 resultobj
= SWIG_From_int(static_cast< int >(result
));
25285 if (temp2
) delete arg2
;
25290 if (temp2
) delete arg2
;
25296 SWIGINTERN PyObject
*_wrap_DateTime_GetDayOfYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25297 PyObject
*resultobj
= 0;
25298 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25299 wxDateTime::TimeZone
const &arg2_defvalue
= LOCAL_TZ
;
25300 wxDateTime::TimeZone
*arg2
= (wxDateTime::TimeZone
*) &arg2_defvalue
;
25304 bool temp2
= false ;
25305 PyObject
* obj0
= 0 ;
25306 PyObject
* obj1
= 0 ;
25307 char * kwnames
[] = {
25308 (char *) "self",(char *) "tz", NULL
25311 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_GetDayOfYear",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25312 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25313 if (!SWIG_IsOK(res1
)) {
25314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetDayOfYear" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25316 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25319 arg2
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj1
));
25324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25325 result
= (int)((wxDateTime
const *)arg1
)->GetDayOfYear((wxDateTime::TimeZone
const &)*arg2
);
25326 wxPyEndAllowThreads(__tstate
);
25327 if (PyErr_Occurred()) SWIG_fail
;
25329 resultobj
= SWIG_From_int(static_cast< int >(result
));
25331 if (temp2
) delete arg2
;
25336 if (temp2
) delete arg2
;
25342 SWIGINTERN PyObject
*_wrap_DateTime_GetWeekOfYear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25343 PyObject
*resultobj
= 0;
25344 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25345 wxDateTime::WeekFlags arg2
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
25346 wxDateTime::TimeZone
const &arg3_defvalue
= LOCAL_TZ
;
25347 wxDateTime::TimeZone
*arg3
= (wxDateTime::TimeZone
*) &arg3_defvalue
;
25353 bool temp3
= false ;
25354 PyObject
* obj0
= 0 ;
25355 PyObject
* obj1
= 0 ;
25356 PyObject
* obj2
= 0 ;
25357 char * kwnames
[] = {
25358 (char *) "self",(char *) "flags",(char *) "tz", NULL
25361 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_GetWeekOfYear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25362 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25363 if (!SWIG_IsOK(res1
)) {
25364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetWeekOfYear" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25366 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25368 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25369 if (!SWIG_IsOK(ecode2
)) {
25370 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetWeekOfYear" "', expected argument " "2"" of type '" "wxDateTime::WeekFlags""'");
25372 arg2
= static_cast< wxDateTime::WeekFlags
>(val2
);
25376 arg3
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj2
));
25381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25382 result
= (int)((wxDateTime
const *)arg1
)->GetWeekOfYear(arg2
,(wxDateTime::TimeZone
const &)*arg3
);
25383 wxPyEndAllowThreads(__tstate
);
25384 if (PyErr_Occurred()) SWIG_fail
;
25386 resultobj
= SWIG_From_int(static_cast< int >(result
));
25388 if (temp3
) delete arg3
;
25393 if (temp3
) delete arg3
;
25399 SWIGINTERN PyObject
*_wrap_DateTime_GetWeekOfMonth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25400 PyObject
*resultobj
= 0;
25401 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25402 wxDateTime::WeekFlags arg2
= (wxDateTime::WeekFlags
) wxDateTime::Monday_First
;
25403 wxDateTime::TimeZone
const &arg3_defvalue
= LOCAL_TZ
;
25404 wxDateTime::TimeZone
*arg3
= (wxDateTime::TimeZone
*) &arg3_defvalue
;
25410 bool temp3
= false ;
25411 PyObject
* obj0
= 0 ;
25412 PyObject
* obj1
= 0 ;
25413 PyObject
* obj2
= 0 ;
25414 char * kwnames
[] = {
25415 (char *) "self",(char *) "flags",(char *) "tz", NULL
25418 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_GetWeekOfMonth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25419 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25420 if (!SWIG_IsOK(res1
)) {
25421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_GetWeekOfMonth" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25423 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25425 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25426 if (!SWIG_IsOK(ecode2
)) {
25427 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_GetWeekOfMonth" "', expected argument " "2"" of type '" "wxDateTime::WeekFlags""'");
25429 arg2
= static_cast< wxDateTime::WeekFlags
>(val2
);
25433 arg3
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj2
));
25438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25439 result
= (int)((wxDateTime
const *)arg1
)->GetWeekOfMonth(arg2
,(wxDateTime::TimeZone
const &)*arg3
);
25440 wxPyEndAllowThreads(__tstate
);
25441 if (PyErr_Occurred()) SWIG_fail
;
25443 resultobj
= SWIG_From_int(static_cast< int >(result
));
25445 if (temp3
) delete arg3
;
25450 if (temp3
) delete arg3
;
25456 SWIGINTERN PyObject
*_wrap_DateTime_IsWorkDay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25457 PyObject
*resultobj
= 0;
25458 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25459 wxDateTime::Country arg2
= (wxDateTime::Country
) wxDateTime::Country_Default
;
25465 PyObject
* obj0
= 0 ;
25466 PyObject
* obj1
= 0 ;
25467 char * kwnames
[] = {
25468 (char *) "self",(char *) "country", NULL
25471 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DateTime_IsWorkDay",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25472 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25473 if (!SWIG_IsOK(res1
)) {
25474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsWorkDay" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25476 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25478 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25479 if (!SWIG_IsOK(ecode2
)) {
25480 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateTime_IsWorkDay" "', expected argument " "2"" of type '" "wxDateTime::Country""'");
25482 arg2
= static_cast< wxDateTime::Country
>(val2
);
25485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25486 result
= (bool)((wxDateTime
const *)arg1
)->IsWorkDay(arg2
);
25487 wxPyEndAllowThreads(__tstate
);
25488 if (PyErr_Occurred()) SWIG_fail
;
25491 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25499 SWIGINTERN PyObject
*_wrap_DateTime_IsEqualTo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25500 PyObject
*resultobj
= 0;
25501 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25502 wxDateTime
*arg2
= 0 ;
25508 PyObject
* obj0
= 0 ;
25509 PyObject
* obj1
= 0 ;
25510 char * kwnames
[] = {
25511 (char *) "self",(char *) "datetime", NULL
25514 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_IsEqualTo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25515 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25516 if (!SWIG_IsOK(res1
)) {
25517 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsEqualTo" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25519 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25520 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25521 if (!SWIG_IsOK(res2
)) {
25522 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsEqualTo" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25525 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsEqualTo" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25527 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25530 result
= (bool)((wxDateTime
const *)arg1
)->IsEqualTo((wxDateTime
const &)*arg2
);
25531 wxPyEndAllowThreads(__tstate
);
25532 if (PyErr_Occurred()) SWIG_fail
;
25535 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25543 SWIGINTERN PyObject
*_wrap_DateTime_IsEarlierThan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25544 PyObject
*resultobj
= 0;
25545 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25546 wxDateTime
*arg2
= 0 ;
25552 PyObject
* obj0
= 0 ;
25553 PyObject
* obj1
= 0 ;
25554 char * kwnames
[] = {
25555 (char *) "self",(char *) "datetime", NULL
25558 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_IsEarlierThan",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25559 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25560 if (!SWIG_IsOK(res1
)) {
25561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsEarlierThan" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25563 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25564 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25565 if (!SWIG_IsOK(res2
)) {
25566 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsEarlierThan" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25569 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsEarlierThan" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25571 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25574 result
= (bool)((wxDateTime
const *)arg1
)->IsEarlierThan((wxDateTime
const &)*arg2
);
25575 wxPyEndAllowThreads(__tstate
);
25576 if (PyErr_Occurred()) SWIG_fail
;
25579 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25587 SWIGINTERN PyObject
*_wrap_DateTime_IsLaterThan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25588 PyObject
*resultobj
= 0;
25589 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25590 wxDateTime
*arg2
= 0 ;
25596 PyObject
* obj0
= 0 ;
25597 PyObject
* obj1
= 0 ;
25598 char * kwnames
[] = {
25599 (char *) "self",(char *) "datetime", NULL
25602 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_IsLaterThan",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25603 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25604 if (!SWIG_IsOK(res1
)) {
25605 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsLaterThan" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25607 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25608 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25609 if (!SWIG_IsOK(res2
)) {
25610 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsLaterThan" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25613 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsLaterThan" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25615 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25618 result
= (bool)((wxDateTime
const *)arg1
)->IsLaterThan((wxDateTime
const &)*arg2
);
25619 wxPyEndAllowThreads(__tstate
);
25620 if (PyErr_Occurred()) SWIG_fail
;
25623 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25631 SWIGINTERN PyObject
*_wrap_DateTime_IsStrictlyBetween(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25632 PyObject
*resultobj
= 0;
25633 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25634 wxDateTime
*arg2
= 0 ;
25635 wxDateTime
*arg3
= 0 ;
25643 PyObject
* obj0
= 0 ;
25644 PyObject
* obj1
= 0 ;
25645 PyObject
* obj2
= 0 ;
25646 char * kwnames
[] = {
25647 (char *) "self",(char *) "t1",(char *) "t2", NULL
25650 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DateTime_IsStrictlyBetween",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25651 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25652 if (!SWIG_IsOK(res1
)) {
25653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsStrictlyBetween" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25655 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25656 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25657 if (!SWIG_IsOK(res2
)) {
25658 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsStrictlyBetween" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25661 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsStrictlyBetween" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25663 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25664 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25665 if (!SWIG_IsOK(res3
)) {
25666 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DateTime_IsStrictlyBetween" "', expected argument " "3"" of type '" "wxDateTime const &""'");
25669 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsStrictlyBetween" "', expected argument " "3"" of type '" "wxDateTime const &""'");
25671 arg3
= reinterpret_cast< wxDateTime
* >(argp3
);
25673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25674 result
= (bool)((wxDateTime
const *)arg1
)->IsStrictlyBetween((wxDateTime
const &)*arg2
,(wxDateTime
const &)*arg3
);
25675 wxPyEndAllowThreads(__tstate
);
25676 if (PyErr_Occurred()) SWIG_fail
;
25679 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25687 SWIGINTERN PyObject
*_wrap_DateTime_IsBetween(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25688 PyObject
*resultobj
= 0;
25689 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25690 wxDateTime
*arg2
= 0 ;
25691 wxDateTime
*arg3
= 0 ;
25699 PyObject
* obj0
= 0 ;
25700 PyObject
* obj1
= 0 ;
25701 PyObject
* obj2
= 0 ;
25702 char * kwnames
[] = {
25703 (char *) "self",(char *) "t1",(char *) "t2", NULL
25706 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DateTime_IsBetween",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25707 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25708 if (!SWIG_IsOK(res1
)) {
25709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsBetween" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25711 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25712 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25713 if (!SWIG_IsOK(res2
)) {
25714 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsBetween" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25717 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsBetween" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25719 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25720 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25721 if (!SWIG_IsOK(res3
)) {
25722 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DateTime_IsBetween" "', expected argument " "3"" of type '" "wxDateTime const &""'");
25725 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsBetween" "', expected argument " "3"" of type '" "wxDateTime const &""'");
25727 arg3
= reinterpret_cast< wxDateTime
* >(argp3
);
25729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25730 result
= (bool)((wxDateTime
const *)arg1
)->IsBetween((wxDateTime
const &)*arg2
,(wxDateTime
const &)*arg3
);
25731 wxPyEndAllowThreads(__tstate
);
25732 if (PyErr_Occurred()) SWIG_fail
;
25735 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25743 SWIGINTERN PyObject
*_wrap_DateTime_IsSameDate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25744 PyObject
*resultobj
= 0;
25745 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25746 wxDateTime
*arg2
= 0 ;
25752 PyObject
* obj0
= 0 ;
25753 PyObject
* obj1
= 0 ;
25754 char * kwnames
[] = {
25755 (char *) "self",(char *) "dt", NULL
25758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_IsSameDate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25760 if (!SWIG_IsOK(res1
)) {
25761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsSameDate" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25763 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25764 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25765 if (!SWIG_IsOK(res2
)) {
25766 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsSameDate" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25769 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsSameDate" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25771 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25774 result
= (bool)((wxDateTime
const *)arg1
)->IsSameDate((wxDateTime
const &)*arg2
);
25775 wxPyEndAllowThreads(__tstate
);
25776 if (PyErr_Occurred()) SWIG_fail
;
25779 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25787 SWIGINTERN PyObject
*_wrap_DateTime_IsSameTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25788 PyObject
*resultobj
= 0;
25789 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25790 wxDateTime
*arg2
= 0 ;
25796 PyObject
* obj0
= 0 ;
25797 PyObject
* obj1
= 0 ;
25798 char * kwnames
[] = {
25799 (char *) "self",(char *) "dt", NULL
25802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_IsSameTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25804 if (!SWIG_IsOK(res1
)) {
25805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsSameTime" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25807 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25808 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25809 if (!SWIG_IsOK(res2
)) {
25810 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsSameTime" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25813 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsSameTime" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25815 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25817 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25818 result
= (bool)((wxDateTime
const *)arg1
)->IsSameTime((wxDateTime
const &)*arg2
);
25819 wxPyEndAllowThreads(__tstate
);
25820 if (PyErr_Occurred()) SWIG_fail
;
25823 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25831 SWIGINTERN PyObject
*_wrap_DateTime_IsEqualUpTo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25832 PyObject
*resultobj
= 0;
25833 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25834 wxDateTime
*arg2
= 0 ;
25835 wxTimeSpan
*arg3
= 0 ;
25843 PyObject
* obj0
= 0 ;
25844 PyObject
* obj1
= 0 ;
25845 PyObject
* obj2
= 0 ;
25846 char * kwnames
[] = {
25847 (char *) "self",(char *) "dt",(char *) "ts", NULL
25850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DateTime_IsEqualUpTo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25852 if (!SWIG_IsOK(res1
)) {
25853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_IsEqualUpTo" "', expected argument " "1"" of type '" "wxDateTime const *""'");
25855 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25856 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
25857 if (!SWIG_IsOK(res2
)) {
25858 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_IsEqualUpTo" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25861 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsEqualUpTo" "', expected argument " "2"" of type '" "wxDateTime const &""'");
25863 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
25864 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
25865 if (!SWIG_IsOK(res3
)) {
25866 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DateTime_IsEqualUpTo" "', expected argument " "3"" of type '" "wxTimeSpan const &""'");
25869 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_IsEqualUpTo" "', expected argument " "3"" of type '" "wxTimeSpan const &""'");
25871 arg3
= reinterpret_cast< wxTimeSpan
* >(argp3
);
25873 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25874 result
= (bool)((wxDateTime
const *)arg1
)->IsEqualUpTo((wxDateTime
const &)*arg2
,(wxTimeSpan
const &)*arg3
);
25875 wxPyEndAllowThreads(__tstate
);
25876 if (PyErr_Occurred()) SWIG_fail
;
25879 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25887 SWIGINTERN PyObject
*_wrap_DateTime_AddTS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25888 PyObject
*resultobj
= 0;
25889 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25890 wxTimeSpan
*arg2
= 0 ;
25891 wxDateTime
*result
= 0 ;
25896 PyObject
* obj0
= 0 ;
25897 PyObject
* obj1
= 0 ;
25898 char * kwnames
[] = {
25899 (char *) "self",(char *) "diff", NULL
25902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_AddTS",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25903 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25904 if (!SWIG_IsOK(res1
)) {
25905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_AddTS" "', expected argument " "1"" of type '" "wxDateTime *""'");
25907 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25908 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
25909 if (!SWIG_IsOK(res2
)) {
25910 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_AddTS" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
25913 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_AddTS" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
25915 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
25917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25919 wxDateTime
&_result_ref
= (arg1
)->Add((wxTimeSpan
const &)*arg2
);
25920 result
= (wxDateTime
*) &_result_ref
;
25922 wxPyEndAllowThreads(__tstate
);
25923 if (PyErr_Occurred()) SWIG_fail
;
25925 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
25932 SWIGINTERN PyObject
*_wrap_DateTime_AddDS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25933 PyObject
*resultobj
= 0;
25934 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25935 wxDateSpan
*arg2
= 0 ;
25936 wxDateTime
*result
= 0 ;
25941 PyObject
* obj0
= 0 ;
25942 PyObject
* obj1
= 0 ;
25943 char * kwnames
[] = {
25944 (char *) "self",(char *) "diff", NULL
25947 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_AddDS",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25948 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25949 if (!SWIG_IsOK(res1
)) {
25950 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_AddDS" "', expected argument " "1"" of type '" "wxDateTime *""'");
25952 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25953 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
25954 if (!SWIG_IsOK(res2
)) {
25955 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_AddDS" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
25958 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_AddDS" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
25960 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
25962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25964 wxDateTime
&_result_ref
= (arg1
)->Add((wxDateSpan
const &)*arg2
);
25965 result
= (wxDateTime
*) &_result_ref
;
25967 wxPyEndAllowThreads(__tstate
);
25968 if (PyErr_Occurred()) SWIG_fail
;
25970 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
25977 SWIGINTERN PyObject
*_wrap_DateTime_SubtractTS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25978 PyObject
*resultobj
= 0;
25979 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
25980 wxTimeSpan
*arg2
= 0 ;
25981 wxDateTime
*result
= 0 ;
25986 PyObject
* obj0
= 0 ;
25987 PyObject
* obj1
= 0 ;
25988 char * kwnames
[] = {
25989 (char *) "self",(char *) "diff", NULL
25992 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SubtractTS",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25993 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
25994 if (!SWIG_IsOK(res1
)) {
25995 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SubtractTS" "', expected argument " "1"" of type '" "wxDateTime *""'");
25997 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
25998 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
25999 if (!SWIG_IsOK(res2
)) {
26000 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_SubtractTS" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26003 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_SubtractTS" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26005 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
26007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26009 wxDateTime
&_result_ref
= (arg1
)->Subtract((wxTimeSpan
const &)*arg2
);
26010 result
= (wxDateTime
*) &_result_ref
;
26012 wxPyEndAllowThreads(__tstate
);
26013 if (PyErr_Occurred()) SWIG_fail
;
26015 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
26022 SWIGINTERN PyObject
*_wrap_DateTime_SubtractDS(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26023 PyObject
*resultobj
= 0;
26024 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26025 wxDateSpan
*arg2
= 0 ;
26026 wxDateTime
*result
= 0 ;
26031 PyObject
* obj0
= 0 ;
26032 PyObject
* obj1
= 0 ;
26033 char * kwnames
[] = {
26034 (char *) "self",(char *) "diff", NULL
26037 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_SubtractDS",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26038 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26039 if (!SWIG_IsOK(res1
)) {
26040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_SubtractDS" "', expected argument " "1"" of type '" "wxDateTime *""'");
26042 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26043 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
26044 if (!SWIG_IsOK(res2
)) {
26045 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_SubtractDS" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26048 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_SubtractDS" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26050 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
26052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26054 wxDateTime
&_result_ref
= (arg1
)->Subtract((wxDateSpan
const &)*arg2
);
26055 result
= (wxDateTime
*) &_result_ref
;
26057 wxPyEndAllowThreads(__tstate
);
26058 if (PyErr_Occurred()) SWIG_fail
;
26060 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, 0 | 0 );
26067 SWIGINTERN PyObject
*_wrap_DateTime_Subtract(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26068 PyObject
*resultobj
= 0;
26069 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26070 wxDateTime
*arg2
= 0 ;
26076 PyObject
* obj0
= 0 ;
26077 PyObject
* obj1
= 0 ;
26078 char * kwnames
[] = {
26079 (char *) "self",(char *) "dt", NULL
26082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_Subtract",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26084 if (!SWIG_IsOK(res1
)) {
26085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_Subtract" "', expected argument " "1"" of type '" "wxDateTime const *""'");
26087 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26088 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
26089 if (!SWIG_IsOK(res2
)) {
26090 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime_Subtract" "', expected argument " "2"" of type '" "wxDateTime const &""'");
26093 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_Subtract" "', expected argument " "2"" of type '" "wxDateTime const &""'");
26095 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26098 result
= ((wxDateTime
const *)arg1
)->Subtract((wxDateTime
const &)*arg2
);
26099 wxPyEndAllowThreads(__tstate
);
26100 if (PyErr_Occurred()) SWIG_fail
;
26102 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
26109 SWIGINTERN PyObject
*_wrap_DateTime___iadd____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26110 PyObject
*resultobj
= 0;
26111 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26112 wxTimeSpan
*arg2
= 0 ;
26113 wxDateTime
*result
= 0 ;
26119 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26120 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, SWIG_POINTER_DISOWN
| 0 );
26121 if (!SWIG_IsOK(res1
)) {
26122 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___iadd__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26124 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26125 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
26126 if (!SWIG_IsOK(res2
)) {
26127 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___iadd__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26130 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___iadd__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26132 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
26134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26136 wxDateTime
&_result_ref
= (arg1
)->operator +=((wxTimeSpan
const &)*arg2
);
26137 result
= (wxDateTime
*) &_result_ref
;
26139 wxPyEndAllowThreads(__tstate
);
26140 if (PyErr_Occurred()) SWIG_fail
;
26142 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26149 SWIGINTERN PyObject
*_wrap_DateTime___iadd____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26150 PyObject
*resultobj
= 0;
26151 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26152 wxDateSpan
*arg2
= 0 ;
26153 wxDateTime
*result
= 0 ;
26159 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26160 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, SWIG_POINTER_DISOWN
| 0 );
26161 if (!SWIG_IsOK(res1
)) {
26162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___iadd__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26164 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26165 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
26166 if (!SWIG_IsOK(res2
)) {
26167 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___iadd__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26170 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___iadd__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26172 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
26174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26176 wxDateTime
&_result_ref
= (arg1
)->operator +=((wxDateSpan
const &)*arg2
);
26177 result
= (wxDateTime
*) &_result_ref
;
26179 wxPyEndAllowThreads(__tstate
);
26180 if (PyErr_Occurred()) SWIG_fail
;
26182 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26189 SWIGINTERN PyObject
*_wrap_DateTime___iadd__(PyObject
*self
, PyObject
*args
) {
26193 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DateTime___iadd__",0,2,argv
))) SWIG_fail
;
26198 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxTimeSpan
, 0);
26199 _v
= SWIG_CheckState(res
);
26201 if (!_v
) goto check_1
;
26202 return _wrap_DateTime___iadd____SWIG_0(self
, argc
, argv
);
26207 return _wrap_DateTime___iadd____SWIG_1(self
, argc
, argv
);
26211 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'DateTime___iadd__'");
26216 SWIGINTERN PyObject
*_wrap_DateTime___isub____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26217 PyObject
*resultobj
= 0;
26218 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26219 wxTimeSpan
*arg2
= 0 ;
26220 wxDateTime
*result
= 0 ;
26226 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26227 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, SWIG_POINTER_DISOWN
| 0 );
26228 if (!SWIG_IsOK(res1
)) {
26229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___isub__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26231 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26232 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
26233 if (!SWIG_IsOK(res2
)) {
26234 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___isub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26237 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___isub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26239 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
26241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26243 wxDateTime
&_result_ref
= (arg1
)->operator -=((wxTimeSpan
const &)*arg2
);
26244 result
= (wxDateTime
*) &_result_ref
;
26246 wxPyEndAllowThreads(__tstate
);
26247 if (PyErr_Occurred()) SWIG_fail
;
26249 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26256 SWIGINTERN PyObject
*_wrap_DateTime___isub____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26257 PyObject
*resultobj
= 0;
26258 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26259 wxDateSpan
*arg2
= 0 ;
26260 wxDateTime
*result
= 0 ;
26266 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26267 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, SWIG_POINTER_DISOWN
| 0 );
26268 if (!SWIG_IsOK(res1
)) {
26269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___isub__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26271 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26272 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
26273 if (!SWIG_IsOK(res2
)) {
26274 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___isub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26277 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___isub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26279 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
26281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26283 wxDateTime
&_result_ref
= (arg1
)->operator -=((wxDateSpan
const &)*arg2
);
26284 result
= (wxDateTime
*) &_result_ref
;
26286 wxPyEndAllowThreads(__tstate
);
26287 if (PyErr_Occurred()) SWIG_fail
;
26289 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26296 SWIGINTERN PyObject
*_wrap_DateTime___isub__(PyObject
*self
, PyObject
*args
) {
26300 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DateTime___isub__",0,2,argv
))) SWIG_fail
;
26305 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxTimeSpan
, 0);
26306 _v
= SWIG_CheckState(res
);
26308 if (!_v
) goto check_1
;
26309 return _wrap_DateTime___isub____SWIG_0(self
, argc
, argv
);
26314 return _wrap_DateTime___isub____SWIG_1(self
, argc
, argv
);
26318 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'DateTime___isub__'");
26323 SWIGINTERN PyObject
*_wrap_DateTime___add____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26324 PyObject
*resultobj
= 0;
26325 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26326 wxTimeSpan
*arg2
= 0 ;
26333 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26334 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26335 if (!SWIG_IsOK(res1
)) {
26336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___add__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26338 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26339 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
26340 if (!SWIG_IsOK(res2
)) {
26341 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___add__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26344 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___add__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26346 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
26348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26349 result
= wxDateTime___add____SWIG_0(arg1
,(wxTimeSpan
const &)*arg2
);
26350 wxPyEndAllowThreads(__tstate
);
26351 if (PyErr_Occurred()) SWIG_fail
;
26353 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26360 SWIGINTERN PyObject
*_wrap_DateTime___add____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26361 PyObject
*resultobj
= 0;
26362 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26363 wxDateSpan
*arg2
= 0 ;
26370 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26371 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26372 if (!SWIG_IsOK(res1
)) {
26373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___add__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26375 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26376 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
26377 if (!SWIG_IsOK(res2
)) {
26378 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___add__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26381 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___add__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26383 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
26385 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26386 result
= wxDateTime___add____SWIG_1(arg1
,(wxDateSpan
const &)*arg2
);
26387 wxPyEndAllowThreads(__tstate
);
26388 if (PyErr_Occurred()) SWIG_fail
;
26390 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26397 SWIGINTERN PyObject
*_wrap_DateTime___add__(PyObject
*self
, PyObject
*args
) {
26401 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DateTime___add__",0,2,argv
))) SWIG_fail
;
26406 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxTimeSpan
, 0);
26407 _v
= SWIG_CheckState(res
);
26409 if (!_v
) goto check_1
;
26410 return _wrap_DateTime___add____SWIG_0(self
, argc
, argv
);
26415 return _wrap_DateTime___add____SWIG_1(self
, argc
, argv
);
26419 Py_INCREF(Py_NotImplemented
);
26420 return Py_NotImplemented
;
26424 SWIGINTERN PyObject
*_wrap_DateTime___sub____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26425 PyObject
*resultobj
= 0;
26426 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26427 wxDateTime
*arg2
= 0 ;
26434 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26435 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26436 if (!SWIG_IsOK(res1
)) {
26437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___sub__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26439 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26440 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDateTime
, 0 | 0);
26441 if (!SWIG_IsOK(res2
)) {
26442 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxDateTime const &""'");
26445 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxDateTime const &""'");
26447 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26449 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26450 result
= wxDateTime___sub____SWIG_0(arg1
,(wxDateTime
const &)*arg2
);
26451 wxPyEndAllowThreads(__tstate
);
26452 if (PyErr_Occurred()) SWIG_fail
;
26454 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
26461 SWIGINTERN PyObject
*_wrap_DateTime___sub____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26462 PyObject
*resultobj
= 0;
26463 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26464 wxTimeSpan
*arg2
= 0 ;
26471 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26473 if (!SWIG_IsOK(res1
)) {
26474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___sub__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26476 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26477 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
26478 if (!SWIG_IsOK(res2
)) {
26479 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26482 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
26484 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
26486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26487 result
= wxDateTime___sub____SWIG_1(arg1
,(wxTimeSpan
const &)*arg2
);
26488 wxPyEndAllowThreads(__tstate
);
26489 if (PyErr_Occurred()) SWIG_fail
;
26491 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26498 SWIGINTERN PyObject
*_wrap_DateTime___sub____SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
26499 PyObject
*resultobj
= 0;
26500 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26501 wxDateSpan
*arg2
= 0 ;
26508 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
26509 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26510 if (!SWIG_IsOK(res1
)) {
26511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___sub__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26513 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26514 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
26515 if (!SWIG_IsOK(res2
)) {
26516 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26519 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime___sub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
26521 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
26523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26524 result
= wxDateTime___sub____SWIG_2(arg1
,(wxDateSpan
const &)*arg2
);
26525 wxPyEndAllowThreads(__tstate
);
26526 if (PyErr_Occurred()) SWIG_fail
;
26528 resultobj
= SWIG_NewPointerObj((new wxDateTime(static_cast< const wxDateTime
& >(result
))), SWIGTYPE_p_wxDateTime
, SWIG_POINTER_OWN
| 0 );
26535 SWIGINTERN PyObject
*_wrap_DateTime___sub__(PyObject
*self
, PyObject
*args
) {
26539 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DateTime___sub__",0,2,argv
))) SWIG_fail
;
26544 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxDateTime
, 0);
26545 _v
= SWIG_CheckState(res
);
26547 if (!_v
) goto check_1
;
26548 return _wrap_DateTime___sub____SWIG_0(self
, argc
, argv
);
26555 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxTimeSpan
, 0);
26556 _v
= SWIG_CheckState(res
);
26558 if (!_v
) goto check_2
;
26559 return _wrap_DateTime___sub____SWIG_1(self
, argc
, argv
);
26564 return _wrap_DateTime___sub____SWIG_2(self
, argc
, argv
);
26568 Py_INCREF(Py_NotImplemented
);
26569 return Py_NotImplemented
;
26573 SWIGINTERN PyObject
*_wrap_DateTime___lt__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26574 PyObject
*resultobj
= 0;
26575 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26576 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26582 PyObject
* obj0
= 0 ;
26583 PyObject
* obj1
= 0 ;
26584 char * kwnames
[] = {
26585 (char *) "self",(char *) "other", NULL
26588 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___lt__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26589 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26590 if (!SWIG_IsOK(res1
)) {
26591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___lt__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26593 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26594 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26595 if (!SWIG_IsOK(res2
)) {
26596 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___lt__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26598 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26601 result
= (bool)wxDateTime___lt__(arg1
,(wxDateTime
const *)arg2
);
26602 wxPyEndAllowThreads(__tstate
);
26603 if (PyErr_Occurred()) SWIG_fail
;
26606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26614 SWIGINTERN PyObject
*_wrap_DateTime___le__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26615 PyObject
*resultobj
= 0;
26616 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26617 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26623 PyObject
* obj0
= 0 ;
26624 PyObject
* obj1
= 0 ;
26625 char * kwnames
[] = {
26626 (char *) "self",(char *) "other", NULL
26629 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___le__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26630 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26631 if (!SWIG_IsOK(res1
)) {
26632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___le__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26634 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26635 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26636 if (!SWIG_IsOK(res2
)) {
26637 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___le__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26639 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26641 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26642 result
= (bool)wxDateTime___le__(arg1
,(wxDateTime
const *)arg2
);
26643 wxPyEndAllowThreads(__tstate
);
26644 if (PyErr_Occurred()) SWIG_fail
;
26647 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26655 SWIGINTERN PyObject
*_wrap_DateTime___gt__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26656 PyObject
*resultobj
= 0;
26657 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26658 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26664 PyObject
* obj0
= 0 ;
26665 PyObject
* obj1
= 0 ;
26666 char * kwnames
[] = {
26667 (char *) "self",(char *) "other", NULL
26670 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___gt__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26671 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26672 if (!SWIG_IsOK(res1
)) {
26673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___gt__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26675 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26676 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26677 if (!SWIG_IsOK(res2
)) {
26678 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___gt__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26680 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26683 result
= (bool)wxDateTime___gt__(arg1
,(wxDateTime
const *)arg2
);
26684 wxPyEndAllowThreads(__tstate
);
26685 if (PyErr_Occurred()) SWIG_fail
;
26688 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26696 SWIGINTERN PyObject
*_wrap_DateTime___ge__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26697 PyObject
*resultobj
= 0;
26698 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26699 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26705 PyObject
* obj0
= 0 ;
26706 PyObject
* obj1
= 0 ;
26707 char * kwnames
[] = {
26708 (char *) "self",(char *) "other", NULL
26711 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___ge__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26712 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26713 if (!SWIG_IsOK(res1
)) {
26714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___ge__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26716 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26717 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26718 if (!SWIG_IsOK(res2
)) {
26719 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___ge__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26721 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26723 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26724 result
= (bool)wxDateTime___ge__(arg1
,(wxDateTime
const *)arg2
);
26725 wxPyEndAllowThreads(__tstate
);
26726 if (PyErr_Occurred()) SWIG_fail
;
26729 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26737 SWIGINTERN PyObject
*_wrap_DateTime___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26738 PyObject
*resultobj
= 0;
26739 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26740 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26746 PyObject
* obj0
= 0 ;
26747 PyObject
* obj1
= 0 ;
26748 char * kwnames
[] = {
26749 (char *) "self",(char *) "other", NULL
26752 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26753 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26754 if (!SWIG_IsOK(res1
)) {
26755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___eq__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26757 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26758 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26759 if (!SWIG_IsOK(res2
)) {
26760 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___eq__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26762 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26765 result
= (bool)wxDateTime___eq__(arg1
,(wxDateTime
const *)arg2
);
26766 wxPyEndAllowThreads(__tstate
);
26767 if (PyErr_Occurred()) SWIG_fail
;
26770 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26778 SWIGINTERN PyObject
*_wrap_DateTime___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26779 PyObject
*resultobj
= 0;
26780 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26781 wxDateTime
*arg2
= (wxDateTime
*) 0 ;
26787 PyObject
* obj0
= 0 ;
26788 PyObject
* obj1
= 0 ;
26789 char * kwnames
[] = {
26790 (char *) "self",(char *) "other", NULL
26793 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26794 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26795 if (!SWIG_IsOK(res1
)) {
26796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime___ne__" "', expected argument " "1"" of type '" "wxDateTime *""'");
26798 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26799 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26800 if (!SWIG_IsOK(res2
)) {
26801 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateTime___ne__" "', expected argument " "2"" of type '" "wxDateTime const *""'");
26803 arg2
= reinterpret_cast< wxDateTime
* >(argp2
);
26805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26806 result
= (bool)wxDateTime___ne__(arg1
,(wxDateTime
const *)arg2
);
26807 wxPyEndAllowThreads(__tstate
);
26808 if (PyErr_Occurred()) SWIG_fail
;
26811 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26819 SWIGINTERN PyObject
*_wrap_DateTime_ParseRfc822Date(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26820 PyObject
*resultobj
= 0;
26821 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26822 wxString
*arg2
= 0 ;
26826 bool temp2
= false ;
26827 PyObject
* obj0
= 0 ;
26828 PyObject
* obj1
= 0 ;
26829 char * kwnames
[] = {
26830 (char *) "self",(char *) "date", NULL
26833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_ParseRfc822Date",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26835 if (!SWIG_IsOK(res1
)) {
26836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ParseRfc822Date" "', expected argument " "1"" of type '" "wxDateTime *""'");
26838 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26840 arg2
= wxString_in_helper(obj1
);
26841 if (arg2
== NULL
) SWIG_fail
;
26845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26846 result
= (int)wxDateTime_ParseRfc822Date(arg1
,(wxString
const &)*arg2
);
26847 wxPyEndAllowThreads(__tstate
);
26848 if (PyErr_Occurred()) SWIG_fail
;
26850 resultobj
= SWIG_From_int(static_cast< int >(result
));
26865 SWIGINTERN PyObject
*_wrap_DateTime_ParseFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26866 PyObject
*resultobj
= 0;
26867 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26868 wxString
*arg2
= 0 ;
26869 wxString
const &arg3_defvalue
= wxPyDefaultDateTimeFormat
;
26870 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
26871 wxDateTime
const &arg4_defvalue
= wxDefaultDateTime
;
26872 wxDateTime
*arg4
= (wxDateTime
*) &arg4_defvalue
;
26876 bool temp2
= false ;
26877 bool temp3
= false ;
26880 PyObject
* obj0
= 0 ;
26881 PyObject
* obj1
= 0 ;
26882 PyObject
* obj2
= 0 ;
26883 PyObject
* obj3
= 0 ;
26884 char * kwnames
[] = {
26885 (char *) "self",(char *) "date",(char *) "format",(char *) "dateDef", NULL
26888 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DateTime_ParseFormat",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
26889 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26890 if (!SWIG_IsOK(res1
)) {
26891 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ParseFormat" "', expected argument " "1"" of type '" "wxDateTime *""'");
26893 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26895 arg2
= wxString_in_helper(obj1
);
26896 if (arg2
== NULL
) SWIG_fail
;
26901 arg3
= wxString_in_helper(obj2
);
26902 if (arg3
== NULL
) SWIG_fail
;
26907 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxDateTime
, 0 | 0);
26908 if (!SWIG_IsOK(res4
)) {
26909 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DateTime_ParseFormat" "', expected argument " "4"" of type '" "wxDateTime const &""'");
26912 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateTime_ParseFormat" "', expected argument " "4"" of type '" "wxDateTime const &""'");
26914 arg4
= reinterpret_cast< wxDateTime
* >(argp4
);
26917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26918 result
= (int)wxDateTime_ParseFormat(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxDateTime
const &)*arg4
);
26919 wxPyEndAllowThreads(__tstate
);
26920 if (PyErr_Occurred()) SWIG_fail
;
26922 resultobj
= SWIG_From_int(static_cast< int >(result
));
26945 SWIGINTERN PyObject
*_wrap_DateTime_ParseDateTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26946 PyObject
*resultobj
= 0;
26947 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26948 wxString
*arg2
= 0 ;
26952 bool temp2
= false ;
26953 PyObject
* obj0
= 0 ;
26954 PyObject
* obj1
= 0 ;
26955 char * kwnames
[] = {
26956 (char *) "self",(char *) "datetime", NULL
26959 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_ParseDateTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26960 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
26961 if (!SWIG_IsOK(res1
)) {
26962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ParseDateTime" "', expected argument " "1"" of type '" "wxDateTime *""'");
26964 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
26966 arg2
= wxString_in_helper(obj1
);
26967 if (arg2
== NULL
) SWIG_fail
;
26971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26972 result
= (int)wxDateTime_ParseDateTime(arg1
,(wxString
const &)*arg2
);
26973 wxPyEndAllowThreads(__tstate
);
26974 if (PyErr_Occurred()) SWIG_fail
;
26976 resultobj
= SWIG_From_int(static_cast< int >(result
));
26991 SWIGINTERN PyObject
*_wrap_DateTime_ParseDate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26992 PyObject
*resultobj
= 0;
26993 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
26994 wxString
*arg2
= 0 ;
26998 bool temp2
= false ;
26999 PyObject
* obj0
= 0 ;
27000 PyObject
* obj1
= 0 ;
27001 char * kwnames
[] = {
27002 (char *) "self",(char *) "date", NULL
27005 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_ParseDate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27006 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27007 if (!SWIG_IsOK(res1
)) {
27008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ParseDate" "', expected argument " "1"" of type '" "wxDateTime *""'");
27010 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27012 arg2
= wxString_in_helper(obj1
);
27013 if (arg2
== NULL
) SWIG_fail
;
27017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27018 result
= (int)wxDateTime_ParseDate(arg1
,(wxString
const &)*arg2
);
27019 wxPyEndAllowThreads(__tstate
);
27020 if (PyErr_Occurred()) SWIG_fail
;
27022 resultobj
= SWIG_From_int(static_cast< int >(result
));
27037 SWIGINTERN PyObject
*_wrap_DateTime_ParseTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27038 PyObject
*resultobj
= 0;
27039 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27040 wxString
*arg2
= 0 ;
27044 bool temp2
= false ;
27045 PyObject
* obj0
= 0 ;
27046 PyObject
* obj1
= 0 ;
27047 char * kwnames
[] = {
27048 (char *) "self",(char *) "time", NULL
27051 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateTime_ParseTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27052 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27053 if (!SWIG_IsOK(res1
)) {
27054 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_ParseTime" "', expected argument " "1"" of type '" "wxDateTime *""'");
27056 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27058 arg2
= wxString_in_helper(obj1
);
27059 if (arg2
== NULL
) SWIG_fail
;
27063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27064 result
= (int)wxDateTime_ParseTime(arg1
,(wxString
const &)*arg2
);
27065 wxPyEndAllowThreads(__tstate
);
27066 if (PyErr_Occurred()) SWIG_fail
;
27068 resultobj
= SWIG_From_int(static_cast< int >(result
));
27083 SWIGINTERN PyObject
*_wrap_DateTime_Format(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27084 PyObject
*resultobj
= 0;
27085 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27086 wxString
const &arg2_defvalue
= wxPyDefaultDateTimeFormat
;
27087 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
27088 wxDateTime::TimeZone
const &arg3_defvalue
= LOCAL_TZ
;
27089 wxDateTime::TimeZone
*arg3
= (wxDateTime::TimeZone
*) &arg3_defvalue
;
27093 bool temp2
= false ;
27094 bool temp3
= false ;
27095 PyObject
* obj0
= 0 ;
27096 PyObject
* obj1
= 0 ;
27097 PyObject
* obj2
= 0 ;
27098 char * kwnames
[] = {
27099 (char *) "self",(char *) "format",(char *) "tz", NULL
27102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:DateTime_Format",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27104 if (!SWIG_IsOK(res1
)) {
27105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_Format" "', expected argument " "1"" of type '" "wxDateTime const *""'");
27107 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27110 arg2
= wxString_in_helper(obj1
);
27111 if (arg2
== NULL
) SWIG_fail
;
27117 arg3
= new wxDateTime::TimeZone((wxDateTime::TZ
)PyInt_AsLong(obj2
));
27122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27123 result
= ((wxDateTime
const *)arg1
)->Format((wxString
const &)*arg2
,(wxDateTime::TimeZone
const &)*arg3
);
27124 wxPyEndAllowThreads(__tstate
);
27125 if (PyErr_Occurred()) SWIG_fail
;
27129 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27131 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27139 if (temp3
) delete arg3
;
27148 if (temp3
) delete arg3
;
27154 SWIGINTERN PyObject
*_wrap_DateTime_FormatDate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27155 PyObject
*resultobj
= 0;
27156 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27160 PyObject
*swig_obj
[1] ;
27162 if (!args
) SWIG_fail
;
27163 swig_obj
[0] = args
;
27164 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27165 if (!SWIG_IsOK(res1
)) {
27166 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FormatDate" "', expected argument " "1"" of type '" "wxDateTime const *""'");
27168 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27171 result
= ((wxDateTime
const *)arg1
)->FormatDate();
27172 wxPyEndAllowThreads(__tstate
);
27173 if (PyErr_Occurred()) SWIG_fail
;
27177 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27179 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27188 SWIGINTERN PyObject
*_wrap_DateTime_FormatTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27189 PyObject
*resultobj
= 0;
27190 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27194 PyObject
*swig_obj
[1] ;
27196 if (!args
) SWIG_fail
;
27197 swig_obj
[0] = args
;
27198 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27199 if (!SWIG_IsOK(res1
)) {
27200 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FormatTime" "', expected argument " "1"" of type '" "wxDateTime const *""'");
27202 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27205 result
= ((wxDateTime
const *)arg1
)->FormatTime();
27206 wxPyEndAllowThreads(__tstate
);
27207 if (PyErr_Occurred()) SWIG_fail
;
27211 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27213 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27222 SWIGINTERN PyObject
*_wrap_DateTime_FormatISODate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27223 PyObject
*resultobj
= 0;
27224 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27228 PyObject
*swig_obj
[1] ;
27230 if (!args
) SWIG_fail
;
27231 swig_obj
[0] = args
;
27232 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27233 if (!SWIG_IsOK(res1
)) {
27234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FormatISODate" "', expected argument " "1"" of type '" "wxDateTime const *""'");
27236 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27239 result
= ((wxDateTime
const *)arg1
)->FormatISODate();
27240 wxPyEndAllowThreads(__tstate
);
27241 if (PyErr_Occurred()) SWIG_fail
;
27245 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27247 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27256 SWIGINTERN PyObject
*_wrap_DateTime_FormatISOTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27257 PyObject
*resultobj
= 0;
27258 wxDateTime
*arg1
= (wxDateTime
*) 0 ;
27262 PyObject
*swig_obj
[1] ;
27264 if (!args
) SWIG_fail
;
27265 swig_obj
[0] = args
;
27266 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateTime
, 0 | 0 );
27267 if (!SWIG_IsOK(res1
)) {
27268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateTime_FormatISOTime" "', expected argument " "1"" of type '" "wxDateTime const *""'");
27270 arg1
= reinterpret_cast< wxDateTime
* >(argp1
);
27272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27273 result
= ((wxDateTime
const *)arg1
)->FormatISOTime();
27274 wxPyEndAllowThreads(__tstate
);
27275 if (PyErr_Occurred()) SWIG_fail
;
27279 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27281 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27290 SWIGINTERN PyObject
*DateTime_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27292 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27293 SWIG_TypeNewClientData(SWIGTYPE_p_wxDateTime
, SWIG_NewClientData(obj
));
27294 return SWIG_Py_Void();
27297 SWIGINTERN PyObject
*DateTime_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27298 return SWIG_Python_InitShadowInstance(args
);
27301 SWIGINTERN PyObject
*_wrap_TimeSpan_Seconds(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27302 PyObject
*resultobj
= 0;
27307 PyObject
* obj0
= 0 ;
27308 char * kwnames
[] = {
27309 (char *) "sec", NULL
27312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TimeSpan_Seconds",kwnames
,&obj0
)) SWIG_fail
;
27313 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27314 if (!SWIG_IsOK(ecode1
)) {
27315 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "TimeSpan_Seconds" "', expected argument " "1"" of type '" "long""'");
27317 arg1
= static_cast< long >(val1
);
27319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27320 result
= wxTimeSpan::Seconds(arg1
);
27321 wxPyEndAllowThreads(__tstate
);
27322 if (PyErr_Occurred()) SWIG_fail
;
27324 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27331 SWIGINTERN PyObject
*_wrap_TimeSpan_Second(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27332 PyObject
*resultobj
= 0;
27335 if (!SWIG_Python_UnpackTuple(args
,"TimeSpan_Second",0,0,0)) SWIG_fail
;
27337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27338 result
= wxTimeSpan::Second();
27339 wxPyEndAllowThreads(__tstate
);
27340 if (PyErr_Occurred()) SWIG_fail
;
27342 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27349 SWIGINTERN PyObject
*_wrap_TimeSpan_Minutes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27350 PyObject
*resultobj
= 0;
27355 PyObject
* obj0
= 0 ;
27356 char * kwnames
[] = {
27357 (char *) "min", NULL
27360 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TimeSpan_Minutes",kwnames
,&obj0
)) SWIG_fail
;
27361 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27362 if (!SWIG_IsOK(ecode1
)) {
27363 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "TimeSpan_Minutes" "', expected argument " "1"" of type '" "long""'");
27365 arg1
= static_cast< long >(val1
);
27367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27368 result
= wxTimeSpan::Minutes(arg1
);
27369 wxPyEndAllowThreads(__tstate
);
27370 if (PyErr_Occurred()) SWIG_fail
;
27372 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27379 SWIGINTERN PyObject
*_wrap_TimeSpan_Minute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27380 PyObject
*resultobj
= 0;
27383 if (!SWIG_Python_UnpackTuple(args
,"TimeSpan_Minute",0,0,0)) SWIG_fail
;
27385 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27386 result
= wxTimeSpan::Minute();
27387 wxPyEndAllowThreads(__tstate
);
27388 if (PyErr_Occurred()) SWIG_fail
;
27390 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27397 SWIGINTERN PyObject
*_wrap_TimeSpan_Hours(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27398 PyObject
*resultobj
= 0;
27403 PyObject
* obj0
= 0 ;
27404 char * kwnames
[] = {
27405 (char *) "hours", NULL
27408 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TimeSpan_Hours",kwnames
,&obj0
)) SWIG_fail
;
27409 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27410 if (!SWIG_IsOK(ecode1
)) {
27411 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "TimeSpan_Hours" "', expected argument " "1"" of type '" "long""'");
27413 arg1
= static_cast< long >(val1
);
27415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27416 result
= wxTimeSpan::Hours(arg1
);
27417 wxPyEndAllowThreads(__tstate
);
27418 if (PyErr_Occurred()) SWIG_fail
;
27420 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27427 SWIGINTERN PyObject
*_wrap_TimeSpan_Hour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27428 PyObject
*resultobj
= 0;
27431 if (!SWIG_Python_UnpackTuple(args
,"TimeSpan_Hour",0,0,0)) SWIG_fail
;
27433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27434 result
= wxTimeSpan::Hour();
27435 wxPyEndAllowThreads(__tstate
);
27436 if (PyErr_Occurred()) SWIG_fail
;
27438 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27445 SWIGINTERN PyObject
*_wrap_TimeSpan_Days(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27446 PyObject
*resultobj
= 0;
27451 PyObject
* obj0
= 0 ;
27452 char * kwnames
[] = {
27453 (char *) "days", NULL
27456 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TimeSpan_Days",kwnames
,&obj0
)) SWIG_fail
;
27457 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27458 if (!SWIG_IsOK(ecode1
)) {
27459 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "TimeSpan_Days" "', expected argument " "1"" of type '" "long""'");
27461 arg1
= static_cast< long >(val1
);
27463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27464 result
= wxTimeSpan::Days(arg1
);
27465 wxPyEndAllowThreads(__tstate
);
27466 if (PyErr_Occurred()) SWIG_fail
;
27468 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27475 SWIGINTERN PyObject
*_wrap_TimeSpan_Day(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27476 PyObject
*resultobj
= 0;
27479 if (!SWIG_Python_UnpackTuple(args
,"TimeSpan_Day",0,0,0)) SWIG_fail
;
27481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27482 result
= wxTimeSpan::Day();
27483 wxPyEndAllowThreads(__tstate
);
27484 if (PyErr_Occurred()) SWIG_fail
;
27486 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27493 SWIGINTERN PyObject
*_wrap_TimeSpan_Weeks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27494 PyObject
*resultobj
= 0;
27499 PyObject
* obj0
= 0 ;
27500 char * kwnames
[] = {
27501 (char *) "days", NULL
27504 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TimeSpan_Weeks",kwnames
,&obj0
)) SWIG_fail
;
27505 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27506 if (!SWIG_IsOK(ecode1
)) {
27507 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "TimeSpan_Weeks" "', expected argument " "1"" of type '" "long""'");
27509 arg1
= static_cast< long >(val1
);
27511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27512 result
= wxTimeSpan::Weeks(arg1
);
27513 wxPyEndAllowThreads(__tstate
);
27514 if (PyErr_Occurred()) SWIG_fail
;
27516 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27523 SWIGINTERN PyObject
*_wrap_TimeSpan_Week(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27524 PyObject
*resultobj
= 0;
27527 if (!SWIG_Python_UnpackTuple(args
,"TimeSpan_Week",0,0,0)) SWIG_fail
;
27529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27530 result
= wxTimeSpan::Week();
27531 wxPyEndAllowThreads(__tstate
);
27532 if (PyErr_Occurred()) SWIG_fail
;
27534 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27541 SWIGINTERN PyObject
*_wrap_new_TimeSpan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27542 PyObject
*resultobj
= 0;
27543 long arg1
= (long) 0 ;
27544 long arg2
= (long) 0 ;
27545 long arg3
= (long) 0 ;
27546 long arg4
= (long) 0 ;
27547 wxTimeSpan
*result
= 0 ;
27556 PyObject
* obj0
= 0 ;
27557 PyObject
* obj1
= 0 ;
27558 PyObject
* obj2
= 0 ;
27559 PyObject
* obj3
= 0 ;
27560 char * kwnames
[] = {
27561 (char *) "hours",(char *) "minutes",(char *) "seconds",(char *) "milliseconds", NULL
27564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_TimeSpan",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
27566 ecode1
= SWIG_AsVal_long(obj0
, &val1
);
27567 if (!SWIG_IsOK(ecode1
)) {
27568 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_TimeSpan" "', expected argument " "1"" of type '" "long""'");
27570 arg1
= static_cast< long >(val1
);
27573 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
27574 if (!SWIG_IsOK(ecode2
)) {
27575 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_TimeSpan" "', expected argument " "2"" of type '" "long""'");
27577 arg2
= static_cast< long >(val2
);
27580 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
27581 if (!SWIG_IsOK(ecode3
)) {
27582 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_TimeSpan" "', expected argument " "3"" of type '" "long""'");
27584 arg3
= static_cast< long >(val3
);
27587 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
27588 if (!SWIG_IsOK(ecode4
)) {
27589 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_TimeSpan" "', expected argument " "4"" of type '" "long""'");
27591 arg4
= static_cast< long >(val4
);
27594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27595 result
= (wxTimeSpan
*)new wxTimeSpan(arg1
,arg2
,arg3
,arg4
);
27596 wxPyEndAllowThreads(__tstate
);
27597 if (PyErr_Occurred()) SWIG_fail
;
27599 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_NEW
| 0 );
27606 SWIGINTERN PyObject
*_wrap_delete_TimeSpan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27607 PyObject
*resultobj
= 0;
27608 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27611 PyObject
*swig_obj
[1] ;
27613 if (!args
) SWIG_fail
;
27614 swig_obj
[0] = args
;
27615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_DISOWN
| 0 );
27616 if (!SWIG_IsOK(res1
)) {
27617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TimeSpan" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27619 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27624 wxPyEndAllowThreads(__tstate
);
27625 if (PyErr_Occurred()) SWIG_fail
;
27627 resultobj
= SWIG_Py_Void();
27634 SWIGINTERN PyObject
*_wrap_TimeSpan_Add(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27635 PyObject
*resultobj
= 0;
27636 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27637 wxTimeSpan
*arg2
= 0 ;
27638 wxTimeSpan
*result
= 0 ;
27643 PyObject
* obj0
= 0 ;
27644 PyObject
* obj1
= 0 ;
27645 char * kwnames
[] = {
27646 (char *) "self",(char *) "diff", NULL
27649 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_Add",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27650 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27651 if (!SWIG_IsOK(res1
)) {
27652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Add" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27654 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27655 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
27656 if (!SWIG_IsOK(res2
)) {
27657 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan_Add" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27660 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan_Add" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27662 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
27664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27666 wxTimeSpan
&_result_ref
= (arg1
)->Add((wxTimeSpan
const &)*arg2
);
27667 result
= (wxTimeSpan
*) &_result_ref
;
27669 wxPyEndAllowThreads(__tstate
);
27670 if (PyErr_Occurred()) SWIG_fail
;
27672 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27679 SWIGINTERN PyObject
*_wrap_TimeSpan_Subtract(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27680 PyObject
*resultobj
= 0;
27681 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27682 wxTimeSpan
*arg2
= 0 ;
27683 wxTimeSpan
*result
= 0 ;
27688 PyObject
* obj0
= 0 ;
27689 PyObject
* obj1
= 0 ;
27690 char * kwnames
[] = {
27691 (char *) "self",(char *) "diff", NULL
27694 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_Subtract",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27695 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27696 if (!SWIG_IsOK(res1
)) {
27697 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Subtract" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27699 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27700 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
27701 if (!SWIG_IsOK(res2
)) {
27702 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan_Subtract" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27705 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan_Subtract" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27707 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
27709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27711 wxTimeSpan
&_result_ref
= (arg1
)->Subtract((wxTimeSpan
const &)*arg2
);
27712 result
= (wxTimeSpan
*) &_result_ref
;
27714 wxPyEndAllowThreads(__tstate
);
27715 if (PyErr_Occurred()) SWIG_fail
;
27717 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27724 SWIGINTERN PyObject
*_wrap_TimeSpan_Multiply(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27725 PyObject
*resultobj
= 0;
27726 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27728 wxTimeSpan
*result
= 0 ;
27733 PyObject
* obj0
= 0 ;
27734 PyObject
* obj1
= 0 ;
27735 char * kwnames
[] = {
27736 (char *) "self",(char *) "n", NULL
27739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_Multiply",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27741 if (!SWIG_IsOK(res1
)) {
27742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Multiply" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27744 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27745 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27746 if (!SWIG_IsOK(ecode2
)) {
27747 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TimeSpan_Multiply" "', expected argument " "2"" of type '" "int""'");
27749 arg2
= static_cast< int >(val2
);
27751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27753 wxTimeSpan
&_result_ref
= (arg1
)->Multiply(arg2
);
27754 result
= (wxTimeSpan
*) &_result_ref
;
27756 wxPyEndAllowThreads(__tstate
);
27757 if (PyErr_Occurred()) SWIG_fail
;
27759 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27766 SWIGINTERN PyObject
*_wrap_TimeSpan_Neg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27767 PyObject
*resultobj
= 0;
27768 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27769 wxTimeSpan
*result
= 0 ;
27772 PyObject
*swig_obj
[1] ;
27774 if (!args
) SWIG_fail
;
27775 swig_obj
[0] = args
;
27776 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27777 if (!SWIG_IsOK(res1
)) {
27778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Neg" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27780 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27784 wxTimeSpan
&_result_ref
= (arg1
)->Neg();
27785 result
= (wxTimeSpan
*) &_result_ref
;
27787 wxPyEndAllowThreads(__tstate
);
27788 if (PyErr_Occurred()) SWIG_fail
;
27790 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27797 SWIGINTERN PyObject
*_wrap_TimeSpan_Abs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27798 PyObject
*resultobj
= 0;
27799 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27803 PyObject
*swig_obj
[1] ;
27805 if (!args
) SWIG_fail
;
27806 swig_obj
[0] = args
;
27807 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27808 if (!SWIG_IsOK(res1
)) {
27809 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Abs" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
27811 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27814 result
= ((wxTimeSpan
const *)arg1
)->Abs();
27815 wxPyEndAllowThreads(__tstate
);
27816 if (PyErr_Occurred()) SWIG_fail
;
27818 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27825 SWIGINTERN PyObject
*_wrap_TimeSpan___iadd__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27826 PyObject
*resultobj
= 0;
27827 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27828 wxTimeSpan
*arg2
= 0 ;
27829 wxTimeSpan
*result
= 0 ;
27834 PyObject
* obj0
= 0 ;
27835 PyObject
* obj1
= 0 ;
27836 char * kwnames
[] = {
27837 (char *) "self",(char *) "diff", NULL
27840 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___iadd__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_DISOWN
| 0 );
27842 if (!SWIG_IsOK(res1
)) {
27843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___iadd__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27845 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27846 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
27847 if (!SWIG_IsOK(res2
)) {
27848 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___iadd__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27851 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan___iadd__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27853 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
27855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27857 wxTimeSpan
&_result_ref
= (arg1
)->operator +=((wxTimeSpan
const &)*arg2
);
27858 result
= (wxTimeSpan
*) &_result_ref
;
27860 wxPyEndAllowThreads(__tstate
);
27861 if (PyErr_Occurred()) SWIG_fail
;
27863 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27870 SWIGINTERN PyObject
*_wrap_TimeSpan___isub__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27871 PyObject
*resultobj
= 0;
27872 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27873 wxTimeSpan
*arg2
= 0 ;
27874 wxTimeSpan
*result
= 0 ;
27879 PyObject
* obj0
= 0 ;
27880 PyObject
* obj1
= 0 ;
27881 char * kwnames
[] = {
27882 (char *) "self",(char *) "diff", NULL
27885 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___isub__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27886 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_DISOWN
| 0 );
27887 if (!SWIG_IsOK(res1
)) {
27888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___isub__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27890 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27891 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
27892 if (!SWIG_IsOK(res2
)) {
27893 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___isub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27896 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan___isub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
27898 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
27900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27902 wxTimeSpan
&_result_ref
= (arg1
)->operator -=((wxTimeSpan
const &)*arg2
);
27903 result
= (wxTimeSpan
*) &_result_ref
;
27905 wxPyEndAllowThreads(__tstate
);
27906 if (PyErr_Occurred()) SWIG_fail
;
27908 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27915 SWIGINTERN PyObject
*_wrap_TimeSpan___imul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27916 PyObject
*resultobj
= 0;
27917 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27919 wxTimeSpan
*result
= 0 ;
27924 PyObject
* obj0
= 0 ;
27925 PyObject
* obj1
= 0 ;
27926 char * kwnames
[] = {
27927 (char *) "self",(char *) "n", NULL
27930 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___imul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27931 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_DISOWN
| 0 );
27932 if (!SWIG_IsOK(res1
)) {
27933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___imul__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27935 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27936 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27937 if (!SWIG_IsOK(ecode2
)) {
27938 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TimeSpan___imul__" "', expected argument " "2"" of type '" "int""'");
27940 arg2
= static_cast< int >(val2
);
27942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27944 wxTimeSpan
&_result_ref
= (arg1
)->operator *=(arg2
);
27945 result
= (wxTimeSpan
*) &_result_ref
;
27947 wxPyEndAllowThreads(__tstate
);
27948 if (PyErr_Occurred()) SWIG_fail
;
27950 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
27957 SWIGINTERN PyObject
*_wrap_TimeSpan___neg__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27958 PyObject
*resultobj
= 0;
27959 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27960 wxTimeSpan
*result
= 0 ;
27963 PyObject
*swig_obj
[1] ;
27965 if (!args
) SWIG_fail
;
27966 swig_obj
[0] = args
;
27967 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27968 if (!SWIG_IsOK(res1
)) {
27969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___neg__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
27971 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
27973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27975 wxTimeSpan
&_result_ref
= (arg1
)->operator -();
27976 result
= (wxTimeSpan
*) &_result_ref
;
27978 wxPyEndAllowThreads(__tstate
);
27979 if (PyErr_Occurred()) SWIG_fail
;
27981 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
27988 SWIGINTERN PyObject
*_wrap_TimeSpan___add__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27989 PyObject
*resultobj
= 0;
27990 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
27991 wxTimeSpan
*arg2
= 0 ;
27997 PyObject
* obj0
= 0 ;
27998 PyObject
* obj1
= 0 ;
27999 char * kwnames
[] = {
28000 (char *) "self",(char *) "other", NULL
28003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___add__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28004 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28005 if (!SWIG_IsOK(res1
)) {
28006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___add__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28008 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28009 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
28010 if (!SWIG_IsOK(res2
)) {
28011 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___add__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28014 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan___add__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28016 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28019 result
= wxTimeSpan___add__(arg1
,(wxTimeSpan
const &)*arg2
);
28020 wxPyEndAllowThreads(__tstate
);
28021 if (PyErr_Occurred()) SWIG_fail
;
28023 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
28030 SWIGINTERN PyObject
*_wrap_TimeSpan___sub__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28031 PyObject
*resultobj
= 0;
28032 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28033 wxTimeSpan
*arg2
= 0 ;
28039 PyObject
* obj0
= 0 ;
28040 PyObject
* obj1
= 0 ;
28041 char * kwnames
[] = {
28042 (char *) "self",(char *) "other", NULL
28045 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___sub__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28046 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28047 if (!SWIG_IsOK(res1
)) {
28048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___sub__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28050 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28051 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
28052 if (!SWIG_IsOK(res2
)) {
28053 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___sub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28056 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan___sub__" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28058 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28060 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28061 result
= wxTimeSpan___sub__(arg1
,(wxTimeSpan
const &)*arg2
);
28062 wxPyEndAllowThreads(__tstate
);
28063 if (PyErr_Occurred()) SWIG_fail
;
28065 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
28072 SWIGINTERN PyObject
*_wrap_TimeSpan___mul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28073 PyObject
*resultobj
= 0;
28074 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28081 PyObject
* obj0
= 0 ;
28082 PyObject
* obj1
= 0 ;
28083 char * kwnames
[] = {
28084 (char *) "self",(char *) "n", NULL
28087 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___mul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28088 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28089 if (!SWIG_IsOK(res1
)) {
28090 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___mul__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28092 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28093 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28094 if (!SWIG_IsOK(ecode2
)) {
28095 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TimeSpan___mul__" "', expected argument " "2"" of type '" "int""'");
28097 arg2
= static_cast< int >(val2
);
28099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28100 result
= wxTimeSpan___mul__(arg1
,arg2
);
28101 wxPyEndAllowThreads(__tstate
);
28102 if (PyErr_Occurred()) SWIG_fail
;
28104 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
28111 SWIGINTERN PyObject
*_wrap_TimeSpan___rmul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28112 PyObject
*resultobj
= 0;
28113 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28120 PyObject
* obj0
= 0 ;
28121 PyObject
* obj1
= 0 ;
28122 char * kwnames
[] = {
28123 (char *) "self",(char *) "n", NULL
28126 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___rmul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28127 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28128 if (!SWIG_IsOK(res1
)) {
28129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___rmul__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28131 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28132 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28133 if (!SWIG_IsOK(ecode2
)) {
28134 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TimeSpan___rmul__" "', expected argument " "2"" of type '" "int""'");
28136 arg2
= static_cast< int >(val2
);
28138 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28139 result
= wxTimeSpan___rmul__(arg1
,arg2
);
28140 wxPyEndAllowThreads(__tstate
);
28141 if (PyErr_Occurred()) SWIG_fail
;
28143 resultobj
= SWIG_NewPointerObj((new wxTimeSpan(static_cast< const wxTimeSpan
& >(result
))), SWIGTYPE_p_wxTimeSpan
, SWIG_POINTER_OWN
| 0 );
28150 SWIGINTERN PyObject
*_wrap_TimeSpan___lt__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28151 PyObject
*resultobj
= 0;
28152 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28153 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28159 PyObject
* obj0
= 0 ;
28160 PyObject
* obj1
= 0 ;
28161 char * kwnames
[] = {
28162 (char *) "self",(char *) "other", NULL
28165 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___lt__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28166 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28167 if (!SWIG_IsOK(res1
)) {
28168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___lt__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28170 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28171 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28172 if (!SWIG_IsOK(res2
)) {
28173 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___lt__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28175 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28177 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28178 result
= (bool)wxTimeSpan___lt__(arg1
,(wxTimeSpan
const *)arg2
);
28179 wxPyEndAllowThreads(__tstate
);
28180 if (PyErr_Occurred()) SWIG_fail
;
28183 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28191 SWIGINTERN PyObject
*_wrap_TimeSpan___le__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28192 PyObject
*resultobj
= 0;
28193 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28194 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28200 PyObject
* obj0
= 0 ;
28201 PyObject
* obj1
= 0 ;
28202 char * kwnames
[] = {
28203 (char *) "self",(char *) "other", NULL
28206 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___le__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28207 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28208 if (!SWIG_IsOK(res1
)) {
28209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___le__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28211 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28212 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28213 if (!SWIG_IsOK(res2
)) {
28214 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___le__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28216 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28219 result
= (bool)wxTimeSpan___le__(arg1
,(wxTimeSpan
const *)arg2
);
28220 wxPyEndAllowThreads(__tstate
);
28221 if (PyErr_Occurred()) SWIG_fail
;
28224 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28232 SWIGINTERN PyObject
*_wrap_TimeSpan___gt__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28233 PyObject
*resultobj
= 0;
28234 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28235 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28241 PyObject
* obj0
= 0 ;
28242 PyObject
* obj1
= 0 ;
28243 char * kwnames
[] = {
28244 (char *) "self",(char *) "other", NULL
28247 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___gt__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28248 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28249 if (!SWIG_IsOK(res1
)) {
28250 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___gt__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28252 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28253 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28254 if (!SWIG_IsOK(res2
)) {
28255 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___gt__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28257 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28260 result
= (bool)wxTimeSpan___gt__(arg1
,(wxTimeSpan
const *)arg2
);
28261 wxPyEndAllowThreads(__tstate
);
28262 if (PyErr_Occurred()) SWIG_fail
;
28265 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28273 SWIGINTERN PyObject
*_wrap_TimeSpan___ge__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28274 PyObject
*resultobj
= 0;
28275 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28276 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28282 PyObject
* obj0
= 0 ;
28283 PyObject
* obj1
= 0 ;
28284 char * kwnames
[] = {
28285 (char *) "self",(char *) "other", NULL
28288 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___ge__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28289 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28290 if (!SWIG_IsOK(res1
)) {
28291 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___ge__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28293 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28294 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28295 if (!SWIG_IsOK(res2
)) {
28296 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___ge__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28298 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28301 result
= (bool)wxTimeSpan___ge__(arg1
,(wxTimeSpan
const *)arg2
);
28302 wxPyEndAllowThreads(__tstate
);
28303 if (PyErr_Occurred()) SWIG_fail
;
28306 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28314 SWIGINTERN PyObject
*_wrap_TimeSpan___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28315 PyObject
*resultobj
= 0;
28316 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28317 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28323 PyObject
* obj0
= 0 ;
28324 PyObject
* obj1
= 0 ;
28325 char * kwnames
[] = {
28326 (char *) "self",(char *) "other", NULL
28329 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28330 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28331 if (!SWIG_IsOK(res1
)) {
28332 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___eq__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28334 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28335 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28336 if (!SWIG_IsOK(res2
)) {
28337 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___eq__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28339 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28342 result
= (bool)wxTimeSpan___eq__(arg1
,(wxTimeSpan
const *)arg2
);
28343 wxPyEndAllowThreads(__tstate
);
28344 if (PyErr_Occurred()) SWIG_fail
;
28347 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28355 SWIGINTERN PyObject
*_wrap_TimeSpan___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28356 PyObject
*resultobj
= 0;
28357 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28358 wxTimeSpan
*arg2
= (wxTimeSpan
*) 0 ;
28364 PyObject
* obj0
= 0 ;
28365 PyObject
* obj1
= 0 ;
28366 char * kwnames
[] = {
28367 (char *) "self",(char *) "other", NULL
28370 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28371 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28372 if (!SWIG_IsOK(res1
)) {
28373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan___ne__" "', expected argument " "1"" of type '" "wxTimeSpan *""'");
28375 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28376 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28377 if (!SWIG_IsOK(res2
)) {
28378 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan___ne__" "', expected argument " "2"" of type '" "wxTimeSpan const *""'");
28380 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28383 result
= (bool)wxTimeSpan___ne__(arg1
,(wxTimeSpan
const *)arg2
);
28384 wxPyEndAllowThreads(__tstate
);
28385 if (PyErr_Occurred()) SWIG_fail
;
28388 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28396 SWIGINTERN PyObject
*_wrap_TimeSpan_IsNull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28397 PyObject
*resultobj
= 0;
28398 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28402 PyObject
*swig_obj
[1] ;
28404 if (!args
) SWIG_fail
;
28405 swig_obj
[0] = args
;
28406 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28407 if (!SWIG_IsOK(res1
)) {
28408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsNull" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28410 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28413 result
= (bool)((wxTimeSpan
const *)arg1
)->IsNull();
28414 wxPyEndAllowThreads(__tstate
);
28415 if (PyErr_Occurred()) SWIG_fail
;
28418 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28426 SWIGINTERN PyObject
*_wrap_TimeSpan_IsPositive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28427 PyObject
*resultobj
= 0;
28428 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28432 PyObject
*swig_obj
[1] ;
28434 if (!args
) SWIG_fail
;
28435 swig_obj
[0] = args
;
28436 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28437 if (!SWIG_IsOK(res1
)) {
28438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsPositive" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28440 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28443 result
= (bool)((wxTimeSpan
const *)arg1
)->IsPositive();
28444 wxPyEndAllowThreads(__tstate
);
28445 if (PyErr_Occurred()) SWIG_fail
;
28448 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28456 SWIGINTERN PyObject
*_wrap_TimeSpan_IsNegative(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28457 PyObject
*resultobj
= 0;
28458 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28462 PyObject
*swig_obj
[1] ;
28464 if (!args
) SWIG_fail
;
28465 swig_obj
[0] = args
;
28466 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28467 if (!SWIG_IsOK(res1
)) {
28468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsNegative" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28470 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28473 result
= (bool)((wxTimeSpan
const *)arg1
)->IsNegative();
28474 wxPyEndAllowThreads(__tstate
);
28475 if (PyErr_Occurred()) SWIG_fail
;
28478 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28486 SWIGINTERN PyObject
*_wrap_TimeSpan_IsEqualTo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28487 PyObject
*resultobj
= 0;
28488 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28489 wxTimeSpan
*arg2
= 0 ;
28495 PyObject
* obj0
= 0 ;
28496 PyObject
* obj1
= 0 ;
28497 char * kwnames
[] = {
28498 (char *) "self",(char *) "ts", NULL
28501 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_IsEqualTo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28502 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28503 if (!SWIG_IsOK(res1
)) {
28504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsEqualTo" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28506 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28507 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
28508 if (!SWIG_IsOK(res2
)) {
28509 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan_IsEqualTo" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28512 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan_IsEqualTo" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28514 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28517 result
= (bool)((wxTimeSpan
const *)arg1
)->IsEqualTo((wxTimeSpan
const &)*arg2
);
28518 wxPyEndAllowThreads(__tstate
);
28519 if (PyErr_Occurred()) SWIG_fail
;
28522 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28530 SWIGINTERN PyObject
*_wrap_TimeSpan_IsLongerThan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28531 PyObject
*resultobj
= 0;
28532 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28533 wxTimeSpan
*arg2
= 0 ;
28539 PyObject
* obj0
= 0 ;
28540 PyObject
* obj1
= 0 ;
28541 char * kwnames
[] = {
28542 (char *) "self",(char *) "ts", NULL
28545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_IsLongerThan",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28547 if (!SWIG_IsOK(res1
)) {
28548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsLongerThan" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28550 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28551 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
28552 if (!SWIG_IsOK(res2
)) {
28553 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan_IsLongerThan" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28556 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan_IsLongerThan" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28558 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28561 result
= (bool)((wxTimeSpan
const *)arg1
)->IsLongerThan((wxTimeSpan
const &)*arg2
);
28562 wxPyEndAllowThreads(__tstate
);
28563 if (PyErr_Occurred()) SWIG_fail
;
28566 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28574 SWIGINTERN PyObject
*_wrap_TimeSpan_IsShorterThan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28575 PyObject
*resultobj
= 0;
28576 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28577 wxTimeSpan
*arg2
= 0 ;
28583 PyObject
* obj0
= 0 ;
28584 PyObject
* obj1
= 0 ;
28585 char * kwnames
[] = {
28586 (char *) "self",(char *) "t", NULL
28589 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TimeSpan_IsShorterThan",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28590 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28591 if (!SWIG_IsOK(res1
)) {
28592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_IsShorterThan" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28594 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28595 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxTimeSpan
, 0 | 0);
28596 if (!SWIG_IsOK(res2
)) {
28597 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TimeSpan_IsShorterThan" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28600 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TimeSpan_IsShorterThan" "', expected argument " "2"" of type '" "wxTimeSpan const &""'");
28602 arg2
= reinterpret_cast< wxTimeSpan
* >(argp2
);
28604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28605 result
= (bool)((wxTimeSpan
const *)arg1
)->IsShorterThan((wxTimeSpan
const &)*arg2
);
28606 wxPyEndAllowThreads(__tstate
);
28607 if (PyErr_Occurred()) SWIG_fail
;
28610 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28618 SWIGINTERN PyObject
*_wrap_TimeSpan_GetWeeks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28619 PyObject
*resultobj
= 0;
28620 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28624 PyObject
*swig_obj
[1] ;
28626 if (!args
) SWIG_fail
;
28627 swig_obj
[0] = args
;
28628 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28629 if (!SWIG_IsOK(res1
)) {
28630 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetWeeks" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28632 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28635 result
= (int)((wxTimeSpan
const *)arg1
)->GetWeeks();
28636 wxPyEndAllowThreads(__tstate
);
28637 if (PyErr_Occurred()) SWIG_fail
;
28639 resultobj
= SWIG_From_int(static_cast< int >(result
));
28646 SWIGINTERN PyObject
*_wrap_TimeSpan_GetDays(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28647 PyObject
*resultobj
= 0;
28648 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28652 PyObject
*swig_obj
[1] ;
28654 if (!args
) SWIG_fail
;
28655 swig_obj
[0] = args
;
28656 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28657 if (!SWIG_IsOK(res1
)) {
28658 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetDays" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28660 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28663 result
= (int)((wxTimeSpan
const *)arg1
)->GetDays();
28664 wxPyEndAllowThreads(__tstate
);
28665 if (PyErr_Occurred()) SWIG_fail
;
28667 resultobj
= SWIG_From_int(static_cast< int >(result
));
28674 SWIGINTERN PyObject
*_wrap_TimeSpan_GetHours(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28675 PyObject
*resultobj
= 0;
28676 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28680 PyObject
*swig_obj
[1] ;
28682 if (!args
) SWIG_fail
;
28683 swig_obj
[0] = args
;
28684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28685 if (!SWIG_IsOK(res1
)) {
28686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetHours" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28688 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28691 result
= (int)((wxTimeSpan
const *)arg1
)->GetHours();
28692 wxPyEndAllowThreads(__tstate
);
28693 if (PyErr_Occurred()) SWIG_fail
;
28695 resultobj
= SWIG_From_int(static_cast< int >(result
));
28702 SWIGINTERN PyObject
*_wrap_TimeSpan_GetMinutes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28703 PyObject
*resultobj
= 0;
28704 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28708 PyObject
*swig_obj
[1] ;
28710 if (!args
) SWIG_fail
;
28711 swig_obj
[0] = args
;
28712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28713 if (!SWIG_IsOK(res1
)) {
28714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetMinutes" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28716 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28719 result
= (int)((wxTimeSpan
const *)arg1
)->GetMinutes();
28720 wxPyEndAllowThreads(__tstate
);
28721 if (PyErr_Occurred()) SWIG_fail
;
28723 resultobj
= SWIG_From_int(static_cast< int >(result
));
28730 SWIGINTERN PyObject
*_wrap_TimeSpan_GetSeconds(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28731 PyObject
*resultobj
= 0;
28732 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28736 PyObject
*swig_obj
[1] ;
28738 if (!args
) SWIG_fail
;
28739 swig_obj
[0] = args
;
28740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28741 if (!SWIG_IsOK(res1
)) {
28742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetSeconds" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28744 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28747 result
= ((wxTimeSpan
const *)arg1
)->GetSeconds();
28748 wxPyEndAllowThreads(__tstate
);
28749 if (PyErr_Occurred()) SWIG_fail
;
28752 PyObject
*hi
, *lo
, *shifter
, *shifted
;
28753 hi
= PyLong_FromLong( (&result
)->GetHi() );
28754 lo
= PyLong_FromLong( (&result
)->GetLo() );
28755 shifter
= PyLong_FromLong(32);
28756 shifted
= PyNumber_Lshift(hi
, shifter
);
28757 resultobj
= PyNumber_Or(shifted
, lo
);
28760 Py_DECREF(shifter
);
28761 Py_DECREF(shifted
);
28769 SWIGINTERN PyObject
*_wrap_TimeSpan_GetMilliseconds(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28770 PyObject
*resultobj
= 0;
28771 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28775 PyObject
*swig_obj
[1] ;
28777 if (!args
) SWIG_fail
;
28778 swig_obj
[0] = args
;
28779 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28780 if (!SWIG_IsOK(res1
)) {
28781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_GetMilliseconds" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28783 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28786 result
= ((wxTimeSpan
const *)arg1
)->GetMilliseconds();
28787 wxPyEndAllowThreads(__tstate
);
28788 if (PyErr_Occurred()) SWIG_fail
;
28791 PyObject
*hi
, *lo
, *shifter
, *shifted
;
28792 hi
= PyLong_FromLong( (&result
)->GetHi() );
28793 lo
= PyLong_FromLong( (&result
)->GetLo() );
28794 shifter
= PyLong_FromLong(32);
28795 shifted
= PyNumber_Lshift(hi
, shifter
);
28796 resultobj
= PyNumber_Or(shifted
, lo
);
28799 Py_DECREF(shifter
);
28800 Py_DECREF(shifted
);
28808 SWIGINTERN PyObject
*_wrap_TimeSpan_Format(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28809 PyObject
*resultobj
= 0;
28810 wxTimeSpan
*arg1
= (wxTimeSpan
*) 0 ;
28811 wxString
const &arg2_defvalue
= wxPyDefaultTimeSpanFormat
;
28812 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
28816 bool temp2
= false ;
28817 PyObject
* obj0
= 0 ;
28818 PyObject
* obj1
= 0 ;
28819 char * kwnames
[] = {
28820 (char *) "self",(char *) "format", NULL
28823 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TimeSpan_Format",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28824 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTimeSpan
, 0 | 0 );
28825 if (!SWIG_IsOK(res1
)) {
28826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TimeSpan_Format" "', expected argument " "1"" of type '" "wxTimeSpan const *""'");
28828 arg1
= reinterpret_cast< wxTimeSpan
* >(argp1
);
28831 arg2
= wxString_in_helper(obj1
);
28832 if (arg2
== NULL
) SWIG_fail
;
28837 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28838 result
= ((wxTimeSpan
const *)arg1
)->Format((wxString
const &)*arg2
);
28839 wxPyEndAllowThreads(__tstate
);
28840 if (PyErr_Occurred()) SWIG_fail
;
28844 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
28846 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
28863 SWIGINTERN PyObject
*TimeSpan_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28865 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28866 SWIG_TypeNewClientData(SWIGTYPE_p_wxTimeSpan
, SWIG_NewClientData(obj
));
28867 return SWIG_Py_Void();
28870 SWIGINTERN PyObject
*TimeSpan_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28871 return SWIG_Python_InitShadowInstance(args
);
28874 SWIGINTERN PyObject
*_wrap_new_DateSpan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28875 PyObject
*resultobj
= 0;
28876 int arg1
= (int) 0 ;
28877 int arg2
= (int) 0 ;
28878 int arg3
= (int) 0 ;
28879 int arg4
= (int) 0 ;
28880 wxDateSpan
*result
= 0 ;
28889 PyObject
* obj0
= 0 ;
28890 PyObject
* obj1
= 0 ;
28891 PyObject
* obj2
= 0 ;
28892 PyObject
* obj3
= 0 ;
28893 char * kwnames
[] = {
28894 (char *) "years",(char *) "months",(char *) "weeks",(char *) "days", NULL
28897 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_DateSpan",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
28899 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
28900 if (!SWIG_IsOK(ecode1
)) {
28901 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DateSpan" "', expected argument " "1"" of type '" "int""'");
28903 arg1
= static_cast< int >(val1
);
28906 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28907 if (!SWIG_IsOK(ecode2
)) {
28908 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_DateSpan" "', expected argument " "2"" of type '" "int""'");
28910 arg2
= static_cast< int >(val2
);
28913 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28914 if (!SWIG_IsOK(ecode3
)) {
28915 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_DateSpan" "', expected argument " "3"" of type '" "int""'");
28917 arg3
= static_cast< int >(val3
);
28920 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
28921 if (!SWIG_IsOK(ecode4
)) {
28922 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DateSpan" "', expected argument " "4"" of type '" "int""'");
28924 arg4
= static_cast< int >(val4
);
28927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28928 result
= (wxDateSpan
*)new wxDateSpan(arg1
,arg2
,arg3
,arg4
);
28929 wxPyEndAllowThreads(__tstate
);
28930 if (PyErr_Occurred()) SWIG_fail
;
28932 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_NEW
| 0 );
28939 SWIGINTERN PyObject
*_wrap_delete_DateSpan(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28940 PyObject
*resultobj
= 0;
28941 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
28944 PyObject
*swig_obj
[1] ;
28946 if (!args
) SWIG_fail
;
28947 swig_obj
[0] = args
;
28948 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_DISOWN
| 0 );
28949 if (!SWIG_IsOK(res1
)) {
28950 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DateSpan" "', expected argument " "1"" of type '" "wxDateSpan *""'");
28952 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
28954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28957 wxPyEndAllowThreads(__tstate
);
28958 if (PyErr_Occurred()) SWIG_fail
;
28960 resultobj
= SWIG_Py_Void();
28967 SWIGINTERN PyObject
*_wrap_DateSpan_Days(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28968 PyObject
*resultobj
= 0;
28973 PyObject
* obj0
= 0 ;
28974 char * kwnames
[] = {
28975 (char *) "days", NULL
28978 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateSpan_Days",kwnames
,&obj0
)) SWIG_fail
;
28979 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
28980 if (!SWIG_IsOK(ecode1
)) {
28981 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateSpan_Days" "', expected argument " "1"" of type '" "int""'");
28983 arg1
= static_cast< int >(val1
);
28985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28986 result
= wxDateSpan::Days(arg1
);
28987 wxPyEndAllowThreads(__tstate
);
28988 if (PyErr_Occurred()) SWIG_fail
;
28990 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
28997 SWIGINTERN PyObject
*_wrap_DateSpan_Day(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28998 PyObject
*resultobj
= 0;
29001 if (!SWIG_Python_UnpackTuple(args
,"DateSpan_Day",0,0,0)) SWIG_fail
;
29003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29004 result
= wxDateSpan::Day();
29005 wxPyEndAllowThreads(__tstate
);
29006 if (PyErr_Occurred()) SWIG_fail
;
29008 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29015 SWIGINTERN PyObject
*_wrap_DateSpan_Weeks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29016 PyObject
*resultobj
= 0;
29021 PyObject
* obj0
= 0 ;
29022 char * kwnames
[] = {
29023 (char *) "weeks", NULL
29026 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateSpan_Weeks",kwnames
,&obj0
)) SWIG_fail
;
29027 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
29028 if (!SWIG_IsOK(ecode1
)) {
29029 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateSpan_Weeks" "', expected argument " "1"" of type '" "int""'");
29031 arg1
= static_cast< int >(val1
);
29033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29034 result
= wxDateSpan::Weeks(arg1
);
29035 wxPyEndAllowThreads(__tstate
);
29036 if (PyErr_Occurred()) SWIG_fail
;
29038 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29045 SWIGINTERN PyObject
*_wrap_DateSpan_Week(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29046 PyObject
*resultobj
= 0;
29049 if (!SWIG_Python_UnpackTuple(args
,"DateSpan_Week",0,0,0)) SWIG_fail
;
29051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29052 result
= wxDateSpan::Week();
29053 wxPyEndAllowThreads(__tstate
);
29054 if (PyErr_Occurred()) SWIG_fail
;
29056 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29063 SWIGINTERN PyObject
*_wrap_DateSpan_Months(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29064 PyObject
*resultobj
= 0;
29069 PyObject
* obj0
= 0 ;
29070 char * kwnames
[] = {
29071 (char *) "mon", NULL
29074 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateSpan_Months",kwnames
,&obj0
)) SWIG_fail
;
29075 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
29076 if (!SWIG_IsOK(ecode1
)) {
29077 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateSpan_Months" "', expected argument " "1"" of type '" "int""'");
29079 arg1
= static_cast< int >(val1
);
29081 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29082 result
= wxDateSpan::Months(arg1
);
29083 wxPyEndAllowThreads(__tstate
);
29084 if (PyErr_Occurred()) SWIG_fail
;
29086 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29093 SWIGINTERN PyObject
*_wrap_DateSpan_Month(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29094 PyObject
*resultobj
= 0;
29097 if (!SWIG_Python_UnpackTuple(args
,"DateSpan_Month",0,0,0)) SWIG_fail
;
29099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29100 result
= wxDateSpan::Month();
29101 wxPyEndAllowThreads(__tstate
);
29102 if (PyErr_Occurred()) SWIG_fail
;
29104 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29111 SWIGINTERN PyObject
*_wrap_DateSpan_Years(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29112 PyObject
*resultobj
= 0;
29117 PyObject
* obj0
= 0 ;
29118 char * kwnames
[] = {
29119 (char *) "years", NULL
29122 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DateSpan_Years",kwnames
,&obj0
)) SWIG_fail
;
29123 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
29124 if (!SWIG_IsOK(ecode1
)) {
29125 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "DateSpan_Years" "', expected argument " "1"" of type '" "int""'");
29127 arg1
= static_cast< int >(val1
);
29129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29130 result
= wxDateSpan::Years(arg1
);
29131 wxPyEndAllowThreads(__tstate
);
29132 if (PyErr_Occurred()) SWIG_fail
;
29134 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29141 SWIGINTERN PyObject
*_wrap_DateSpan_Year(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29142 PyObject
*resultobj
= 0;
29145 if (!SWIG_Python_UnpackTuple(args
,"DateSpan_Year",0,0,0)) SWIG_fail
;
29147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29148 result
= wxDateSpan::Year();
29149 wxPyEndAllowThreads(__tstate
);
29150 if (PyErr_Occurred()) SWIG_fail
;
29152 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29159 SWIGINTERN PyObject
*_wrap_DateSpan_SetYears(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29160 PyObject
*resultobj
= 0;
29161 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29163 wxDateSpan
*result
= 0 ;
29168 PyObject
* obj0
= 0 ;
29169 PyObject
* obj1
= 0 ;
29170 char * kwnames
[] = {
29171 (char *) "self",(char *) "n", NULL
29174 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_SetYears",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29175 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29176 if (!SWIG_IsOK(res1
)) {
29177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_SetYears" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29179 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29180 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29181 if (!SWIG_IsOK(ecode2
)) {
29182 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan_SetYears" "', expected argument " "2"" of type '" "int""'");
29184 arg2
= static_cast< int >(val2
);
29186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29188 wxDateSpan
&_result_ref
= (arg1
)->SetYears(arg2
);
29189 result
= (wxDateSpan
*) &_result_ref
;
29191 wxPyEndAllowThreads(__tstate
);
29192 if (PyErr_Occurred()) SWIG_fail
;
29194 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29201 SWIGINTERN PyObject
*_wrap_DateSpan_SetMonths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29202 PyObject
*resultobj
= 0;
29203 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29205 wxDateSpan
*result
= 0 ;
29210 PyObject
* obj0
= 0 ;
29211 PyObject
* obj1
= 0 ;
29212 char * kwnames
[] = {
29213 (char *) "self",(char *) "n", NULL
29216 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_SetMonths",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29217 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29218 if (!SWIG_IsOK(res1
)) {
29219 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_SetMonths" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29221 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29222 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29223 if (!SWIG_IsOK(ecode2
)) {
29224 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan_SetMonths" "', expected argument " "2"" of type '" "int""'");
29226 arg2
= static_cast< int >(val2
);
29228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29230 wxDateSpan
&_result_ref
= (arg1
)->SetMonths(arg2
);
29231 result
= (wxDateSpan
*) &_result_ref
;
29233 wxPyEndAllowThreads(__tstate
);
29234 if (PyErr_Occurred()) SWIG_fail
;
29236 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29243 SWIGINTERN PyObject
*_wrap_DateSpan_SetWeeks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29244 PyObject
*resultobj
= 0;
29245 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29247 wxDateSpan
*result
= 0 ;
29252 PyObject
* obj0
= 0 ;
29253 PyObject
* obj1
= 0 ;
29254 char * kwnames
[] = {
29255 (char *) "self",(char *) "n", NULL
29258 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_SetWeeks",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29259 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29260 if (!SWIG_IsOK(res1
)) {
29261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_SetWeeks" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29263 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29264 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29265 if (!SWIG_IsOK(ecode2
)) {
29266 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan_SetWeeks" "', expected argument " "2"" of type '" "int""'");
29268 arg2
= static_cast< int >(val2
);
29270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29272 wxDateSpan
&_result_ref
= (arg1
)->SetWeeks(arg2
);
29273 result
= (wxDateSpan
*) &_result_ref
;
29275 wxPyEndAllowThreads(__tstate
);
29276 if (PyErr_Occurred()) SWIG_fail
;
29278 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29285 SWIGINTERN PyObject
*_wrap_DateSpan_SetDays(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29286 PyObject
*resultobj
= 0;
29287 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29289 wxDateSpan
*result
= 0 ;
29294 PyObject
* obj0
= 0 ;
29295 PyObject
* obj1
= 0 ;
29296 char * kwnames
[] = {
29297 (char *) "self",(char *) "n", NULL
29300 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_SetDays",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29301 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29302 if (!SWIG_IsOK(res1
)) {
29303 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_SetDays" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29305 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29306 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29307 if (!SWIG_IsOK(ecode2
)) {
29308 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan_SetDays" "', expected argument " "2"" of type '" "int""'");
29310 arg2
= static_cast< int >(val2
);
29312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29314 wxDateSpan
&_result_ref
= (arg1
)->SetDays(arg2
);
29315 result
= (wxDateSpan
*) &_result_ref
;
29317 wxPyEndAllowThreads(__tstate
);
29318 if (PyErr_Occurred()) SWIG_fail
;
29320 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29327 SWIGINTERN PyObject
*_wrap_DateSpan_GetYears(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29328 PyObject
*resultobj
= 0;
29329 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29333 PyObject
*swig_obj
[1] ;
29335 if (!args
) SWIG_fail
;
29336 swig_obj
[0] = args
;
29337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29338 if (!SWIG_IsOK(res1
)) {
29339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_GetYears" "', expected argument " "1"" of type '" "wxDateSpan const *""'");
29341 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29344 result
= (int)((wxDateSpan
const *)arg1
)->GetYears();
29345 wxPyEndAllowThreads(__tstate
);
29346 if (PyErr_Occurred()) SWIG_fail
;
29348 resultobj
= SWIG_From_int(static_cast< int >(result
));
29355 SWIGINTERN PyObject
*_wrap_DateSpan_GetMonths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29356 PyObject
*resultobj
= 0;
29357 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29361 PyObject
*swig_obj
[1] ;
29363 if (!args
) SWIG_fail
;
29364 swig_obj
[0] = args
;
29365 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29366 if (!SWIG_IsOK(res1
)) {
29367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_GetMonths" "', expected argument " "1"" of type '" "wxDateSpan const *""'");
29369 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29372 result
= (int)((wxDateSpan
const *)arg1
)->GetMonths();
29373 wxPyEndAllowThreads(__tstate
);
29374 if (PyErr_Occurred()) SWIG_fail
;
29376 resultobj
= SWIG_From_int(static_cast< int >(result
));
29383 SWIGINTERN PyObject
*_wrap_DateSpan_GetWeeks(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29384 PyObject
*resultobj
= 0;
29385 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29389 PyObject
*swig_obj
[1] ;
29391 if (!args
) SWIG_fail
;
29392 swig_obj
[0] = args
;
29393 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29394 if (!SWIG_IsOK(res1
)) {
29395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_GetWeeks" "', expected argument " "1"" of type '" "wxDateSpan const *""'");
29397 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29400 result
= (int)((wxDateSpan
const *)arg1
)->GetWeeks();
29401 wxPyEndAllowThreads(__tstate
);
29402 if (PyErr_Occurred()) SWIG_fail
;
29404 resultobj
= SWIG_From_int(static_cast< int >(result
));
29411 SWIGINTERN PyObject
*_wrap_DateSpan_GetDays(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29412 PyObject
*resultobj
= 0;
29413 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29417 PyObject
*swig_obj
[1] ;
29419 if (!args
) SWIG_fail
;
29420 swig_obj
[0] = args
;
29421 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29422 if (!SWIG_IsOK(res1
)) {
29423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_GetDays" "', expected argument " "1"" of type '" "wxDateSpan const *""'");
29425 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29428 result
= (int)((wxDateSpan
const *)arg1
)->GetDays();
29429 wxPyEndAllowThreads(__tstate
);
29430 if (PyErr_Occurred()) SWIG_fail
;
29432 resultobj
= SWIG_From_int(static_cast< int >(result
));
29439 SWIGINTERN PyObject
*_wrap_DateSpan_GetTotalDays(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29440 PyObject
*resultobj
= 0;
29441 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29445 PyObject
*swig_obj
[1] ;
29447 if (!args
) SWIG_fail
;
29448 swig_obj
[0] = args
;
29449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29450 if (!SWIG_IsOK(res1
)) {
29451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_GetTotalDays" "', expected argument " "1"" of type '" "wxDateSpan const *""'");
29453 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29456 result
= (int)((wxDateSpan
const *)arg1
)->GetTotalDays();
29457 wxPyEndAllowThreads(__tstate
);
29458 if (PyErr_Occurred()) SWIG_fail
;
29460 resultobj
= SWIG_From_int(static_cast< int >(result
));
29467 SWIGINTERN PyObject
*_wrap_DateSpan_Add(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29468 PyObject
*resultobj
= 0;
29469 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29470 wxDateSpan
*arg2
= 0 ;
29471 wxDateSpan
*result
= 0 ;
29476 PyObject
* obj0
= 0 ;
29477 PyObject
* obj1
= 0 ;
29478 char * kwnames
[] = {
29479 (char *) "self",(char *) "other", NULL
29482 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_Add",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29483 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29484 if (!SWIG_IsOK(res1
)) {
29485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_Add" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29487 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29488 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29489 if (!SWIG_IsOK(res2
)) {
29490 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan_Add" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29493 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan_Add" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29495 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29499 wxDateSpan
&_result_ref
= (arg1
)->Add((wxDateSpan
const &)*arg2
);
29500 result
= (wxDateSpan
*) &_result_ref
;
29502 wxPyEndAllowThreads(__tstate
);
29503 if (PyErr_Occurred()) SWIG_fail
;
29505 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29512 SWIGINTERN PyObject
*_wrap_DateSpan_Subtract(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29513 PyObject
*resultobj
= 0;
29514 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29515 wxDateSpan
*arg2
= 0 ;
29516 wxDateSpan
*result
= 0 ;
29521 PyObject
* obj0
= 0 ;
29522 PyObject
* obj1
= 0 ;
29523 char * kwnames
[] = {
29524 (char *) "self",(char *) "other", NULL
29527 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_Subtract",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29528 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29529 if (!SWIG_IsOK(res1
)) {
29530 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_Subtract" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29532 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29533 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29534 if (!SWIG_IsOK(res2
)) {
29535 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan_Subtract" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29538 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan_Subtract" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29540 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29544 wxDateSpan
&_result_ref
= (arg1
)->Subtract((wxDateSpan
const &)*arg2
);
29545 result
= (wxDateSpan
*) &_result_ref
;
29547 wxPyEndAllowThreads(__tstate
);
29548 if (PyErr_Occurred()) SWIG_fail
;
29550 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29557 SWIGINTERN PyObject
*_wrap_DateSpan_Neg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29558 PyObject
*resultobj
= 0;
29559 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29560 wxDateSpan
*result
= 0 ;
29563 PyObject
*swig_obj
[1] ;
29565 if (!args
) SWIG_fail
;
29566 swig_obj
[0] = args
;
29567 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29568 if (!SWIG_IsOK(res1
)) {
29569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_Neg" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29571 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29575 wxDateSpan
&_result_ref
= (arg1
)->Neg();
29576 result
= (wxDateSpan
*) &_result_ref
;
29578 wxPyEndAllowThreads(__tstate
);
29579 if (PyErr_Occurred()) SWIG_fail
;
29581 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29588 SWIGINTERN PyObject
*_wrap_DateSpan_Multiply(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29589 PyObject
*resultobj
= 0;
29590 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29592 wxDateSpan
*result
= 0 ;
29597 PyObject
* obj0
= 0 ;
29598 PyObject
* obj1
= 0 ;
29599 char * kwnames
[] = {
29600 (char *) "self",(char *) "factor", NULL
29603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan_Multiply",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29605 if (!SWIG_IsOK(res1
)) {
29606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan_Multiply" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29608 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29609 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29610 if (!SWIG_IsOK(ecode2
)) {
29611 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan_Multiply" "', expected argument " "2"" of type '" "int""'");
29613 arg2
= static_cast< int >(val2
);
29615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29617 wxDateSpan
&_result_ref
= (arg1
)->Multiply(arg2
);
29618 result
= (wxDateSpan
*) &_result_ref
;
29620 wxPyEndAllowThreads(__tstate
);
29621 if (PyErr_Occurred()) SWIG_fail
;
29623 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29630 SWIGINTERN PyObject
*_wrap_DateSpan___iadd__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29631 PyObject
*resultobj
= 0;
29632 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29633 wxDateSpan
*arg2
= 0 ;
29634 wxDateSpan
*result
= 0 ;
29639 PyObject
* obj0
= 0 ;
29640 PyObject
* obj1
= 0 ;
29641 char * kwnames
[] = {
29642 (char *) "self",(char *) "other", NULL
29645 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___iadd__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29646 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_DISOWN
| 0 );
29647 if (!SWIG_IsOK(res1
)) {
29648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___iadd__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29650 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29651 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29652 if (!SWIG_IsOK(res2
)) {
29653 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___iadd__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29656 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan___iadd__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29658 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29662 wxDateSpan
&_result_ref
= (arg1
)->operator +=((wxDateSpan
const &)*arg2
);
29663 result
= (wxDateSpan
*) &_result_ref
;
29665 wxPyEndAllowThreads(__tstate
);
29666 if (PyErr_Occurred()) SWIG_fail
;
29668 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29675 SWIGINTERN PyObject
*_wrap_DateSpan___isub__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29676 PyObject
*resultobj
= 0;
29677 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29678 wxDateSpan
*arg2
= 0 ;
29679 wxDateSpan
*result
= 0 ;
29684 PyObject
* obj0
= 0 ;
29685 PyObject
* obj1
= 0 ;
29686 char * kwnames
[] = {
29687 (char *) "self",(char *) "other", NULL
29690 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___isub__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29691 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_DISOWN
| 0 );
29692 if (!SWIG_IsOK(res1
)) {
29693 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___isub__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29695 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29696 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29697 if (!SWIG_IsOK(res2
)) {
29698 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___isub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29701 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan___isub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29703 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29707 wxDateSpan
&_result_ref
= (arg1
)->operator -=((wxDateSpan
const &)*arg2
);
29708 result
= (wxDateSpan
*) &_result_ref
;
29710 wxPyEndAllowThreads(__tstate
);
29711 if (PyErr_Occurred()) SWIG_fail
;
29713 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29720 SWIGINTERN PyObject
*_wrap_DateSpan___neg__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29721 PyObject
*resultobj
= 0;
29722 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29723 wxDateSpan
*result
= 0 ;
29726 PyObject
*swig_obj
[1] ;
29728 if (!args
) SWIG_fail
;
29729 swig_obj
[0] = args
;
29730 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29731 if (!SWIG_IsOK(res1
)) {
29732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___neg__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29734 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29738 wxDateSpan
&_result_ref
= (arg1
)->operator -();
29739 result
= (wxDateSpan
*) &_result_ref
;
29741 wxPyEndAllowThreads(__tstate
);
29742 if (PyErr_Occurred()) SWIG_fail
;
29744 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29751 SWIGINTERN PyObject
*_wrap_DateSpan___imul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29752 PyObject
*resultobj
= 0;
29753 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29755 wxDateSpan
*result
= 0 ;
29760 PyObject
* obj0
= 0 ;
29761 PyObject
* obj1
= 0 ;
29762 char * kwnames
[] = {
29763 (char *) "self",(char *) "factor", NULL
29766 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___imul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29767 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_DISOWN
| 0 );
29768 if (!SWIG_IsOK(res1
)) {
29769 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___imul__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29771 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29772 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29773 if (!SWIG_IsOK(ecode2
)) {
29774 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan___imul__" "', expected argument " "2"" of type '" "int""'");
29776 arg2
= static_cast< int >(val2
);
29778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29780 wxDateSpan
&_result_ref
= (arg1
)->operator *=(arg2
);
29781 result
= (wxDateSpan
*) &_result_ref
;
29783 wxPyEndAllowThreads(__tstate
);
29784 if (PyErr_Occurred()) SWIG_fail
;
29786 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29793 SWIGINTERN PyObject
*_wrap_DateSpan___add__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29794 PyObject
*resultobj
= 0;
29795 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29796 wxDateSpan
*arg2
= 0 ;
29802 PyObject
* obj0
= 0 ;
29803 PyObject
* obj1
= 0 ;
29804 char * kwnames
[] = {
29805 (char *) "self",(char *) "other", NULL
29808 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___add__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29809 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29810 if (!SWIG_IsOK(res1
)) {
29811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___add__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29813 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29814 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29815 if (!SWIG_IsOK(res2
)) {
29816 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___add__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29819 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan___add__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29821 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29824 result
= wxDateSpan___add__(arg1
,(wxDateSpan
const &)*arg2
);
29825 wxPyEndAllowThreads(__tstate
);
29826 if (PyErr_Occurred()) SWIG_fail
;
29828 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29835 SWIGINTERN PyObject
*_wrap_DateSpan___sub__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29836 PyObject
*resultobj
= 0;
29837 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29838 wxDateSpan
*arg2
= 0 ;
29844 PyObject
* obj0
= 0 ;
29845 PyObject
* obj1
= 0 ;
29846 char * kwnames
[] = {
29847 (char *) "self",(char *) "other", NULL
29850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___sub__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29852 if (!SWIG_IsOK(res1
)) {
29853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___sub__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29855 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29856 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDateSpan
, 0 | 0);
29857 if (!SWIG_IsOK(res2
)) {
29858 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___sub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29861 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DateSpan___sub__" "', expected argument " "2"" of type '" "wxDateSpan const &""'");
29863 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29866 result
= wxDateSpan___sub__(arg1
,(wxDateSpan
const &)*arg2
);
29867 wxPyEndAllowThreads(__tstate
);
29868 if (PyErr_Occurred()) SWIG_fail
;
29870 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29877 SWIGINTERN PyObject
*_wrap_DateSpan___mul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29878 PyObject
*resultobj
= 0;
29879 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29886 PyObject
* obj0
= 0 ;
29887 PyObject
* obj1
= 0 ;
29888 char * kwnames
[] = {
29889 (char *) "self",(char *) "n", NULL
29892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___mul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29893 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29894 if (!SWIG_IsOK(res1
)) {
29895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___mul__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29897 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29898 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29899 if (!SWIG_IsOK(ecode2
)) {
29900 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan___mul__" "', expected argument " "2"" of type '" "int""'");
29902 arg2
= static_cast< int >(val2
);
29904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29905 result
= wxDateSpan___mul__(arg1
,arg2
);
29906 wxPyEndAllowThreads(__tstate
);
29907 if (PyErr_Occurred()) SWIG_fail
;
29909 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29916 SWIGINTERN PyObject
*_wrap_DateSpan___rmul__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29917 PyObject
*resultobj
= 0;
29918 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29925 PyObject
* obj0
= 0 ;
29926 PyObject
* obj1
= 0 ;
29927 char * kwnames
[] = {
29928 (char *) "self",(char *) "n", NULL
29931 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___rmul__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29932 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29933 if (!SWIG_IsOK(res1
)) {
29934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___rmul__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29936 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29937 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29938 if (!SWIG_IsOK(ecode2
)) {
29939 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DateSpan___rmul__" "', expected argument " "2"" of type '" "int""'");
29941 arg2
= static_cast< int >(val2
);
29943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29944 result
= wxDateSpan___rmul__(arg1
,arg2
);
29945 wxPyEndAllowThreads(__tstate
);
29946 if (PyErr_Occurred()) SWIG_fail
;
29948 resultobj
= SWIG_NewPointerObj((new wxDateSpan(static_cast< const wxDateSpan
& >(result
))), SWIGTYPE_p_wxDateSpan
, SWIG_POINTER_OWN
| 0 );
29955 SWIGINTERN PyObject
*_wrap_DateSpan___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29956 PyObject
*resultobj
= 0;
29957 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29958 wxDateSpan
*arg2
= (wxDateSpan
*) 0 ;
29964 PyObject
* obj0
= 0 ;
29965 PyObject
* obj1
= 0 ;
29966 char * kwnames
[] = {
29967 (char *) "self",(char *) "other", NULL
29970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29971 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29972 if (!SWIG_IsOK(res1
)) {
29973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___eq__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
29975 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
29976 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
29977 if (!SWIG_IsOK(res2
)) {
29978 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___eq__" "', expected argument " "2"" of type '" "wxDateSpan const *""'");
29980 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
29982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29983 result
= (bool)wxDateSpan___eq__(arg1
,(wxDateSpan
const *)arg2
);
29984 wxPyEndAllowThreads(__tstate
);
29985 if (PyErr_Occurred()) SWIG_fail
;
29988 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29996 SWIGINTERN PyObject
*_wrap_DateSpan___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29997 PyObject
*resultobj
= 0;
29998 wxDateSpan
*arg1
= (wxDateSpan
*) 0 ;
29999 wxDateSpan
*arg2
= (wxDateSpan
*) 0 ;
30005 PyObject
* obj0
= 0 ;
30006 PyObject
* obj1
= 0 ;
30007 char * kwnames
[] = {
30008 (char *) "self",(char *) "other", NULL
30011 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DateSpan___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30012 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
30013 if (!SWIG_IsOK(res1
)) {
30014 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DateSpan___ne__" "', expected argument " "1"" of type '" "wxDateSpan *""'");
30016 arg1
= reinterpret_cast< wxDateSpan
* >(argp1
);
30017 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDateSpan
, 0 | 0 );
30018 if (!SWIG_IsOK(res2
)) {
30019 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DateSpan___ne__" "', expected argument " "2"" of type '" "wxDateSpan const *""'");
30021 arg2
= reinterpret_cast< wxDateSpan
* >(argp2
);
30023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30024 result
= (bool)wxDateSpan___ne__(arg1
,(wxDateSpan
const *)arg2
);
30025 wxPyEndAllowThreads(__tstate
);
30026 if (PyErr_Occurred()) SWIG_fail
;
30029 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30037 SWIGINTERN PyObject
*DateSpan_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30039 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30040 SWIG_TypeNewClientData(SWIGTYPE_p_wxDateSpan
, SWIG_NewClientData(obj
));
30041 return SWIG_Py_Void();
30044 SWIGINTERN PyObject
*DateSpan_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30045 return SWIG_Python_InitShadowInstance(args
);
30048 SWIGINTERN PyObject
*_wrap_GetLocalTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30049 PyObject
*resultobj
= 0;
30052 if (!SWIG_Python_UnpackTuple(args
,"GetLocalTime",0,0,0)) SWIG_fail
;
30054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30055 result
= (long)wxGetLocalTime();
30056 wxPyEndAllowThreads(__tstate
);
30057 if (PyErr_Occurred()) SWIG_fail
;
30059 resultobj
= SWIG_From_long(static_cast< long >(result
));
30066 SWIGINTERN PyObject
*_wrap_GetUTCTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30067 PyObject
*resultobj
= 0;
30070 if (!SWIG_Python_UnpackTuple(args
,"GetUTCTime",0,0,0)) SWIG_fail
;
30072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30073 result
= (long)wxGetUTCTime();
30074 wxPyEndAllowThreads(__tstate
);
30075 if (PyErr_Occurred()) SWIG_fail
;
30077 resultobj
= SWIG_From_long(static_cast< long >(result
));
30084 SWIGINTERN PyObject
*_wrap_GetCurrentTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30085 PyObject
*resultobj
= 0;
30088 if (!SWIG_Python_UnpackTuple(args
,"GetCurrentTime",0,0,0)) SWIG_fail
;
30090 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30091 result
= (long)wxGetCurrentTime();
30092 wxPyEndAllowThreads(__tstate
);
30093 if (PyErr_Occurred()) SWIG_fail
;
30095 resultobj
= SWIG_From_long(static_cast< long >(result
));
30102 SWIGINTERN PyObject
*_wrap_GetLocalTimeMillis(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30103 PyObject
*resultobj
= 0;
30106 if (!SWIG_Python_UnpackTuple(args
,"GetLocalTimeMillis",0,0,0)) SWIG_fail
;
30108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30109 result
= wxGetLocalTimeMillis();
30110 wxPyEndAllowThreads(__tstate
);
30111 if (PyErr_Occurred()) SWIG_fail
;
30114 PyObject
*hi
, *lo
, *shifter
, *shifted
;
30115 hi
= PyLong_FromLong( (&result
)->GetHi() );
30116 lo
= PyLong_FromLong( (&result
)->GetLo() );
30117 shifter
= PyLong_FromLong(32);
30118 shifted
= PyNumber_Lshift(hi
, shifter
);
30119 resultobj
= PyNumber_Or(shifted
, lo
);
30122 Py_DECREF(shifter
);
30123 Py_DECREF(shifted
);
30131 SWIGINTERN
int DefaultDateTime_set(PyObject
*) {
30132 SWIG_Error(SWIG_AttributeError
,"Variable DefaultDateTime is read-only.");
30137 SWIGINTERN PyObject
*DefaultDateTime_get(void) {
30138 PyObject
*pyobj
= 0;
30140 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxDefaultDateTime
), SWIGTYPE_p_wxDateTime
, 0 );
30145 SWIGINTERN PyObject
*_wrap_new_DataFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30146 PyObject
*resultobj
= 0;
30147 wxDataFormatId arg1
;
30148 wxDataFormat
*result
= 0 ;
30151 PyObject
* obj0
= 0 ;
30152 char * kwnames
[] = {
30153 (char *) "type", NULL
30156 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_DataFormat",kwnames
,&obj0
)) SWIG_fail
;
30157 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
30158 if (!SWIG_IsOK(ecode1
)) {
30159 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_DataFormat" "', expected argument " "1"" of type '" "wxDataFormatId""'");
30161 arg1
= static_cast< wxDataFormatId
>(val1
);
30163 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30164 result
= (wxDataFormat
*)new wxDataFormat(arg1
);
30165 wxPyEndAllowThreads(__tstate
);
30166 if (PyErr_Occurred()) SWIG_fail
;
30168 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataFormat
, SWIG_POINTER_NEW
| 0 );
30175 SWIGINTERN PyObject
*_wrap_new_CustomDataFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30176 PyObject
*resultobj
= 0;
30177 wxString
*arg1
= 0 ;
30178 wxDataFormat
*result
= 0 ;
30179 bool temp1
= false ;
30180 PyObject
* obj0
= 0 ;
30181 char * kwnames
[] = {
30182 (char *) "format", NULL
30185 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_CustomDataFormat",kwnames
,&obj0
)) SWIG_fail
;
30187 arg1
= wxString_in_helper(obj0
);
30188 if (arg1
== NULL
) SWIG_fail
;
30192 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30193 result
= (wxDataFormat
*)new wxDataFormat((wxString
const &)*arg1
);
30194 wxPyEndAllowThreads(__tstate
);
30195 if (PyErr_Occurred()) SWIG_fail
;
30197 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataFormat
, SWIG_POINTER_OWN
| 0 );
30212 SWIGINTERN PyObject
*_wrap_delete_DataFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30213 PyObject
*resultobj
= 0;
30214 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30217 PyObject
*swig_obj
[1] ;
30219 if (!args
) SWIG_fail
;
30220 swig_obj
[0] = args
;
30221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, SWIG_POINTER_DISOWN
| 0 );
30222 if (!SWIG_IsOK(res1
)) {
30223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DataFormat" "', expected argument " "1"" of type '" "wxDataFormat *""'");
30225 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30230 wxPyEndAllowThreads(__tstate
);
30231 if (PyErr_Occurred()) SWIG_fail
;
30233 resultobj
= SWIG_Py_Void();
30240 SWIGINTERN PyObject
*_wrap_DataFormat___eq____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
30241 PyObject
*resultobj
= 0;
30242 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30243 wxDataFormatId arg2
;
30250 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
30251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30252 if (!SWIG_IsOK(res1
)) {
30253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat___eq__" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30255 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30256 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
30257 if (!SWIG_IsOK(ecode2
)) {
30258 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataFormat___eq__" "', expected argument " "2"" of type '" "wxDataFormatId""'");
30260 arg2
= static_cast< wxDataFormatId
>(val2
);
30262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30263 result
= (bool)((wxDataFormat
const *)arg1
)->operator ==(arg2
);
30264 wxPyEndAllowThreads(__tstate
);
30265 if (PyErr_Occurred()) SWIG_fail
;
30268 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30276 SWIGINTERN PyObject
*_wrap_DataFormat___ne____SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
30277 PyObject
*resultobj
= 0;
30278 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30279 wxDataFormatId arg2
;
30286 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
30287 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30288 if (!SWIG_IsOK(res1
)) {
30289 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat___ne__" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30291 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30292 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
30293 if (!SWIG_IsOK(ecode2
)) {
30294 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataFormat___ne__" "', expected argument " "2"" of type '" "wxDataFormatId""'");
30296 arg2
= static_cast< wxDataFormatId
>(val2
);
30298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30299 result
= (bool)((wxDataFormat
const *)arg1
)->operator !=(arg2
);
30300 wxPyEndAllowThreads(__tstate
);
30301 if (PyErr_Occurred()) SWIG_fail
;
30304 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30312 SWIGINTERN PyObject
*_wrap_DataFormat___eq____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
30313 PyObject
*resultobj
= 0;
30314 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30315 wxDataFormat
*arg2
= 0 ;
30322 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
30323 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30324 if (!SWIG_IsOK(res1
)) {
30325 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat___eq__" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30327 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30328 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30329 if (!SWIG_IsOK(res2
)) {
30330 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataFormat___eq__" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30333 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataFormat___eq__" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30335 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30338 result
= (bool)((wxDataFormat
const *)arg1
)->operator ==((wxDataFormat
const &)*arg2
);
30339 wxPyEndAllowThreads(__tstate
);
30340 if (PyErr_Occurred()) SWIG_fail
;
30343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30351 SWIGINTERN PyObject
*_wrap_DataFormat___eq__(PyObject
*self
, PyObject
*args
) {
30355 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DataFormat___eq__",0,2,argv
))) SWIG_fail
;
30360 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxDataFormat
, 0);
30361 _v
= SWIG_CheckState(res
);
30363 if (!_v
) goto check_1
;
30364 return _wrap_DataFormat___eq____SWIG_1(self
, argc
, argv
);
30369 return _wrap_DataFormat___eq____SWIG_0(self
, argc
, argv
);
30373 Py_INCREF(Py_NotImplemented
);
30374 return Py_NotImplemented
;
30378 SWIGINTERN PyObject
*_wrap_DataFormat___ne____SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
30379 PyObject
*resultobj
= 0;
30380 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30381 wxDataFormat
*arg2
= 0 ;
30388 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
30389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30390 if (!SWIG_IsOK(res1
)) {
30391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat___ne__" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30393 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30394 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30395 if (!SWIG_IsOK(res2
)) {
30396 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataFormat___ne__" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30399 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataFormat___ne__" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30401 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30404 result
= (bool)((wxDataFormat
const *)arg1
)->operator !=((wxDataFormat
const &)*arg2
);
30405 wxPyEndAllowThreads(__tstate
);
30406 if (PyErr_Occurred()) SWIG_fail
;
30409 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30417 SWIGINTERN PyObject
*_wrap_DataFormat___ne__(PyObject
*self
, PyObject
*args
) {
30421 if (!(argc
= SWIG_Python_UnpackTuple(args
,"DataFormat___ne__",0,2,argv
))) SWIG_fail
;
30426 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxDataFormat
, 0);
30427 _v
= SWIG_CheckState(res
);
30429 if (!_v
) goto check_1
;
30430 return _wrap_DataFormat___ne____SWIG_1(self
, argc
, argv
);
30435 return _wrap_DataFormat___ne____SWIG_0(self
, argc
, argv
);
30439 Py_INCREF(Py_NotImplemented
);
30440 return Py_NotImplemented
;
30444 SWIGINTERN PyObject
*_wrap_DataFormat_SetType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30445 PyObject
*resultobj
= 0;
30446 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30447 wxDataFormatId arg2
;
30452 PyObject
* obj0
= 0 ;
30453 PyObject
* obj1
= 0 ;
30454 char * kwnames
[] = {
30455 (char *) "self",(char *) "format", NULL
30458 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataFormat_SetType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30459 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30460 if (!SWIG_IsOK(res1
)) {
30461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat_SetType" "', expected argument " "1"" of type '" "wxDataFormat *""'");
30463 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30464 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30465 if (!SWIG_IsOK(ecode2
)) {
30466 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataFormat_SetType" "', expected argument " "2"" of type '" "wxDataFormatId""'");
30468 arg2
= static_cast< wxDataFormatId
>(val2
);
30470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30471 (arg1
)->SetType(arg2
);
30472 wxPyEndAllowThreads(__tstate
);
30473 if (PyErr_Occurred()) SWIG_fail
;
30475 resultobj
= SWIG_Py_Void();
30482 SWIGINTERN PyObject
*_wrap_DataFormat_GetType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30483 PyObject
*resultobj
= 0;
30484 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30485 wxDataFormatId result
;
30488 PyObject
*swig_obj
[1] ;
30490 if (!args
) SWIG_fail
;
30491 swig_obj
[0] = args
;
30492 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30493 if (!SWIG_IsOK(res1
)) {
30494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat_GetType" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30496 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30499 result
= (wxDataFormatId
)((wxDataFormat
const *)arg1
)->GetType();
30500 wxPyEndAllowThreads(__tstate
);
30501 if (PyErr_Occurred()) SWIG_fail
;
30503 resultobj
= SWIG_From_int(static_cast< int >(result
));
30510 SWIGINTERN PyObject
*_wrap_DataFormat_GetId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30511 PyObject
*resultobj
= 0;
30512 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30516 PyObject
*swig_obj
[1] ;
30518 if (!args
) SWIG_fail
;
30519 swig_obj
[0] = args
;
30520 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30521 if (!SWIG_IsOK(res1
)) {
30522 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat_GetId" "', expected argument " "1"" of type '" "wxDataFormat const *""'");
30524 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30526 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30527 result
= ((wxDataFormat
const *)arg1
)->GetId();
30528 wxPyEndAllowThreads(__tstate
);
30529 if (PyErr_Occurred()) SWIG_fail
;
30533 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
30535 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
30544 SWIGINTERN PyObject
*_wrap_DataFormat_SetId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30545 PyObject
*resultobj
= 0;
30546 wxDataFormat
*arg1
= (wxDataFormat
*) 0 ;
30547 wxString
*arg2
= 0 ;
30550 bool temp2
= false ;
30551 PyObject
* obj0
= 0 ;
30552 PyObject
* obj1
= 0 ;
30553 char * kwnames
[] = {
30554 (char *) "self",(char *) "format", NULL
30557 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataFormat_SetId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30558 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataFormat
, 0 | 0 );
30559 if (!SWIG_IsOK(res1
)) {
30560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataFormat_SetId" "', expected argument " "1"" of type '" "wxDataFormat *""'");
30562 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30564 arg2
= wxString_in_helper(obj1
);
30565 if (arg2
== NULL
) SWIG_fail
;
30569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30570 (arg1
)->SetId((wxString
const &)*arg2
);
30571 wxPyEndAllowThreads(__tstate
);
30572 if (PyErr_Occurred()) SWIG_fail
;
30574 resultobj
= SWIG_Py_Void();
30589 SWIGINTERN PyObject
*DataFormat_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30591 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30592 SWIG_TypeNewClientData(SWIGTYPE_p_wxDataFormat
, SWIG_NewClientData(obj
));
30593 return SWIG_Py_Void();
30596 SWIGINTERN PyObject
*DataFormat_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30597 return SWIG_Python_InitShadowInstance(args
);
30600 SWIGINTERN
int FormatInvalid_set(PyObject
*) {
30601 SWIG_Error(SWIG_AttributeError
,"Variable FormatInvalid is read-only.");
30606 SWIGINTERN PyObject
*FormatInvalid_get(void) {
30607 PyObject
*pyobj
= 0;
30609 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxFormatInvalid
), SWIGTYPE_p_wxDataFormat
, 0 );
30614 SWIGINTERN PyObject
*_wrap_delete_DataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30615 PyObject
*resultobj
= 0;
30616 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30619 PyObject
*swig_obj
[1] ;
30621 if (!args
) SWIG_fail
;
30622 swig_obj
[0] = args
;
30623 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataObject
, SWIG_POINTER_DISOWN
| 0 );
30624 if (!SWIG_IsOK(res1
)) {
30625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DataObject" "', expected argument " "1"" of type '" "wxDataObject *""'");
30627 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30632 wxPyEndAllowThreads(__tstate
);
30633 if (PyErr_Occurred()) SWIG_fail
;
30635 resultobj
= SWIG_Py_Void();
30642 SWIGINTERN PyObject
*_wrap_DataObject_GetPreferredFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30643 PyObject
*resultobj
= 0;
30644 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30645 wxDataObject::Direction arg2
= (wxDataObject::Direction
) wxDataObject::Get
;
30646 SwigValueWrapper
<wxDataFormat
> result
;
30651 PyObject
* obj0
= 0 ;
30652 PyObject
* obj1
= 0 ;
30653 char * kwnames
[] = {
30654 (char *) "self",(char *) "dir", NULL
30657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DataObject_GetPreferredFormat",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30658 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30659 if (!SWIG_IsOK(res1
)) {
30660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_GetPreferredFormat" "', expected argument " "1"" of type '" "wxDataObject const *""'");
30662 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30664 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30665 if (!SWIG_IsOK(ecode2
)) {
30666 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataObject_GetPreferredFormat" "', expected argument " "2"" of type '" "wxDataObject::Direction""'");
30668 arg2
= static_cast< wxDataObject::Direction
>(val2
);
30671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30672 result
= ((wxDataObject
const *)arg1
)->GetPreferredFormat(arg2
);
30673 wxPyEndAllowThreads(__tstate
);
30674 if (PyErr_Occurred()) SWIG_fail
;
30676 resultobj
= SWIG_NewPointerObj((new wxDataFormat(static_cast< const wxDataFormat
& >(result
))), SWIGTYPE_p_wxDataFormat
, SWIG_POINTER_OWN
| 0 );
30683 SWIGINTERN PyObject
*_wrap_DataObject_GetFormatCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30684 PyObject
*resultobj
= 0;
30685 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30686 wxDataObject::Direction arg2
= (wxDataObject::Direction
) wxDataObject::Get
;
30692 PyObject
* obj0
= 0 ;
30693 PyObject
* obj1
= 0 ;
30694 char * kwnames
[] = {
30695 (char *) "self",(char *) "dir", NULL
30698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DataObject_GetFormatCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30700 if (!SWIG_IsOK(res1
)) {
30701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_GetFormatCount" "', expected argument " "1"" of type '" "wxDataObject const *""'");
30703 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30705 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30706 if (!SWIG_IsOK(ecode2
)) {
30707 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataObject_GetFormatCount" "', expected argument " "2"" of type '" "wxDataObject::Direction""'");
30709 arg2
= static_cast< wxDataObject::Direction
>(val2
);
30712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30713 result
= (size_t)((wxDataObject
const *)arg1
)->GetFormatCount(arg2
);
30714 wxPyEndAllowThreads(__tstate
);
30715 if (PyErr_Occurred()) SWIG_fail
;
30717 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
30724 SWIGINTERN PyObject
*_wrap_DataObject_IsSupported(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30725 PyObject
*resultobj
= 0;
30726 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30727 wxDataFormat
*arg2
= 0 ;
30728 wxDataObject::Direction arg3
= (wxDataObject::Direction
) wxDataObject::Get
;
30736 PyObject
* obj0
= 0 ;
30737 PyObject
* obj1
= 0 ;
30738 PyObject
* obj2
= 0 ;
30739 char * kwnames
[] = {
30740 (char *) "self",(char *) "format",(char *) "dir", NULL
30743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DataObject_IsSupported",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30745 if (!SWIG_IsOK(res1
)) {
30746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_IsSupported" "', expected argument " "1"" of type '" "wxDataObject const *""'");
30748 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30749 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30750 if (!SWIG_IsOK(res2
)) {
30751 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObject_IsSupported" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30754 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataObject_IsSupported" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30756 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30758 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
30759 if (!SWIG_IsOK(ecode3
)) {
30760 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DataObject_IsSupported" "', expected argument " "3"" of type '" "wxDataObject::Direction""'");
30762 arg3
= static_cast< wxDataObject::Direction
>(val3
);
30765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30766 result
= (bool)((wxDataObject
const *)arg1
)->IsSupported((wxDataFormat
const &)*arg2
,arg3
);
30767 wxPyEndAllowThreads(__tstate
);
30768 if (PyErr_Occurred()) SWIG_fail
;
30771 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30779 SWIGINTERN PyObject
*_wrap_DataObject_GetDataSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30780 PyObject
*resultobj
= 0;
30781 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30782 wxDataFormat
*arg2
= 0 ;
30788 PyObject
* obj0
= 0 ;
30789 PyObject
* obj1
= 0 ;
30790 char * kwnames
[] = {
30791 (char *) "self",(char *) "format", NULL
30794 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataObject_GetDataSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30795 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30796 if (!SWIG_IsOK(res1
)) {
30797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_GetDataSize" "', expected argument " "1"" of type '" "wxDataObject const *""'");
30799 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30800 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30801 if (!SWIG_IsOK(res2
)) {
30802 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObject_GetDataSize" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30805 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataObject_GetDataSize" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30807 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30810 result
= (size_t)((wxDataObject
const *)arg1
)->GetDataSize((wxDataFormat
const &)*arg2
);
30811 wxPyEndAllowThreads(__tstate
);
30812 if (PyErr_Occurred()) SWIG_fail
;
30814 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
30821 SWIGINTERN PyObject
*_wrap_DataObject_GetAllFormats(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30822 PyObject
*resultobj
= 0;
30823 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30824 wxDataObject::Direction arg2
= (wxDataObject::Direction
) wxDataObject::Get
;
30825 PyObject
*result
= 0 ;
30830 PyObject
* obj0
= 0 ;
30831 PyObject
* obj1
= 0 ;
30832 char * kwnames
[] = {
30833 (char *) "self",(char *) "dir", NULL
30836 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DataObject_GetAllFormats",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30837 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30838 if (!SWIG_IsOK(res1
)) {
30839 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_GetAllFormats" "', expected argument " "1"" of type '" "wxDataObject *""'");
30841 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30843 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30844 if (!SWIG_IsOK(ecode2
)) {
30845 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DataObject_GetAllFormats" "', expected argument " "2"" of type '" "wxDataObject::Direction""'");
30847 arg2
= static_cast< wxDataObject::Direction
>(val2
);
30850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30851 result
= (PyObject
*)wxDataObject_GetAllFormats(arg1
,arg2
);
30852 wxPyEndAllowThreads(__tstate
);
30853 if (PyErr_Occurred()) SWIG_fail
;
30855 resultobj
= result
;
30862 SWIGINTERN PyObject
*_wrap_DataObject_GetDataHere(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30863 PyObject
*resultobj
= 0;
30864 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30865 wxDataFormat
*arg2
= 0 ;
30866 PyObject
*result
= 0 ;
30871 PyObject
* obj0
= 0 ;
30872 PyObject
* obj1
= 0 ;
30873 char * kwnames
[] = {
30874 (char *) "self",(char *) "format", NULL
30877 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataObject_GetDataHere",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30878 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30879 if (!SWIG_IsOK(res1
)) {
30880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_GetDataHere" "', expected argument " "1"" of type '" "wxDataObject *""'");
30882 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30883 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30884 if (!SWIG_IsOK(res2
)) {
30885 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObject_GetDataHere" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30888 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataObject_GetDataHere" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30890 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30893 result
= (PyObject
*)wxDataObject_GetDataHere(arg1
,(wxDataFormat
const &)*arg2
);
30894 wxPyEndAllowThreads(__tstate
);
30895 if (PyErr_Occurred()) SWIG_fail
;
30897 resultobj
= result
;
30904 SWIGINTERN PyObject
*_wrap_DataObject_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30905 PyObject
*resultobj
= 0;
30906 wxDataObject
*arg1
= (wxDataObject
*) 0 ;
30907 wxDataFormat
*arg2
= 0 ;
30908 PyObject
*arg3
= (PyObject
*) 0 ;
30914 PyObject
* obj0
= 0 ;
30915 PyObject
* obj1
= 0 ;
30916 PyObject
* obj2
= 0 ;
30917 char * kwnames
[] = {
30918 (char *) "self",(char *) "format",(char *) "data", NULL
30921 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DataObject_SetData",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30922 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObject
, 0 | 0 );
30923 if (!SWIG_IsOK(res1
)) {
30924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObject_SetData" "', expected argument " "1"" of type '" "wxDataObject *""'");
30926 arg1
= reinterpret_cast< wxDataObject
* >(argp1
);
30927 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30928 if (!SWIG_IsOK(res2
)) {
30929 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObject_SetData" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30932 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataObject_SetData" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
30934 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
30937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30938 result
= (bool)wxDataObject_SetData(arg1
,(wxDataFormat
const &)*arg2
,arg3
);
30939 wxPyEndAllowThreads(__tstate
);
30940 if (PyErr_Occurred()) SWIG_fail
;
30943 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30951 SWIGINTERN PyObject
*DataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30953 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30954 SWIG_TypeNewClientData(SWIGTYPE_p_wxDataObject
, SWIG_NewClientData(obj
));
30955 return SWIG_Py_Void();
30958 SWIGINTERN PyObject
*_wrap_new_DataObjectSimple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30959 PyObject
*resultobj
= 0;
30960 wxDataFormat
const &arg1_defvalue
= wxFormatInvalid
;
30961 wxDataFormat
*arg1
= (wxDataFormat
*) &arg1_defvalue
;
30962 wxDataObjectSimple
*result
= 0 ;
30965 PyObject
* obj0
= 0 ;
30966 char * kwnames
[] = {
30967 (char *) "format", NULL
30970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_DataObjectSimple",kwnames
,&obj0
)) SWIG_fail
;
30972 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
30973 if (!SWIG_IsOK(res1
)) {
30974 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DataObjectSimple" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
30977 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DataObjectSimple" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
30979 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
30982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30983 result
= (wxDataObjectSimple
*)new wxDataObjectSimple((wxDataFormat
const &)*arg1
);
30984 wxPyEndAllowThreads(__tstate
);
30985 if (PyErr_Occurred()) SWIG_fail
;
30987 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataObjectSimple
, SWIG_POINTER_NEW
| 0 );
30994 SWIGINTERN PyObject
*_wrap_DataObjectSimple_GetFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30995 PyObject
*resultobj
= 0;
30996 wxDataObjectSimple
*arg1
= (wxDataObjectSimple
*) 0 ;
30997 wxDataFormat
*result
= 0 ;
31000 PyObject
*swig_obj
[1] ;
31002 if (!args
) SWIG_fail
;
31003 swig_obj
[0] = args
;
31004 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataObjectSimple
, 0 | 0 );
31005 if (!SWIG_IsOK(res1
)) {
31006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectSimple_GetFormat" "', expected argument " "1"" of type '" "wxDataObjectSimple *""'");
31008 arg1
= reinterpret_cast< wxDataObjectSimple
* >(argp1
);
31010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31012 wxDataFormat
const &_result_ref
= (arg1
)->GetFormat();
31013 result
= (wxDataFormat
*) &_result_ref
;
31015 wxPyEndAllowThreads(__tstate
);
31016 if (PyErr_Occurred()) SWIG_fail
;
31018 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataFormat
, 0 | 0 );
31025 SWIGINTERN PyObject
*_wrap_DataObjectSimple_SetFormat(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31026 PyObject
*resultobj
= 0;
31027 wxDataObjectSimple
*arg1
= (wxDataObjectSimple
*) 0 ;
31028 wxDataFormat
*arg2
= 0 ;
31033 PyObject
* obj0
= 0 ;
31034 PyObject
* obj1
= 0 ;
31035 char * kwnames
[] = {
31036 (char *) "self",(char *) "format", NULL
31039 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataObjectSimple_SetFormat",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31040 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObjectSimple
, 0 | 0 );
31041 if (!SWIG_IsOK(res1
)) {
31042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectSimple_SetFormat" "', expected argument " "1"" of type '" "wxDataObjectSimple *""'");
31044 arg1
= reinterpret_cast< wxDataObjectSimple
* >(argp1
);
31045 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
31046 if (!SWIG_IsOK(res2
)) {
31047 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObjectSimple_SetFormat" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
31050 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DataObjectSimple_SetFormat" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
31052 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
31054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31055 (arg1
)->SetFormat((wxDataFormat
const &)*arg2
);
31056 wxPyEndAllowThreads(__tstate
);
31057 if (PyErr_Occurred()) SWIG_fail
;
31059 resultobj
= SWIG_Py_Void();
31066 SWIGINTERN PyObject
*_wrap_DataObjectSimple_GetDataSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31067 PyObject
*resultobj
= 0;
31068 wxDataObjectSimple
*arg1
= (wxDataObjectSimple
*) 0 ;
31072 PyObject
*swig_obj
[1] ;
31074 if (!args
) SWIG_fail
;
31075 swig_obj
[0] = args
;
31076 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataObjectSimple
, 0 | 0 );
31077 if (!SWIG_IsOK(res1
)) {
31078 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectSimple_GetDataSize" "', expected argument " "1"" of type '" "wxDataObjectSimple const *""'");
31080 arg1
= reinterpret_cast< wxDataObjectSimple
* >(argp1
);
31082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31083 result
= (size_t)((wxDataObjectSimple
const *)arg1
)->GetDataSize();
31084 wxPyEndAllowThreads(__tstate
);
31085 if (PyErr_Occurred()) SWIG_fail
;
31087 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
31094 SWIGINTERN PyObject
*_wrap_DataObjectSimple_GetDataHere(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31095 PyObject
*resultobj
= 0;
31096 wxDataObjectSimple
*arg1
= (wxDataObjectSimple
*) 0 ;
31097 PyObject
*result
= 0 ;
31100 PyObject
*swig_obj
[1] ;
31102 if (!args
) SWIG_fail
;
31103 swig_obj
[0] = args
;
31104 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDataObjectSimple
, 0 | 0 );
31105 if (!SWIG_IsOK(res1
)) {
31106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectSimple_GetDataHere" "', expected argument " "1"" of type '" "wxDataObjectSimple *""'");
31108 arg1
= reinterpret_cast< wxDataObjectSimple
* >(argp1
);
31110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31111 result
= (PyObject
*)wxDataObjectSimple_GetDataHere(arg1
);
31112 wxPyEndAllowThreads(__tstate
);
31113 if (PyErr_Occurred()) SWIG_fail
;
31115 resultobj
= result
;
31122 SWIGINTERN PyObject
*_wrap_DataObjectSimple_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31123 PyObject
*resultobj
= 0;
31124 wxDataObjectSimple
*arg1
= (wxDataObjectSimple
*) 0 ;
31125 PyObject
*arg2
= (PyObject
*) 0 ;
31129 PyObject
* obj0
= 0 ;
31130 PyObject
* obj1
= 0 ;
31131 char * kwnames
[] = {
31132 (char *) "self",(char *) "data", NULL
31135 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DataObjectSimple_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31136 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObjectSimple
, 0 | 0 );
31137 if (!SWIG_IsOK(res1
)) {
31138 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectSimple_SetData" "', expected argument " "1"" of type '" "wxDataObjectSimple *""'");
31140 arg1
= reinterpret_cast< wxDataObjectSimple
* >(argp1
);
31143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31144 result
= (bool)wxDataObjectSimple_SetData(arg1
,arg2
);
31145 wxPyEndAllowThreads(__tstate
);
31146 if (PyErr_Occurred()) SWIG_fail
;
31149 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
31157 SWIGINTERN PyObject
*DataObjectSimple_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31159 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31160 SWIG_TypeNewClientData(SWIGTYPE_p_wxDataObjectSimple
, SWIG_NewClientData(obj
));
31161 return SWIG_Py_Void();
31164 SWIGINTERN PyObject
*DataObjectSimple_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31165 return SWIG_Python_InitShadowInstance(args
);
31168 SWIGINTERN PyObject
*_wrap_new_PyDataObjectSimple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31169 PyObject
*resultobj
= 0;
31170 wxDataFormat
const &arg1_defvalue
= wxFormatInvalid
;
31171 wxDataFormat
*arg1
= (wxDataFormat
*) &arg1_defvalue
;
31172 wxPyDataObjectSimple
*result
= 0 ;
31175 PyObject
* obj0
= 0 ;
31176 char * kwnames
[] = {
31177 (char *) "format", NULL
31180 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PyDataObjectSimple",kwnames
,&obj0
)) SWIG_fail
;
31182 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
31183 if (!SWIG_IsOK(res1
)) {
31184 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyDataObjectSimple" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
31187 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PyDataObjectSimple" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
31189 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
31192 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31193 result
= (wxPyDataObjectSimple
*)new wxPyDataObjectSimple((wxDataFormat
const &)*arg1
);
31194 wxPyEndAllowThreads(__tstate
);
31195 if (PyErr_Occurred()) SWIG_fail
;
31197 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyDataObjectSimple
, SWIG_POINTER_NEW
| 0 );
31204 SWIGINTERN PyObject
*_wrap_PyDataObjectSimple__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31205 PyObject
*resultobj
= 0;
31206 wxPyDataObjectSimple
*arg1
= (wxPyDataObjectSimple
*) 0 ;
31207 PyObject
*arg2
= (PyObject
*) 0 ;
31208 PyObject
*arg3
= (PyObject
*) 0 ;
31211 PyObject
* obj0
= 0 ;
31212 PyObject
* obj1
= 0 ;
31213 PyObject
* obj2
= 0 ;
31214 char * kwnames
[] = {
31215 (char *) "self",(char *) "self",(char *) "_class", NULL
31218 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyDataObjectSimple__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31219 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDataObjectSimple
, 0 | 0 );
31220 if (!SWIG_IsOK(res1
)) {
31221 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyDataObjectSimple__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyDataObjectSimple *""'");
31223 arg1
= reinterpret_cast< wxPyDataObjectSimple
* >(argp1
);
31227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31228 (arg1
)->_setCallbackInfo(arg2
,arg3
);
31229 wxPyEndAllowThreads(__tstate
);
31230 if (PyErr_Occurred()) SWIG_fail
;
31232 resultobj
= SWIG_Py_Void();
31239 SWIGINTERN PyObject
*PyDataObjectSimple_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31241 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31242 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDataObjectSimple
, SWIG_NewClientData(obj
));
31243 return SWIG_Py_Void();
31246 SWIGINTERN PyObject
*PyDataObjectSimple_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31247 return SWIG_Python_InitShadowInstance(args
);
31250 SWIGINTERN PyObject
*_wrap_new_DataObjectComposite(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31251 PyObject
*resultobj
= 0;
31252 wxDataObjectComposite
*result
= 0 ;
31254 if (!SWIG_Python_UnpackTuple(args
,"new_DataObjectComposite",0,0,0)) SWIG_fail
;
31256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31257 result
= (wxDataObjectComposite
*)new wxDataObjectComposite();
31258 wxPyEndAllowThreads(__tstate
);
31259 if (PyErr_Occurred()) SWIG_fail
;
31261 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataObjectComposite
, SWIG_POINTER_NEW
| 0 );
31268 SWIGINTERN PyObject
*_wrap_DataObjectComposite_Add(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31269 PyObject
*resultobj
= 0;
31270 wxDataObjectComposite
*arg1
= (wxDataObjectComposite
*) 0 ;
31271 wxDataObjectSimple
*arg2
= (wxDataObjectSimple
*) 0 ;
31272 bool arg3
= (bool) false ;
31278 PyObject
* obj0
= 0 ;
31279 PyObject
* obj1
= 0 ;
31280 PyObject
* obj2
= 0 ;
31281 char * kwnames
[] = {
31282 (char *) "self",(char *) "dataObject",(char *) "preferred", NULL
31285 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DataObjectComposite_Add",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31286 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDataObjectComposite
, 0 | 0 );
31287 if (!SWIG_IsOK(res1
)) {
31288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DataObjectComposite_Add" "', expected argument " "1"" of type '" "wxDataObjectComposite *""'");
31290 arg1
= reinterpret_cast< wxDataObjectComposite
* >(argp1
);
31291 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDataObjectSimple
, SWIG_POINTER_DISOWN
| 0 );
31292 if (!SWIG_IsOK(res2
)) {
31293 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DataObjectComposite_Add" "', expected argument " "2"" of type '" "wxDataObjectSimple *""'");
31296 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
31297 if (!SWIG_IsOK(ecode3
)) {
31298 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DataObjectComposite_Add" "', expected argument " "3"" of type '" "bool""'");
31300 arg3
= static_cast< bool >(val3
);
31303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31304 (arg1
)->Add(arg2
,arg3
);
31305 wxPyEndAllowThreads(__tstate
);
31306 if (PyErr_Occurred()) SWIG_fail
;
31308 resultobj
= SWIG_Py_Void();
31315 SWIGINTERN PyObject
*DataObjectComposite_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31317 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31318 SWIG_TypeNewClientData(SWIGTYPE_p_wxDataObjectComposite
, SWIG_NewClientData(obj
));
31319 return SWIG_Py_Void();
31322 SWIGINTERN PyObject
*DataObjectComposite_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31323 return SWIG_Python_InitShadowInstance(args
);
31326 SWIGINTERN PyObject
*_wrap_new_TextDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31327 PyObject
*resultobj
= 0;
31328 wxString
const &arg1_defvalue
= wxPyEmptyString
;
31329 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
31330 wxTextDataObject
*result
= 0 ;
31331 bool temp1
= false ;
31332 PyObject
* obj0
= 0 ;
31333 char * kwnames
[] = {
31334 (char *) "text", NULL
31337 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_TextDataObject",kwnames
,&obj0
)) SWIG_fail
;
31340 arg1
= wxString_in_helper(obj0
);
31341 if (arg1
== NULL
) SWIG_fail
;
31346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31347 result
= (wxTextDataObject
*)new wxTextDataObject((wxString
const &)*arg1
);
31348 wxPyEndAllowThreads(__tstate
);
31349 if (PyErr_Occurred()) SWIG_fail
;
31351 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTextDataObject
, SWIG_POINTER_NEW
| 0 );
31366 SWIGINTERN PyObject
*_wrap_TextDataObject_GetTextLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31367 PyObject
*resultobj
= 0;
31368 wxTextDataObject
*arg1
= (wxTextDataObject
*) 0 ;
31372 PyObject
*swig_obj
[1] ;
31374 if (!args
) SWIG_fail
;
31375 swig_obj
[0] = args
;
31376 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTextDataObject
, 0 | 0 );
31377 if (!SWIG_IsOK(res1
)) {
31378 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDataObject_GetTextLength" "', expected argument " "1"" of type '" "wxTextDataObject *""'");
31380 arg1
= reinterpret_cast< wxTextDataObject
* >(argp1
);
31382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31383 result
= (size_t)(arg1
)->GetTextLength();
31384 wxPyEndAllowThreads(__tstate
);
31385 if (PyErr_Occurred()) SWIG_fail
;
31387 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
31394 SWIGINTERN PyObject
*_wrap_TextDataObject_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31395 PyObject
*resultobj
= 0;
31396 wxTextDataObject
*arg1
= (wxTextDataObject
*) 0 ;
31400 PyObject
*swig_obj
[1] ;
31402 if (!args
) SWIG_fail
;
31403 swig_obj
[0] = args
;
31404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTextDataObject
, 0 | 0 );
31405 if (!SWIG_IsOK(res1
)) {
31406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDataObject_GetText" "', expected argument " "1"" of type '" "wxTextDataObject *""'");
31408 arg1
= reinterpret_cast< wxTextDataObject
* >(argp1
);
31410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31411 result
= (arg1
)->GetText();
31412 wxPyEndAllowThreads(__tstate
);
31413 if (PyErr_Occurred()) SWIG_fail
;
31417 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
31419 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
31428 SWIGINTERN PyObject
*_wrap_TextDataObject_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31429 PyObject
*resultobj
= 0;
31430 wxTextDataObject
*arg1
= (wxTextDataObject
*) 0 ;
31431 wxString
*arg2
= 0 ;
31434 bool temp2
= false ;
31435 PyObject
* obj0
= 0 ;
31436 PyObject
* obj1
= 0 ;
31437 char * kwnames
[] = {
31438 (char *) "self",(char *) "text", NULL
31441 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextDataObject_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31442 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTextDataObject
, 0 | 0 );
31443 if (!SWIG_IsOK(res1
)) {
31444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDataObject_SetText" "', expected argument " "1"" of type '" "wxTextDataObject *""'");
31446 arg1
= reinterpret_cast< wxTextDataObject
* >(argp1
);
31448 arg2
= wxString_in_helper(obj1
);
31449 if (arg2
== NULL
) SWIG_fail
;
31453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31454 (arg1
)->SetText((wxString
const &)*arg2
);
31455 wxPyEndAllowThreads(__tstate
);
31456 if (PyErr_Occurred()) SWIG_fail
;
31458 resultobj
= SWIG_Py_Void();
31473 SWIGINTERN PyObject
*TextDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31475 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31476 SWIG_TypeNewClientData(SWIGTYPE_p_wxTextDataObject
, SWIG_NewClientData(obj
));
31477 return SWIG_Py_Void();
31480 SWIGINTERN PyObject
*TextDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31481 return SWIG_Python_InitShadowInstance(args
);
31484 SWIGINTERN PyObject
*_wrap_new_PyTextDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31485 PyObject
*resultobj
= 0;
31486 wxString
const &arg1_defvalue
= wxPyEmptyString
;
31487 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
31488 wxPyTextDataObject
*result
= 0 ;
31489 bool temp1
= false ;
31490 PyObject
* obj0
= 0 ;
31491 char * kwnames
[] = {
31492 (char *) "text", NULL
31495 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PyTextDataObject",kwnames
,&obj0
)) SWIG_fail
;
31498 arg1
= wxString_in_helper(obj0
);
31499 if (arg1
== NULL
) SWIG_fail
;
31504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31505 result
= (wxPyTextDataObject
*)new wxPyTextDataObject((wxString
const &)*arg1
);
31506 wxPyEndAllowThreads(__tstate
);
31507 if (PyErr_Occurred()) SWIG_fail
;
31509 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTextDataObject
, SWIG_POINTER_NEW
| 0 );
31524 SWIGINTERN PyObject
*_wrap_PyTextDataObject__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31525 PyObject
*resultobj
= 0;
31526 wxPyTextDataObject
*arg1
= (wxPyTextDataObject
*) 0 ;
31527 PyObject
*arg2
= (PyObject
*) 0 ;
31528 PyObject
*arg3
= (PyObject
*) 0 ;
31531 PyObject
* obj0
= 0 ;
31532 PyObject
* obj1
= 0 ;
31533 PyObject
* obj2
= 0 ;
31534 char * kwnames
[] = {
31535 (char *) "self",(char *) "self",(char *) "_class", NULL
31538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyTextDataObject__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDataObject
, 0 | 0 );
31540 if (!SWIG_IsOK(res1
)) {
31541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyTextDataObject__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTextDataObject *""'");
31543 arg1
= reinterpret_cast< wxPyTextDataObject
* >(argp1
);
31547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31548 (arg1
)->_setCallbackInfo(arg2
,arg3
);
31549 wxPyEndAllowThreads(__tstate
);
31550 if (PyErr_Occurred()) SWIG_fail
;
31552 resultobj
= SWIG_Py_Void();
31559 SWIGINTERN PyObject
*PyTextDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31561 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31562 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTextDataObject
, SWIG_NewClientData(obj
));
31563 return SWIG_Py_Void();
31566 SWIGINTERN PyObject
*PyTextDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31567 return SWIG_Python_InitShadowInstance(args
);
31570 SWIGINTERN PyObject
*_wrap_new_BitmapDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31571 PyObject
*resultobj
= 0;
31572 wxBitmap
const &arg1_defvalue
= wxNullBitmap
;
31573 wxBitmap
*arg1
= (wxBitmap
*) &arg1_defvalue
;
31574 wxBitmapDataObject
*result
= 0 ;
31577 PyObject
* obj0
= 0 ;
31578 char * kwnames
[] = {
31579 (char *) "bitmap", NULL
31582 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_BitmapDataObject",kwnames
,&obj0
)) SWIG_fail
;
31584 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
31585 if (!SWIG_IsOK(res1
)) {
31586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BitmapDataObject" "', expected argument " "1"" of type '" "wxBitmap const &""'");
31589 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BitmapDataObject" "', expected argument " "1"" of type '" "wxBitmap const &""'");
31591 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
31594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31595 result
= (wxBitmapDataObject
*)new wxBitmapDataObject((wxBitmap
const &)*arg1
);
31596 wxPyEndAllowThreads(__tstate
);
31597 if (PyErr_Occurred()) SWIG_fail
;
31599 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmapDataObject
, SWIG_POINTER_NEW
| 0 );
31606 SWIGINTERN PyObject
*_wrap_BitmapDataObject_GetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31607 PyObject
*resultobj
= 0;
31608 wxBitmapDataObject
*arg1
= (wxBitmapDataObject
*) 0 ;
31612 PyObject
*swig_obj
[1] ;
31614 if (!args
) SWIG_fail
;
31615 swig_obj
[0] = args
;
31616 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmapDataObject
, 0 | 0 );
31617 if (!SWIG_IsOK(res1
)) {
31618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BitmapDataObject_GetBitmap" "', expected argument " "1"" of type '" "wxBitmapDataObject const *""'");
31620 arg1
= reinterpret_cast< wxBitmapDataObject
* >(argp1
);
31622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31623 result
= ((wxBitmapDataObject
const *)arg1
)->GetBitmap();
31624 wxPyEndAllowThreads(__tstate
);
31625 if (PyErr_Occurred()) SWIG_fail
;
31627 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
31634 SWIGINTERN PyObject
*_wrap_BitmapDataObject_SetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31635 PyObject
*resultobj
= 0;
31636 wxBitmapDataObject
*arg1
= (wxBitmapDataObject
*) 0 ;
31637 wxBitmap
*arg2
= 0 ;
31642 PyObject
* obj0
= 0 ;
31643 PyObject
* obj1
= 0 ;
31644 char * kwnames
[] = {
31645 (char *) "self",(char *) "bitmap", NULL
31648 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapDataObject_SetBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31649 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmapDataObject
, 0 | 0 );
31650 if (!SWIG_IsOK(res1
)) {
31651 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BitmapDataObject_SetBitmap" "', expected argument " "1"" of type '" "wxBitmapDataObject *""'");
31653 arg1
= reinterpret_cast< wxBitmapDataObject
* >(argp1
);
31654 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
31655 if (!SWIG_IsOK(res2
)) {
31656 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "BitmapDataObject_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
31659 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "BitmapDataObject_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
31661 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
31663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31664 (arg1
)->SetBitmap((wxBitmap
const &)*arg2
);
31665 wxPyEndAllowThreads(__tstate
);
31666 if (PyErr_Occurred()) SWIG_fail
;
31668 resultobj
= SWIG_Py_Void();
31675 SWIGINTERN PyObject
*BitmapDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31677 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31678 SWIG_TypeNewClientData(SWIGTYPE_p_wxBitmapDataObject
, SWIG_NewClientData(obj
));
31679 return SWIG_Py_Void();
31682 SWIGINTERN PyObject
*BitmapDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31683 return SWIG_Python_InitShadowInstance(args
);
31686 SWIGINTERN PyObject
*_wrap_new_PyBitmapDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31687 PyObject
*resultobj
= 0;
31688 wxBitmap
const &arg1_defvalue
= wxNullBitmap
;
31689 wxBitmap
*arg1
= (wxBitmap
*) &arg1_defvalue
;
31690 wxPyBitmapDataObject
*result
= 0 ;
31693 PyObject
* obj0
= 0 ;
31694 char * kwnames
[] = {
31695 (char *) "bitmap", NULL
31698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PyBitmapDataObject",kwnames
,&obj0
)) SWIG_fail
;
31700 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
31701 if (!SWIG_IsOK(res1
)) {
31702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyBitmapDataObject" "', expected argument " "1"" of type '" "wxBitmap const &""'");
31705 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PyBitmapDataObject" "', expected argument " "1"" of type '" "wxBitmap const &""'");
31707 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
31710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31711 result
= (wxPyBitmapDataObject
*)new wxPyBitmapDataObject((wxBitmap
const &)*arg1
);
31712 wxPyEndAllowThreads(__tstate
);
31713 if (PyErr_Occurred()) SWIG_fail
;
31715 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyBitmapDataObject
, SWIG_POINTER_NEW
| 0 );
31722 SWIGINTERN PyObject
*_wrap_PyBitmapDataObject__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31723 PyObject
*resultobj
= 0;
31724 wxPyBitmapDataObject
*arg1
= (wxPyBitmapDataObject
*) 0 ;
31725 PyObject
*arg2
= (PyObject
*) 0 ;
31726 PyObject
*arg3
= (PyObject
*) 0 ;
31729 PyObject
* obj0
= 0 ;
31730 PyObject
* obj1
= 0 ;
31731 PyObject
* obj2
= 0 ;
31732 char * kwnames
[] = {
31733 (char *) "self",(char *) "self",(char *) "_class", NULL
31736 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyBitmapDataObject__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31737 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyBitmapDataObject
, 0 | 0 );
31738 if (!SWIG_IsOK(res1
)) {
31739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyBitmapDataObject__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyBitmapDataObject *""'");
31741 arg1
= reinterpret_cast< wxPyBitmapDataObject
* >(argp1
);
31745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31746 (arg1
)->_setCallbackInfo(arg2
,arg3
);
31747 wxPyEndAllowThreads(__tstate
);
31748 if (PyErr_Occurred()) SWIG_fail
;
31750 resultobj
= SWIG_Py_Void();
31757 SWIGINTERN PyObject
*PyBitmapDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31759 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31760 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyBitmapDataObject
, SWIG_NewClientData(obj
));
31761 return SWIG_Py_Void();
31764 SWIGINTERN PyObject
*PyBitmapDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31765 return SWIG_Python_InitShadowInstance(args
);
31768 SWIGINTERN PyObject
*_wrap_new_FileDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31769 PyObject
*resultobj
= 0;
31770 wxFileDataObject
*result
= 0 ;
31772 if (!SWIG_Python_UnpackTuple(args
,"new_FileDataObject",0,0,0)) SWIG_fail
;
31774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31775 result
= (wxFileDataObject
*)new wxFileDataObject();
31776 wxPyEndAllowThreads(__tstate
);
31777 if (PyErr_Occurred()) SWIG_fail
;
31779 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileDataObject
, SWIG_POINTER_NEW
| 0 );
31786 SWIGINTERN PyObject
*_wrap_FileDataObject_GetFilenames(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31787 PyObject
*resultobj
= 0;
31788 wxFileDataObject
*arg1
= (wxFileDataObject
*) 0 ;
31789 wxArrayString
*result
= 0 ;
31792 PyObject
*swig_obj
[1] ;
31794 if (!args
) SWIG_fail
;
31795 swig_obj
[0] = args
;
31796 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDataObject
, 0 | 0 );
31797 if (!SWIG_IsOK(res1
)) {
31798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDataObject_GetFilenames" "', expected argument " "1"" of type '" "wxFileDataObject *""'");
31800 arg1
= reinterpret_cast< wxFileDataObject
* >(argp1
);
31802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31804 wxArrayString
const &_result_ref
= (arg1
)->GetFilenames();
31805 result
= (wxArrayString
*) &_result_ref
;
31807 wxPyEndAllowThreads(__tstate
);
31808 if (PyErr_Occurred()) SWIG_fail
;
31811 resultobj
= wxArrayString2PyList_helper(*result
);
31819 SWIGINTERN PyObject
*_wrap_FileDataObject_AddFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31820 PyObject
*resultobj
= 0;
31821 wxFileDataObject
*arg1
= (wxFileDataObject
*) 0 ;
31822 wxString
*arg2
= 0 ;
31825 bool temp2
= false ;
31826 PyObject
* obj0
= 0 ;
31827 PyObject
* obj1
= 0 ;
31828 char * kwnames
[] = {
31829 (char *) "self",(char *) "filename", NULL
31832 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDataObject_AddFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31833 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDataObject
, 0 | 0 );
31834 if (!SWIG_IsOK(res1
)) {
31835 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDataObject_AddFile" "', expected argument " "1"" of type '" "wxFileDataObject *""'");
31837 arg1
= reinterpret_cast< wxFileDataObject
* >(argp1
);
31839 arg2
= wxString_in_helper(obj1
);
31840 if (arg2
== NULL
) SWIG_fail
;
31844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31845 (arg1
)->AddFile((wxString
const &)*arg2
);
31846 wxPyEndAllowThreads(__tstate
);
31847 if (PyErr_Occurred()) SWIG_fail
;
31849 resultobj
= SWIG_Py_Void();
31864 SWIGINTERN PyObject
*FileDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31866 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31867 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileDataObject
, SWIG_NewClientData(obj
));
31868 return SWIG_Py_Void();
31871 SWIGINTERN PyObject
*FileDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31872 return SWIG_Python_InitShadowInstance(args
);
31875 SWIGINTERN PyObject
*_wrap_new_CustomDataObject__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
31876 PyObject
*resultobj
= 0;
31877 wxDataFormat
*arg1
= 0 ;
31878 wxCustomDataObject
*result
= 0 ;
31882 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
31883 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
31884 if (!SWIG_IsOK(res1
)) {
31885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_CustomDataObject" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
31888 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_CustomDataObject" "', expected argument " "1"" of type '" "wxDataFormat const &""'");
31890 arg1
= reinterpret_cast< wxDataFormat
* >(argp1
);
31892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31893 result
= (wxCustomDataObject
*)new wxCustomDataObject((wxDataFormat
const &)*arg1
);
31894 wxPyEndAllowThreads(__tstate
);
31895 if (PyErr_Occurred()) SWIG_fail
;
31897 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCustomDataObject
, SWIG_POINTER_NEW
| 0 );
31904 SWIGINTERN PyObject
*_wrap_new_CustomDataObject__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
31905 PyObject
*resultobj
= 0;
31906 wxString
*arg1
= 0 ;
31907 wxCustomDataObject
*result
= 0 ;
31908 bool temp1
= false ;
31910 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
31912 arg1
= wxString_in_helper(swig_obj
[0]);
31913 if (arg1
== NULL
) SWIG_fail
;
31917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31918 result
= (wxCustomDataObject
*)new_wxCustomDataObject__SWIG_1((wxString
const &)*arg1
);
31919 wxPyEndAllowThreads(__tstate
);
31920 if (PyErr_Occurred()) SWIG_fail
;
31922 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCustomDataObject
, SWIG_POINTER_NEW
| 0 );
31937 SWIGINTERN PyObject
*_wrap_new_CustomDataObject__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
31938 PyObject
*resultobj
= 0;
31939 wxCustomDataObject
*result
= 0 ;
31941 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
31943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31944 result
= (wxCustomDataObject
*)new wxCustomDataObject();
31945 wxPyEndAllowThreads(__tstate
);
31946 if (PyErr_Occurred()) SWIG_fail
;
31948 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCustomDataObject
, SWIG_POINTER_NEW
| 0 );
31955 SWIGINTERN PyObject
*_wrap_new_CustomDataObject(PyObject
*self
, PyObject
*args
) {
31959 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_CustomDataObject",0,1,argv
))) SWIG_fail
;
31962 return _wrap_new_CustomDataObject__SWIG_2(self
, argc
, argv
);
31968 _v
= PyString_Check(argv
[0]) || PyUnicode_Check(argv
[0]);
31971 if (!_v
) goto check_2
;
31972 return _wrap_new_CustomDataObject__SWIG_1(self
, argc
, argv
);
31977 return _wrap_new_CustomDataObject__SWIG_0(self
, argc
, argv
);
31981 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_CustomDataObject'");
31986 SWIGINTERN PyObject
*_wrap_CustomDataObject_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31987 PyObject
*resultobj
= 0;
31988 wxCustomDataObject
*arg1
= (wxCustomDataObject
*) 0 ;
31989 PyObject
*arg2
= (PyObject
*) 0 ;
31993 PyObject
* obj0
= 0 ;
31994 PyObject
* obj1
= 0 ;
31995 char * kwnames
[] = {
31996 (char *) "self",(char *) "data", NULL
31999 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CustomDataObject_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32000 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCustomDataObject
, 0 | 0 );
32001 if (!SWIG_IsOK(res1
)) {
32002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CustomDataObject_SetData" "', expected argument " "1"" of type '" "wxCustomDataObject *""'");
32004 arg1
= reinterpret_cast< wxCustomDataObject
* >(argp1
);
32007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32008 result
= (bool)wxCustomDataObject_SetData(arg1
,arg2
);
32009 wxPyEndAllowThreads(__tstate
);
32010 if (PyErr_Occurred()) SWIG_fail
;
32013 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32021 SWIGINTERN PyObject
*_wrap_CustomDataObject_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32022 PyObject
*resultobj
= 0;
32023 wxCustomDataObject
*arg1
= (wxCustomDataObject
*) 0 ;
32027 PyObject
*swig_obj
[1] ;
32029 if (!args
) SWIG_fail
;
32030 swig_obj
[0] = args
;
32031 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCustomDataObject
, 0 | 0 );
32032 if (!SWIG_IsOK(res1
)) {
32033 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CustomDataObject_GetSize" "', expected argument " "1"" of type '" "wxCustomDataObject *""'");
32035 arg1
= reinterpret_cast< wxCustomDataObject
* >(argp1
);
32037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32038 result
= (size_t)(arg1
)->GetSize();
32039 wxPyEndAllowThreads(__tstate
);
32040 if (PyErr_Occurred()) SWIG_fail
;
32042 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
32049 SWIGINTERN PyObject
*_wrap_CustomDataObject_GetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32050 PyObject
*resultobj
= 0;
32051 wxCustomDataObject
*arg1
= (wxCustomDataObject
*) 0 ;
32052 PyObject
*result
= 0 ;
32055 PyObject
*swig_obj
[1] ;
32057 if (!args
) SWIG_fail
;
32058 swig_obj
[0] = args
;
32059 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCustomDataObject
, 0 | 0 );
32060 if (!SWIG_IsOK(res1
)) {
32061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CustomDataObject_GetData" "', expected argument " "1"" of type '" "wxCustomDataObject *""'");
32063 arg1
= reinterpret_cast< wxCustomDataObject
* >(argp1
);
32065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32066 result
= (PyObject
*)wxCustomDataObject_GetData(arg1
);
32067 wxPyEndAllowThreads(__tstate
);
32068 if (PyErr_Occurred()) SWIG_fail
;
32070 resultobj
= result
;
32077 SWIGINTERN PyObject
*CustomDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32079 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
32080 SWIG_TypeNewClientData(SWIGTYPE_p_wxCustomDataObject
, SWIG_NewClientData(obj
));
32081 return SWIG_Py_Void();
32084 SWIGINTERN PyObject
*CustomDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32085 return SWIG_Python_InitShadowInstance(args
);
32088 SWIGINTERN PyObject
*_wrap_new_URLDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32089 PyObject
*resultobj
= 0;
32090 wxURLDataObject
*result
= 0 ;
32092 if (!SWIG_Python_UnpackTuple(args
,"new_URLDataObject",0,0,0)) SWIG_fail
;
32094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32095 result
= (wxURLDataObject
*)new wxURLDataObject();
32096 wxPyEndAllowThreads(__tstate
);
32097 if (PyErr_Occurred()) SWIG_fail
;
32099 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxURLDataObject
, SWIG_POINTER_NEW
| 0 );
32106 SWIGINTERN PyObject
*_wrap_URLDataObject_GetURL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32107 PyObject
*resultobj
= 0;
32108 wxURLDataObject
*arg1
= (wxURLDataObject
*) 0 ;
32112 PyObject
*swig_obj
[1] ;
32114 if (!args
) SWIG_fail
;
32115 swig_obj
[0] = args
;
32116 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxURLDataObject
, 0 | 0 );
32117 if (!SWIG_IsOK(res1
)) {
32118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "URLDataObject_GetURL" "', expected argument " "1"" of type '" "wxURLDataObject *""'");
32120 arg1
= reinterpret_cast< wxURLDataObject
* >(argp1
);
32122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32123 result
= (arg1
)->GetURL();
32124 wxPyEndAllowThreads(__tstate
);
32125 if (PyErr_Occurred()) SWIG_fail
;
32129 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
32131 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
32140 SWIGINTERN PyObject
*_wrap_URLDataObject_SetURL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32141 PyObject
*resultobj
= 0;
32142 wxURLDataObject
*arg1
= (wxURLDataObject
*) 0 ;
32143 wxString
*arg2
= 0 ;
32146 bool temp2
= false ;
32147 PyObject
* obj0
= 0 ;
32148 PyObject
* obj1
= 0 ;
32149 char * kwnames
[] = {
32150 (char *) "self",(char *) "url", NULL
32153 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:URLDataObject_SetURL",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32154 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxURLDataObject
, 0 | 0 );
32155 if (!SWIG_IsOK(res1
)) {
32156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "URLDataObject_SetURL" "', expected argument " "1"" of type '" "wxURLDataObject *""'");
32158 arg1
= reinterpret_cast< wxURLDataObject
* >(argp1
);
32160 arg2
= wxString_in_helper(obj1
);
32161 if (arg2
== NULL
) SWIG_fail
;
32165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32166 (arg1
)->SetURL((wxString
const &)*arg2
);
32167 wxPyEndAllowThreads(__tstate
);
32168 if (PyErr_Occurred()) SWIG_fail
;
32170 resultobj
= SWIG_Py_Void();
32185 SWIGINTERN PyObject
*URLDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32187 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
32188 SWIG_TypeNewClientData(SWIGTYPE_p_wxURLDataObject
, SWIG_NewClientData(obj
));
32189 return SWIG_Py_Void();
32192 SWIGINTERN PyObject
*URLDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32193 return SWIG_Python_InitShadowInstance(args
);
32196 SWIGINTERN PyObject
*_wrap_new_MetafileDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32197 PyObject
*resultobj
= 0;
32198 wxMetafileDataObject
*result
= 0 ;
32200 if (!SWIG_Python_UnpackTuple(args
,"new_MetafileDataObject",0,0,0)) SWIG_fail
;
32202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32203 result
= (wxMetafileDataObject
*)new wxMetafileDataObject();
32204 wxPyEndAllowThreads(__tstate
);
32205 if (PyErr_Occurred()) SWIG_fail
;
32207 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMetafileDataObject
, SWIG_POINTER_NEW
| 0 );
32214 SWIGINTERN PyObject
*MetafileDataObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32216 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
32217 SWIG_TypeNewClientData(SWIGTYPE_p_wxMetafileDataObject
, SWIG_NewClientData(obj
));
32218 return SWIG_Py_Void();
32221 SWIGINTERN PyObject
*MetafileDataObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32222 return SWIG_Python_InitShadowInstance(args
);
32225 SWIGINTERN PyObject
*_wrap_IsDragResultOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32226 PyObject
*resultobj
= 0;
32227 wxDragResult arg1
;
32231 PyObject
* obj0
= 0 ;
32232 char * kwnames
[] = {
32233 (char *) "res", NULL
32236 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:IsDragResultOk",kwnames
,&obj0
)) SWIG_fail
;
32237 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
32238 if (!SWIG_IsOK(ecode1
)) {
32239 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "IsDragResultOk" "', expected argument " "1"" of type '" "wxDragResult""'");
32241 arg1
= static_cast< wxDragResult
>(val1
);
32243 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32244 result
= (bool)wxIsDragResultOk(arg1
);
32245 wxPyEndAllowThreads(__tstate
);
32246 if (PyErr_Occurred()) SWIG_fail
;
32249 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32257 SWIGINTERN PyObject
*_wrap_new_DropSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32258 PyObject
*resultobj
= 0;
32259 wxWindow
*arg1
= (wxWindow
*) 0 ;
32260 wxIcon
const &arg2_defvalue
= wxNullIcon
;
32261 wxIcon
*arg2
= (wxIcon
*) &arg2_defvalue
;
32262 wxIcon
const &arg3_defvalue
= wxNullIcon
;
32263 wxIcon
*arg3
= (wxIcon
*) &arg3_defvalue
;
32264 wxIcon
const &arg4_defvalue
= wxNullIcon
;
32265 wxIcon
*arg4
= (wxIcon
*) &arg4_defvalue
;
32266 wxPyDropSource
*result
= 0 ;
32275 PyObject
* obj0
= 0 ;
32276 PyObject
* obj1
= 0 ;
32277 PyObject
* obj2
= 0 ;
32278 PyObject
* obj3
= 0 ;
32279 char * kwnames
[] = {
32280 (char *) "win",(char *) "copy",(char *) "move",(char *) "none", NULL
32283 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:new_DropSource",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32284 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
32285 if (!SWIG_IsOK(res1
)) {
32286 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DropSource" "', expected argument " "1"" of type '" "wxWindow *""'");
32288 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
32290 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
32291 if (!SWIG_IsOK(res2
)) {
32292 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_DropSource" "', expected argument " "2"" of type '" "wxIcon const &""'");
32295 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DropSource" "', expected argument " "2"" of type '" "wxIcon const &""'");
32297 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
32300 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxIcon
, 0 | 0);
32301 if (!SWIG_IsOK(res3
)) {
32302 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_DropSource" "', expected argument " "3"" of type '" "wxIcon const &""'");
32305 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DropSource" "', expected argument " "3"" of type '" "wxIcon const &""'");
32307 arg3
= reinterpret_cast< wxIcon
* >(argp3
);
32310 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxIcon
, 0 | 0);
32311 if (!SWIG_IsOK(res4
)) {
32312 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_DropSource" "', expected argument " "4"" of type '" "wxIcon const &""'");
32315 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DropSource" "', expected argument " "4"" of type '" "wxIcon const &""'");
32317 arg4
= reinterpret_cast< wxIcon
* >(argp4
);
32320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32321 result
= (wxPyDropSource
*)new wxPyDropSource(arg1
,(wxIcon
const &)*arg2
,(wxIcon
const &)*arg3
,(wxIcon
const &)*arg4
);
32322 wxPyEndAllowThreads(__tstate
);
32323 if (PyErr_Occurred()) SWIG_fail
;
32325 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyDropSource
, SWIG_POINTER_NEW
| 0 );
32332 SWIGINTERN PyObject
*_wrap_DropSource__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32333 PyObject
*resultobj
= 0;
32334 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32335 PyObject
*arg2
= (PyObject
*) 0 ;
32336 PyObject
*arg3
= (PyObject
*) 0 ;
32342 PyObject
* obj0
= 0 ;
32343 PyObject
* obj1
= 0 ;
32344 PyObject
* obj2
= 0 ;
32345 PyObject
* obj3
= 0 ;
32346 char * kwnames
[] = {
32347 (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL
32350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DropSource__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32352 if (!SWIG_IsOK(res1
)) {
32353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32355 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32358 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32359 if (!SWIG_IsOK(ecode4
)) {
32360 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DropSource__setCallbackInfo" "', expected argument " "4"" of type '" "int""'");
32362 arg4
= static_cast< int >(val4
);
32364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32365 (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
);
32366 wxPyEndAllowThreads(__tstate
);
32367 if (PyErr_Occurred()) SWIG_fail
;
32369 resultobj
= SWIG_Py_Void();
32376 SWIGINTERN PyObject
*_wrap_delete_DropSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32377 PyObject
*resultobj
= 0;
32378 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32381 PyObject
*swig_obj
[1] ;
32383 if (!args
) SWIG_fail
;
32384 swig_obj
[0] = args
;
32385 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropSource
, SWIG_POINTER_DISOWN
| 0 );
32386 if (!SWIG_IsOK(res1
)) {
32387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DropSource" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32389 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32394 wxPyEndAllowThreads(__tstate
);
32395 if (PyErr_Occurred()) SWIG_fail
;
32397 resultobj
= SWIG_Py_Void();
32404 SWIGINTERN PyObject
*_wrap_DropSource_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32405 PyObject
*resultobj
= 0;
32406 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32407 wxDataObject
*arg2
= 0 ;
32412 PyObject
* obj0
= 0 ;
32413 PyObject
* obj1
= 0 ;
32414 char * kwnames
[] = {
32415 (char *) "self",(char *) "data", NULL
32418 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DropSource_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32419 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32420 if (!SWIG_IsOK(res1
)) {
32421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource_SetData" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32423 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32424 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataObject
, 0 );
32425 if (!SWIG_IsOK(res2
)) {
32426 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DropSource_SetData" "', expected argument " "2"" of type '" "wxDataObject &""'");
32429 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DropSource_SetData" "', expected argument " "2"" of type '" "wxDataObject &""'");
32431 arg2
= reinterpret_cast< wxDataObject
* >(argp2
);
32433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32434 (arg1
)->SetData(*arg2
);
32435 wxPyEndAllowThreads(__tstate
);
32436 if (PyErr_Occurred()) SWIG_fail
;
32438 resultobj
= SWIG_Py_Void();
32445 SWIGINTERN PyObject
*_wrap_DropSource_GetDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32446 PyObject
*resultobj
= 0;
32447 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32448 wxDataObject
*result
= 0 ;
32451 PyObject
*swig_obj
[1] ;
32453 if (!args
) SWIG_fail
;
32454 swig_obj
[0] = args
;
32455 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32456 if (!SWIG_IsOK(res1
)) {
32457 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource_GetDataObject" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32459 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32461 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32462 result
= (wxDataObject
*)(arg1
)->GetDataObject();
32463 wxPyEndAllowThreads(__tstate
);
32464 if (PyErr_Occurred()) SWIG_fail
;
32466 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataObject
, 0 | 0 );
32473 SWIGINTERN PyObject
*_wrap_DropSource_SetCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32474 PyObject
*resultobj
= 0;
32475 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32476 wxDragResult arg2
;
32477 wxCursor
*arg3
= 0 ;
32484 PyObject
* obj0
= 0 ;
32485 PyObject
* obj1
= 0 ;
32486 PyObject
* obj2
= 0 ;
32487 char * kwnames
[] = {
32488 (char *) "self",(char *) "res",(char *) "cursor", NULL
32491 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DropSource_SetCursor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32492 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32493 if (!SWIG_IsOK(res1
)) {
32494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource_SetCursor" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32496 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32497 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32498 if (!SWIG_IsOK(ecode2
)) {
32499 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropSource_SetCursor" "', expected argument " "2"" of type '" "wxDragResult""'");
32501 arg2
= static_cast< wxDragResult
>(val2
);
32502 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxCursor
, 0 | 0);
32503 if (!SWIG_IsOK(res3
)) {
32504 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DropSource_SetCursor" "', expected argument " "3"" of type '" "wxCursor const &""'");
32507 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DropSource_SetCursor" "', expected argument " "3"" of type '" "wxCursor const &""'");
32509 arg3
= reinterpret_cast< wxCursor
* >(argp3
);
32511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32512 (arg1
)->SetCursor(arg2
,(wxCursor
const &)*arg3
);
32513 wxPyEndAllowThreads(__tstate
);
32514 if (PyErr_Occurred()) SWIG_fail
;
32516 resultobj
= SWIG_Py_Void();
32523 SWIGINTERN PyObject
*_wrap_DropSource_DoDragDrop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32524 PyObject
*resultobj
= 0;
32525 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32526 int arg2
= (int) wxDrag_CopyOnly
;
32527 wxDragResult result
;
32532 PyObject
* obj0
= 0 ;
32533 PyObject
* obj1
= 0 ;
32534 char * kwnames
[] = {
32535 (char *) "self",(char *) "flags", NULL
32538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:DropSource_DoDragDrop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32540 if (!SWIG_IsOK(res1
)) {
32541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource_DoDragDrop" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32543 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32545 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32546 if (!SWIG_IsOK(ecode2
)) {
32547 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropSource_DoDragDrop" "', expected argument " "2"" of type '" "int""'");
32549 arg2
= static_cast< int >(val2
);
32552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32553 result
= (wxDragResult
)(arg1
)->DoDragDrop(arg2
);
32554 wxPyEndAllowThreads(__tstate
);
32555 if (PyErr_Occurred()) SWIG_fail
;
32557 resultobj
= SWIG_From_int(static_cast< int >(result
));
32564 SWIGINTERN PyObject
*_wrap_DropSource_GiveFeedback(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32565 PyObject
*resultobj
= 0;
32566 wxPyDropSource
*arg1
= (wxPyDropSource
*) 0 ;
32567 wxDragResult arg2
;
32573 PyObject
* obj0
= 0 ;
32574 PyObject
* obj1
= 0 ;
32575 char * kwnames
[] = {
32576 (char *) "self",(char *) "effect", NULL
32579 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DropSource_GiveFeedback",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32580 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropSource
, 0 | 0 );
32581 if (!SWIG_IsOK(res1
)) {
32582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropSource_GiveFeedback" "', expected argument " "1"" of type '" "wxPyDropSource *""'");
32584 arg1
= reinterpret_cast< wxPyDropSource
* >(argp1
);
32585 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32586 if (!SWIG_IsOK(ecode2
)) {
32587 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropSource_GiveFeedback" "', expected argument " "2"" of type '" "wxDragResult""'");
32589 arg2
= static_cast< wxDragResult
>(val2
);
32591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32592 result
= (bool)(arg1
)->GiveFeedback(arg2
);
32593 wxPyEndAllowThreads(__tstate
);
32594 if (PyErr_Occurred()) SWIG_fail
;
32597 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32605 SWIGINTERN PyObject
*DropSource_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32607 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
32608 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDropSource
, SWIG_NewClientData(obj
));
32609 return SWIG_Py_Void();
32612 SWIGINTERN PyObject
*DropSource_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32613 return SWIG_Python_InitShadowInstance(args
);
32616 SWIGINTERN PyObject
*_wrap_new_DropTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32617 PyObject
*resultobj
= 0;
32618 wxDataObject
*arg1
= (wxDataObject
*) NULL
;
32619 wxPyDropTarget
*result
= 0 ;
32621 PyObject
* obj0
= 0 ;
32622 char * kwnames
[] = {
32623 (char *) "dataObject", NULL
32626 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_DropTarget",kwnames
,&obj0
)) SWIG_fail
;
32628 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxDataObject
, SWIG_POINTER_DISOWN
| 0 );
32629 if (!SWIG_IsOK(res1
)) {
32630 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DropTarget" "', expected argument " "1"" of type '" "wxDataObject *""'");
32634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32635 result
= (wxPyDropTarget
*)new wxPyDropTarget(arg1
);
32636 wxPyEndAllowThreads(__tstate
);
32637 if (PyErr_Occurred()) SWIG_fail
;
32639 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyDropTarget
, SWIG_POINTER_NEW
| 0 );
32646 SWIGINTERN PyObject
*_wrap_DropTarget__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32647 PyObject
*resultobj
= 0;
32648 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32649 PyObject
*arg2
= (PyObject
*) 0 ;
32650 PyObject
*arg3
= (PyObject
*) 0 ;
32653 PyObject
* obj0
= 0 ;
32654 PyObject
* obj1
= 0 ;
32655 PyObject
* obj2
= 0 ;
32656 char * kwnames
[] = {
32657 (char *) "self",(char *) "self",(char *) "_class", NULL
32660 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DropTarget__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32661 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32662 if (!SWIG_IsOK(res1
)) {
32663 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32665 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32670 (arg1
)->_setCallbackInfo(arg2
,arg3
);
32671 wxPyEndAllowThreads(__tstate
);
32672 if (PyErr_Occurred()) SWIG_fail
;
32674 resultobj
= SWIG_Py_Void();
32681 SWIGINTERN PyObject
*_wrap_delete_DropTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32682 PyObject
*resultobj
= 0;
32683 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32686 PyObject
*swig_obj
[1] ;
32688 if (!args
) SWIG_fail
;
32689 swig_obj
[0] = args
;
32690 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropTarget
, SWIG_POINTER_DISOWN
| 0 );
32691 if (!SWIG_IsOK(res1
)) {
32692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DropTarget" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32694 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32696 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32699 wxPyEndAllowThreads(__tstate
);
32700 if (PyErr_Occurred()) SWIG_fail
;
32702 resultobj
= SWIG_Py_Void();
32709 SWIGINTERN PyObject
*_wrap_DropTarget_GetDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32710 PyObject
*resultobj
= 0;
32711 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32712 wxDataObject
*result
= 0 ;
32715 PyObject
*swig_obj
[1] ;
32717 if (!args
) SWIG_fail
;
32718 swig_obj
[0] = args
;
32719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32720 if (!SWIG_IsOK(res1
)) {
32721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_GetDataObject" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32723 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32726 result
= (wxDataObject
*)(arg1
)->GetDataObject();
32727 wxPyEndAllowThreads(__tstate
);
32728 if (PyErr_Occurred()) SWIG_fail
;
32730 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDataObject
, 0 | 0 );
32737 SWIGINTERN PyObject
*_wrap_DropTarget_SetDataObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32738 PyObject
*resultobj
= 0;
32739 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32740 wxDataObject
*arg2
= (wxDataObject
*) 0 ;
32744 PyObject
* obj0
= 0 ;
32745 PyObject
* obj1
= 0 ;
32746 char * kwnames
[] = {
32747 (char *) "self",(char *) "dataObject", NULL
32750 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DropTarget_SetDataObject",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32751 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32752 if (!SWIG_IsOK(res1
)) {
32753 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_SetDataObject" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32755 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32756 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDataObject
, SWIG_POINTER_DISOWN
| 0 );
32757 if (!SWIG_IsOK(res2
)) {
32758 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DropTarget_SetDataObject" "', expected argument " "2"" of type '" "wxDataObject *""'");
32761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32762 (arg1
)->SetDataObject(arg2
);
32763 wxPyEndAllowThreads(__tstate
);
32764 if (PyErr_Occurred()) SWIG_fail
;
32766 resultobj
= SWIG_Py_Void();
32773 SWIGINTERN PyObject
*_wrap_DropTarget_OnEnter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32774 PyObject
*resultobj
= 0;
32775 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32778 wxDragResult arg4
;
32779 wxDragResult result
;
32788 PyObject
* obj0
= 0 ;
32789 PyObject
* obj1
= 0 ;
32790 PyObject
* obj2
= 0 ;
32791 PyObject
* obj3
= 0 ;
32792 char * kwnames
[] = {
32793 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
32796 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DropTarget_OnEnter",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32797 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32798 if (!SWIG_IsOK(res1
)) {
32799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_OnEnter" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32801 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32802 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32803 if (!SWIG_IsOK(ecode2
)) {
32804 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropTarget_OnEnter" "', expected argument " "2"" of type '" "int""'");
32806 arg2
= static_cast< int >(val2
);
32807 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32808 if (!SWIG_IsOK(ecode3
)) {
32809 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DropTarget_OnEnter" "', expected argument " "3"" of type '" "int""'");
32811 arg3
= static_cast< int >(val3
);
32812 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32813 if (!SWIG_IsOK(ecode4
)) {
32814 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DropTarget_OnEnter" "', expected argument " "4"" of type '" "wxDragResult""'");
32816 arg4
= static_cast< wxDragResult
>(val4
);
32818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32819 result
= (wxDragResult
)(arg1
)->OnEnter(arg2
,arg3
,arg4
);
32820 wxPyEndAllowThreads(__tstate
);
32821 if (PyErr_Occurred()) SWIG_fail
;
32823 resultobj
= SWIG_From_int(static_cast< int >(result
));
32830 SWIGINTERN PyObject
*_wrap_DropTarget_OnDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32831 PyObject
*resultobj
= 0;
32832 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32835 wxDragResult arg4
;
32836 wxDragResult result
;
32845 PyObject
* obj0
= 0 ;
32846 PyObject
* obj1
= 0 ;
32847 PyObject
* obj2
= 0 ;
32848 PyObject
* obj3
= 0 ;
32849 char * kwnames
[] = {
32850 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
32853 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DropTarget_OnDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32854 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32855 if (!SWIG_IsOK(res1
)) {
32856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_OnDragOver" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32858 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32859 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32860 if (!SWIG_IsOK(ecode2
)) {
32861 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropTarget_OnDragOver" "', expected argument " "2"" of type '" "int""'");
32863 arg2
= static_cast< int >(val2
);
32864 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32865 if (!SWIG_IsOK(ecode3
)) {
32866 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DropTarget_OnDragOver" "', expected argument " "3"" of type '" "int""'");
32868 arg3
= static_cast< int >(val3
);
32869 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32870 if (!SWIG_IsOK(ecode4
)) {
32871 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DropTarget_OnDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
32873 arg4
= static_cast< wxDragResult
>(val4
);
32875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32876 result
= (wxDragResult
)(arg1
)->OnDragOver(arg2
,arg3
,arg4
);
32877 wxPyEndAllowThreads(__tstate
);
32878 if (PyErr_Occurred()) SWIG_fail
;
32880 resultobj
= SWIG_From_int(static_cast< int >(result
));
32887 SWIGINTERN PyObject
*_wrap_DropTarget_OnLeave(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32888 PyObject
*resultobj
= 0;
32889 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32892 PyObject
*swig_obj
[1] ;
32894 if (!args
) SWIG_fail
;
32895 swig_obj
[0] = args
;
32896 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32897 if (!SWIG_IsOK(res1
)) {
32898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_OnLeave" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32900 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32904 wxPyEndAllowThreads(__tstate
);
32905 if (PyErr_Occurred()) SWIG_fail
;
32907 resultobj
= SWIG_Py_Void();
32914 SWIGINTERN PyObject
*_wrap_DropTarget_OnDrop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32915 PyObject
*resultobj
= 0;
32916 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32926 PyObject
* obj0
= 0 ;
32927 PyObject
* obj1
= 0 ;
32928 PyObject
* obj2
= 0 ;
32929 char * kwnames
[] = {
32930 (char *) "self",(char *) "x",(char *) "y", NULL
32933 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DropTarget_OnDrop",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32934 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32935 if (!SWIG_IsOK(res1
)) {
32936 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_OnDrop" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32938 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32939 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32940 if (!SWIG_IsOK(ecode2
)) {
32941 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropTarget_OnDrop" "', expected argument " "2"" of type '" "int""'");
32943 arg2
= static_cast< int >(val2
);
32944 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32945 if (!SWIG_IsOK(ecode3
)) {
32946 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DropTarget_OnDrop" "', expected argument " "3"" of type '" "int""'");
32948 arg3
= static_cast< int >(val3
);
32950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32951 result
= (bool)(arg1
)->OnDrop(arg2
,arg3
);
32952 wxPyEndAllowThreads(__tstate
);
32953 if (PyErr_Occurred()) SWIG_fail
;
32956 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32964 SWIGINTERN PyObject
*_wrap_DropTarget_GetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
32965 PyObject
*resultobj
= 0;
32966 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32970 PyObject
*swig_obj
[1] ;
32972 if (!args
) SWIG_fail
;
32973 swig_obj
[0] = args
;
32974 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
32975 if (!SWIG_IsOK(res1
)) {
32976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_GetData" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
32978 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
32980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32981 result
= (bool)(arg1
)->GetData();
32982 wxPyEndAllowThreads(__tstate
);
32983 if (PyErr_Occurred()) SWIG_fail
;
32986 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32994 SWIGINTERN PyObject
*_wrap_DropTarget_SetDefaultAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32995 PyObject
*resultobj
= 0;
32996 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
32997 wxDragResult arg2
;
33002 PyObject
* obj0
= 0 ;
33003 PyObject
* obj1
= 0 ;
33004 char * kwnames
[] = {
33005 (char *) "self",(char *) "action", NULL
33008 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DropTarget_SetDefaultAction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
33009 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
33010 if (!SWIG_IsOK(res1
)) {
33011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_SetDefaultAction" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
33013 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
33014 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33015 if (!SWIG_IsOK(ecode2
)) {
33016 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DropTarget_SetDefaultAction" "', expected argument " "2"" of type '" "wxDragResult""'");
33018 arg2
= static_cast< wxDragResult
>(val2
);
33020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33021 (arg1
)->SetDefaultAction(arg2
);
33022 wxPyEndAllowThreads(__tstate
);
33023 if (PyErr_Occurred()) SWIG_fail
;
33025 resultobj
= SWIG_Py_Void();
33032 SWIGINTERN PyObject
*_wrap_DropTarget_GetDefaultAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33033 PyObject
*resultobj
= 0;
33034 wxPyDropTarget
*arg1
= (wxPyDropTarget
*) 0 ;
33035 wxDragResult result
;
33038 PyObject
*swig_obj
[1] ;
33040 if (!args
) SWIG_fail
;
33041 swig_obj
[0] = args
;
33042 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyDropTarget
, 0 | 0 );
33043 if (!SWIG_IsOK(res1
)) {
33044 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DropTarget_GetDefaultAction" "', expected argument " "1"" of type '" "wxPyDropTarget *""'");
33046 arg1
= reinterpret_cast< wxPyDropTarget
* >(argp1
);
33048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33049 result
= (wxDragResult
)(arg1
)->GetDefaultAction();
33050 wxPyEndAllowThreads(__tstate
);
33051 if (PyErr_Occurred()) SWIG_fail
;
33053 resultobj
= SWIG_From_int(static_cast< int >(result
));
33060 SWIGINTERN PyObject
*DropTarget_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33062 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
33063 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDropTarget
, SWIG_NewClientData(obj
));
33064 return SWIG_Py_Void();
33067 SWIGINTERN PyObject
*DropTarget_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33068 return SWIG_Python_InitShadowInstance(args
);
33071 SWIGINTERN PyObject
*_wrap_new_TextDropTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33072 PyObject
*resultobj
= 0;
33073 wxPyTextDropTarget
*result
= 0 ;
33075 if (!SWIG_Python_UnpackTuple(args
,"new_TextDropTarget",0,0,0)) SWIG_fail
;
33077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33078 result
= (wxPyTextDropTarget
*)new wxPyTextDropTarget();
33079 wxPyEndAllowThreads(__tstate
);
33080 if (PyErr_Occurred()) SWIG_fail
;
33082 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTextDropTarget
, SWIG_POINTER_NEW
| 0 );
33089 SWIGINTERN PyObject
*_wrap_TextDropTarget__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33090 PyObject
*resultobj
= 0;
33091 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33092 PyObject
*arg2
= (PyObject
*) 0 ;
33093 PyObject
*arg3
= (PyObject
*) 0 ;
33096 PyObject
* obj0
= 0 ;
33097 PyObject
* obj1
= 0 ;
33098 PyObject
* obj2
= 0 ;
33099 char * kwnames
[] = {
33100 (char *) "self",(char *) "self",(char *) "_class", NULL
33103 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextDropTarget__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33104 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33105 if (!SWIG_IsOK(res1
)) {
33106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33108 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33113 (arg1
)->_setCallbackInfo(arg2
,arg3
);
33114 wxPyEndAllowThreads(__tstate
);
33115 if (PyErr_Occurred()) SWIG_fail
;
33117 resultobj
= SWIG_Py_Void();
33124 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnDropText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33125 PyObject
*resultobj
= 0;
33126 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33129 wxString
*arg4
= 0 ;
33137 bool temp4
= false ;
33138 PyObject
* obj0
= 0 ;
33139 PyObject
* obj1
= 0 ;
33140 PyObject
* obj2
= 0 ;
33141 PyObject
* obj3
= 0 ;
33142 char * kwnames
[] = {
33143 (char *) "self",(char *) "x",(char *) "y",(char *) "text", NULL
33146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextDropTarget_OnDropText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33148 if (!SWIG_IsOK(res1
)) {
33149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnDropText" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33151 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33152 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33153 if (!SWIG_IsOK(ecode2
)) {
33154 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TextDropTarget_OnDropText" "', expected argument " "2"" of type '" "int""'");
33156 arg2
= static_cast< int >(val2
);
33157 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33158 if (!SWIG_IsOK(ecode3
)) {
33159 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TextDropTarget_OnDropText" "', expected argument " "3"" of type '" "int""'");
33161 arg3
= static_cast< int >(val3
);
33163 arg4
= wxString_in_helper(obj3
);
33164 if (arg4
== NULL
) SWIG_fail
;
33168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33169 result
= (bool)(arg1
)->OnDropText(arg2
,arg3
,(wxString
const &)*arg4
);
33170 wxPyEndAllowThreads(__tstate
);
33171 if (PyErr_Occurred()) SWIG_fail
;
33174 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33190 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnEnter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33191 PyObject
*resultobj
= 0;
33192 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33195 wxDragResult arg4
;
33196 wxDragResult result
;
33205 PyObject
* obj0
= 0 ;
33206 PyObject
* obj1
= 0 ;
33207 PyObject
* obj2
= 0 ;
33208 PyObject
* obj3
= 0 ;
33209 char * kwnames
[] = {
33210 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33213 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextDropTarget_OnEnter",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33214 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33215 if (!SWIG_IsOK(res1
)) {
33216 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnEnter" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33218 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33219 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33220 if (!SWIG_IsOK(ecode2
)) {
33221 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TextDropTarget_OnEnter" "', expected argument " "2"" of type '" "int""'");
33223 arg2
= static_cast< int >(val2
);
33224 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33225 if (!SWIG_IsOK(ecode3
)) {
33226 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TextDropTarget_OnEnter" "', expected argument " "3"" of type '" "int""'");
33228 arg3
= static_cast< int >(val3
);
33229 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33230 if (!SWIG_IsOK(ecode4
)) {
33231 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TextDropTarget_OnEnter" "', expected argument " "4"" of type '" "wxDragResult""'");
33233 arg4
= static_cast< wxDragResult
>(val4
);
33235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33236 result
= (wxDragResult
)(arg1
)->OnEnter(arg2
,arg3
,arg4
);
33237 wxPyEndAllowThreads(__tstate
);
33238 if (PyErr_Occurred()) SWIG_fail
;
33240 resultobj
= SWIG_From_int(static_cast< int >(result
));
33247 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33248 PyObject
*resultobj
= 0;
33249 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33252 wxDragResult arg4
;
33253 wxDragResult result
;
33262 PyObject
* obj0
= 0 ;
33263 PyObject
* obj1
= 0 ;
33264 PyObject
* obj2
= 0 ;
33265 PyObject
* obj3
= 0 ;
33266 char * kwnames
[] = {
33267 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33270 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextDropTarget_OnDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33271 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33272 if (!SWIG_IsOK(res1
)) {
33273 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnDragOver" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33275 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33276 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33277 if (!SWIG_IsOK(ecode2
)) {
33278 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TextDropTarget_OnDragOver" "', expected argument " "2"" of type '" "int""'");
33280 arg2
= static_cast< int >(val2
);
33281 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33282 if (!SWIG_IsOK(ecode3
)) {
33283 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TextDropTarget_OnDragOver" "', expected argument " "3"" of type '" "int""'");
33285 arg3
= static_cast< int >(val3
);
33286 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33287 if (!SWIG_IsOK(ecode4
)) {
33288 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TextDropTarget_OnDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
33290 arg4
= static_cast< wxDragResult
>(val4
);
33292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33293 result
= (wxDragResult
)(arg1
)->OnDragOver(arg2
,arg3
,arg4
);
33294 wxPyEndAllowThreads(__tstate
);
33295 if (PyErr_Occurred()) SWIG_fail
;
33297 resultobj
= SWIG_From_int(static_cast< int >(result
));
33304 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnLeave(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33305 PyObject
*resultobj
= 0;
33306 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33309 PyObject
*swig_obj
[1] ;
33311 if (!args
) SWIG_fail
;
33312 swig_obj
[0] = args
;
33313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33314 if (!SWIG_IsOK(res1
)) {
33315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnLeave" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33317 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33321 wxPyEndAllowThreads(__tstate
);
33322 if (PyErr_Occurred()) SWIG_fail
;
33324 resultobj
= SWIG_Py_Void();
33331 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnDrop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33332 PyObject
*resultobj
= 0;
33333 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33343 PyObject
* obj0
= 0 ;
33344 PyObject
* obj1
= 0 ;
33345 PyObject
* obj2
= 0 ;
33346 char * kwnames
[] = {
33347 (char *) "self",(char *) "x",(char *) "y", NULL
33350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextDropTarget_OnDrop",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33352 if (!SWIG_IsOK(res1
)) {
33353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnDrop" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33355 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33356 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33357 if (!SWIG_IsOK(ecode2
)) {
33358 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TextDropTarget_OnDrop" "', expected argument " "2"" of type '" "int""'");
33360 arg2
= static_cast< int >(val2
);
33361 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33362 if (!SWIG_IsOK(ecode3
)) {
33363 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TextDropTarget_OnDrop" "', expected argument " "3"" of type '" "int""'");
33365 arg3
= static_cast< int >(val3
);
33367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33368 result
= (bool)(arg1
)->OnDrop(arg2
,arg3
);
33369 wxPyEndAllowThreads(__tstate
);
33370 if (PyErr_Occurred()) SWIG_fail
;
33373 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33381 SWIGINTERN PyObject
*_wrap_TextDropTarget_OnData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33382 PyObject
*resultobj
= 0;
33383 wxPyTextDropTarget
*arg1
= (wxPyTextDropTarget
*) 0 ;
33386 wxDragResult arg4
;
33387 wxDragResult result
;
33396 PyObject
* obj0
= 0 ;
33397 PyObject
* obj1
= 0 ;
33398 PyObject
* obj2
= 0 ;
33399 PyObject
* obj3
= 0 ;
33400 char * kwnames
[] = {
33401 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33404 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextDropTarget_OnData",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33405 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTextDropTarget
, 0 | 0 );
33406 if (!SWIG_IsOK(res1
)) {
33407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextDropTarget_OnData" "', expected argument " "1"" of type '" "wxPyTextDropTarget *""'");
33409 arg1
= reinterpret_cast< wxPyTextDropTarget
* >(argp1
);
33410 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33411 if (!SWIG_IsOK(ecode2
)) {
33412 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TextDropTarget_OnData" "', expected argument " "2"" of type '" "int""'");
33414 arg2
= static_cast< int >(val2
);
33415 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33416 if (!SWIG_IsOK(ecode3
)) {
33417 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TextDropTarget_OnData" "', expected argument " "3"" of type '" "int""'");
33419 arg3
= static_cast< int >(val3
);
33420 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33421 if (!SWIG_IsOK(ecode4
)) {
33422 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TextDropTarget_OnData" "', expected argument " "4"" of type '" "wxDragResult""'");
33424 arg4
= static_cast< wxDragResult
>(val4
);
33426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33427 result
= (wxDragResult
)(arg1
)->OnData(arg2
,arg3
,arg4
);
33428 wxPyEndAllowThreads(__tstate
);
33429 if (PyErr_Occurred()) SWIG_fail
;
33431 resultobj
= SWIG_From_int(static_cast< int >(result
));
33438 SWIGINTERN PyObject
*TextDropTarget_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33440 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
33441 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTextDropTarget
, SWIG_NewClientData(obj
));
33442 return SWIG_Py_Void();
33445 SWIGINTERN PyObject
*TextDropTarget_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33446 return SWIG_Python_InitShadowInstance(args
);
33449 SWIGINTERN PyObject
*_wrap_new_FileDropTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33450 PyObject
*resultobj
= 0;
33451 wxPyFileDropTarget
*result
= 0 ;
33453 if (!SWIG_Python_UnpackTuple(args
,"new_FileDropTarget",0,0,0)) SWIG_fail
;
33455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33456 result
= (wxPyFileDropTarget
*)new wxPyFileDropTarget();
33457 wxPyEndAllowThreads(__tstate
);
33458 if (PyErr_Occurred()) SWIG_fail
;
33460 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyFileDropTarget
, SWIG_POINTER_NEW
| 0 );
33467 SWIGINTERN PyObject
*_wrap_FileDropTarget__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33468 PyObject
*resultobj
= 0;
33469 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33470 PyObject
*arg2
= (PyObject
*) 0 ;
33471 PyObject
*arg3
= (PyObject
*) 0 ;
33474 PyObject
* obj0
= 0 ;
33475 PyObject
* obj1
= 0 ;
33476 PyObject
* obj2
= 0 ;
33477 char * kwnames
[] = {
33478 (char *) "self",(char *) "self",(char *) "_class", NULL
33481 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FileDropTarget__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33482 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33483 if (!SWIG_IsOK(res1
)) {
33484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33486 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33491 (arg1
)->_setCallbackInfo(arg2
,arg3
);
33492 wxPyEndAllowThreads(__tstate
);
33493 if (PyErr_Occurred()) SWIG_fail
;
33495 resultobj
= SWIG_Py_Void();
33502 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnDropFiles(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33503 PyObject
*resultobj
= 0;
33504 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33507 wxArrayString
*arg4
= 0 ;
33515 bool temp4
= false ;
33516 PyObject
* obj0
= 0 ;
33517 PyObject
* obj1
= 0 ;
33518 PyObject
* obj2
= 0 ;
33519 PyObject
* obj3
= 0 ;
33520 char * kwnames
[] = {
33521 (char *) "self",(char *) "x",(char *) "y",(char *) "filenames", NULL
33524 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FileDropTarget_OnDropFiles",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33525 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33526 if (!SWIG_IsOK(res1
)) {
33527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnDropFiles" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33529 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33530 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33531 if (!SWIG_IsOK(ecode2
)) {
33532 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDropTarget_OnDropFiles" "', expected argument " "2"" of type '" "int""'");
33534 arg2
= static_cast< int >(val2
);
33535 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33536 if (!SWIG_IsOK(ecode3
)) {
33537 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileDropTarget_OnDropFiles" "', expected argument " "3"" of type '" "int""'");
33539 arg3
= static_cast< int >(val3
);
33541 if (! PySequence_Check(obj3
)) {
33542 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
33545 arg4
= new wxArrayString
;
33547 int i
, len
=PySequence_Length(obj3
);
33548 for (i
=0; i
<len
; i
++) {
33549 PyObject
* item
= PySequence_GetItem(obj3
, i
);
33550 wxString
* s
= wxString_in_helper(item
);
33551 if (PyErr_Occurred()) SWIG_fail
;
33558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33559 result
= (bool)(arg1
)->OnDropFiles(arg2
,arg3
,(wxArrayString
const &)*arg4
);
33560 wxPyEndAllowThreads(__tstate
);
33561 if (PyErr_Occurred()) SWIG_fail
;
33564 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33567 if (temp4
) delete arg4
;
33572 if (temp4
) delete arg4
;
33578 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnEnter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33579 PyObject
*resultobj
= 0;
33580 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33583 wxDragResult arg4
;
33584 wxDragResult result
;
33593 PyObject
* obj0
= 0 ;
33594 PyObject
* obj1
= 0 ;
33595 PyObject
* obj2
= 0 ;
33596 PyObject
* obj3
= 0 ;
33597 char * kwnames
[] = {
33598 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33601 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FileDropTarget_OnEnter",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33602 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33603 if (!SWIG_IsOK(res1
)) {
33604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnEnter" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33606 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33607 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33608 if (!SWIG_IsOK(ecode2
)) {
33609 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDropTarget_OnEnter" "', expected argument " "2"" of type '" "int""'");
33611 arg2
= static_cast< int >(val2
);
33612 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33613 if (!SWIG_IsOK(ecode3
)) {
33614 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileDropTarget_OnEnter" "', expected argument " "3"" of type '" "int""'");
33616 arg3
= static_cast< int >(val3
);
33617 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33618 if (!SWIG_IsOK(ecode4
)) {
33619 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FileDropTarget_OnEnter" "', expected argument " "4"" of type '" "wxDragResult""'");
33621 arg4
= static_cast< wxDragResult
>(val4
);
33623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33624 result
= (wxDragResult
)(arg1
)->OnEnter(arg2
,arg3
,arg4
);
33625 wxPyEndAllowThreads(__tstate
);
33626 if (PyErr_Occurred()) SWIG_fail
;
33628 resultobj
= SWIG_From_int(static_cast< int >(result
));
33635 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33636 PyObject
*resultobj
= 0;
33637 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33640 wxDragResult arg4
;
33641 wxDragResult result
;
33650 PyObject
* obj0
= 0 ;
33651 PyObject
* obj1
= 0 ;
33652 PyObject
* obj2
= 0 ;
33653 PyObject
* obj3
= 0 ;
33654 char * kwnames
[] = {
33655 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33658 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FileDropTarget_OnDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33659 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33660 if (!SWIG_IsOK(res1
)) {
33661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnDragOver" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33663 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33664 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33665 if (!SWIG_IsOK(ecode2
)) {
33666 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDropTarget_OnDragOver" "', expected argument " "2"" of type '" "int""'");
33668 arg2
= static_cast< int >(val2
);
33669 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33670 if (!SWIG_IsOK(ecode3
)) {
33671 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileDropTarget_OnDragOver" "', expected argument " "3"" of type '" "int""'");
33673 arg3
= static_cast< int >(val3
);
33674 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33675 if (!SWIG_IsOK(ecode4
)) {
33676 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FileDropTarget_OnDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
33678 arg4
= static_cast< wxDragResult
>(val4
);
33680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33681 result
= (wxDragResult
)(arg1
)->OnDragOver(arg2
,arg3
,arg4
);
33682 wxPyEndAllowThreads(__tstate
);
33683 if (PyErr_Occurred()) SWIG_fail
;
33685 resultobj
= SWIG_From_int(static_cast< int >(result
));
33692 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnLeave(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33693 PyObject
*resultobj
= 0;
33694 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33697 PyObject
*swig_obj
[1] ;
33699 if (!args
) SWIG_fail
;
33700 swig_obj
[0] = args
;
33701 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33702 if (!SWIG_IsOK(res1
)) {
33703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnLeave" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33705 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33709 wxPyEndAllowThreads(__tstate
);
33710 if (PyErr_Occurred()) SWIG_fail
;
33712 resultobj
= SWIG_Py_Void();
33719 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnDrop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33720 PyObject
*resultobj
= 0;
33721 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33731 PyObject
* obj0
= 0 ;
33732 PyObject
* obj1
= 0 ;
33733 PyObject
* obj2
= 0 ;
33734 char * kwnames
[] = {
33735 (char *) "self",(char *) "x",(char *) "y", NULL
33738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FileDropTarget_OnDrop",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33740 if (!SWIG_IsOK(res1
)) {
33741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnDrop" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33743 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33744 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33745 if (!SWIG_IsOK(ecode2
)) {
33746 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDropTarget_OnDrop" "', expected argument " "2"" of type '" "int""'");
33748 arg2
= static_cast< int >(val2
);
33749 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33750 if (!SWIG_IsOK(ecode3
)) {
33751 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileDropTarget_OnDrop" "', expected argument " "3"" of type '" "int""'");
33753 arg3
= static_cast< int >(val3
);
33755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33756 result
= (bool)(arg1
)->OnDrop(arg2
,arg3
);
33757 wxPyEndAllowThreads(__tstate
);
33758 if (PyErr_Occurred()) SWIG_fail
;
33761 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33769 SWIGINTERN PyObject
*_wrap_FileDropTarget_OnData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33770 PyObject
*resultobj
= 0;
33771 wxPyFileDropTarget
*arg1
= (wxPyFileDropTarget
*) 0 ;
33774 wxDragResult arg4
;
33775 wxDragResult result
;
33784 PyObject
* obj0
= 0 ;
33785 PyObject
* obj1
= 0 ;
33786 PyObject
* obj2
= 0 ;
33787 PyObject
* obj3
= 0 ;
33788 char * kwnames
[] = {
33789 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
33792 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FileDropTarget_OnData",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33793 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFileDropTarget
, 0 | 0 );
33794 if (!SWIG_IsOK(res1
)) {
33795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDropTarget_OnData" "', expected argument " "1"" of type '" "wxPyFileDropTarget *""'");
33797 arg1
= reinterpret_cast< wxPyFileDropTarget
* >(argp1
);
33798 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33799 if (!SWIG_IsOK(ecode2
)) {
33800 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDropTarget_OnData" "', expected argument " "2"" of type '" "int""'");
33802 arg2
= static_cast< int >(val2
);
33803 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33804 if (!SWIG_IsOK(ecode3
)) {
33805 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FileDropTarget_OnData" "', expected argument " "3"" of type '" "int""'");
33807 arg3
= static_cast< int >(val3
);
33808 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33809 if (!SWIG_IsOK(ecode4
)) {
33810 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FileDropTarget_OnData" "', expected argument " "4"" of type '" "wxDragResult""'");
33812 arg4
= static_cast< wxDragResult
>(val4
);
33814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33815 result
= (wxDragResult
)(arg1
)->OnData(arg2
,arg3
,arg4
);
33816 wxPyEndAllowThreads(__tstate
);
33817 if (PyErr_Occurred()) SWIG_fail
;
33819 resultobj
= SWIG_From_int(static_cast< int >(result
));
33826 SWIGINTERN PyObject
*FileDropTarget_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33828 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
33829 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyFileDropTarget
, SWIG_NewClientData(obj
));
33830 return SWIG_Py_Void();
33833 SWIGINTERN PyObject
*FileDropTarget_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33834 return SWIG_Python_InitShadowInstance(args
);
33837 SWIGINTERN PyObject
*_wrap_new_Clipboard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33838 PyObject
*resultobj
= 0;
33839 wxClipboard
*result
= 0 ;
33841 if (!SWIG_Python_UnpackTuple(args
,"new_Clipboard",0,0,0)) SWIG_fail
;
33843 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33844 result
= (wxClipboard
*)new wxClipboard();
33845 wxPyEndAllowThreads(__tstate
);
33846 if (PyErr_Occurred()) SWIG_fail
;
33848 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxClipboard
, SWIG_POINTER_NEW
| 0 );
33855 SWIGINTERN PyObject
*_wrap_delete_Clipboard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33856 PyObject
*resultobj
= 0;
33857 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
33860 PyObject
*swig_obj
[1] ;
33862 if (!args
) SWIG_fail
;
33863 swig_obj
[0] = args
;
33864 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, SWIG_POINTER_DISOWN
| 0 );
33865 if (!SWIG_IsOK(res1
)) {
33866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Clipboard" "', expected argument " "1"" of type '" "wxClipboard *""'");
33868 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
33870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33873 wxPyEndAllowThreads(__tstate
);
33874 if (PyErr_Occurred()) SWIG_fail
;
33876 resultobj
= SWIG_Py_Void();
33883 SWIGINTERN PyObject
*_wrap_Clipboard_Open(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33884 PyObject
*resultobj
= 0;
33885 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
33889 PyObject
*swig_obj
[1] ;
33891 if (!args
) SWIG_fail
;
33892 swig_obj
[0] = args
;
33893 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
33894 if (!SWIG_IsOK(res1
)) {
33895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_Open" "', expected argument " "1"" of type '" "wxClipboard *""'");
33897 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
33899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33900 result
= (bool)(arg1
)->Open();
33901 wxPyEndAllowThreads(__tstate
);
33902 if (PyErr_Occurred()) SWIG_fail
;
33905 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33913 SWIGINTERN PyObject
*_wrap_Clipboard_Close(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33914 PyObject
*resultobj
= 0;
33915 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
33918 PyObject
*swig_obj
[1] ;
33920 if (!args
) SWIG_fail
;
33921 swig_obj
[0] = args
;
33922 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
33923 if (!SWIG_IsOK(res1
)) {
33924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_Close" "', expected argument " "1"" of type '" "wxClipboard *""'");
33926 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
33928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33930 wxPyEndAllowThreads(__tstate
);
33931 if (PyErr_Occurred()) SWIG_fail
;
33933 resultobj
= SWIG_Py_Void();
33940 SWIGINTERN PyObject
*_wrap_Clipboard_IsOpened(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
33941 PyObject
*resultobj
= 0;
33942 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
33946 PyObject
*swig_obj
[1] ;
33948 if (!args
) SWIG_fail
;
33949 swig_obj
[0] = args
;
33950 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
33951 if (!SWIG_IsOK(res1
)) {
33952 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_IsOpened" "', expected argument " "1"" of type '" "wxClipboard const *""'");
33954 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
33956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33957 result
= (bool)((wxClipboard
const *)arg1
)->IsOpened();
33958 wxPyEndAllowThreads(__tstate
);
33959 if (PyErr_Occurred()) SWIG_fail
;
33962 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33970 SWIGINTERN PyObject
*_wrap_Clipboard_AddData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33971 PyObject
*resultobj
= 0;
33972 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
33973 wxDataObject
*arg2
= (wxDataObject
*) 0 ;
33978 PyObject
* obj0
= 0 ;
33979 PyObject
* obj1
= 0 ;
33980 char * kwnames
[] = {
33981 (char *) "self",(char *) "data", NULL
33984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Clipboard_AddData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
33985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
33986 if (!SWIG_IsOK(res1
)) {
33987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_AddData" "', expected argument " "1"" of type '" "wxClipboard *""'");
33989 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
33990 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDataObject
, SWIG_POINTER_DISOWN
| 0 );
33991 if (!SWIG_IsOK(res2
)) {
33992 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Clipboard_AddData" "', expected argument " "2"" of type '" "wxDataObject *""'");
33995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33996 result
= (bool)(arg1
)->AddData(arg2
);
33997 wxPyEndAllowThreads(__tstate
);
33998 if (PyErr_Occurred()) SWIG_fail
;
34001 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34009 SWIGINTERN PyObject
*_wrap_Clipboard_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34010 PyObject
*resultobj
= 0;
34011 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34012 wxDataObject
*arg2
= (wxDataObject
*) 0 ;
34017 PyObject
* obj0
= 0 ;
34018 PyObject
* obj1
= 0 ;
34019 char * kwnames
[] = {
34020 (char *) "self",(char *) "data", NULL
34023 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Clipboard_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34024 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34025 if (!SWIG_IsOK(res1
)) {
34026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_SetData" "', expected argument " "1"" of type '" "wxClipboard *""'");
34028 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34029 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDataObject
, SWIG_POINTER_DISOWN
| 0 );
34030 if (!SWIG_IsOK(res2
)) {
34031 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Clipboard_SetData" "', expected argument " "2"" of type '" "wxDataObject *""'");
34034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34035 result
= (bool)(arg1
)->SetData(arg2
);
34036 wxPyEndAllowThreads(__tstate
);
34037 if (PyErr_Occurred()) SWIG_fail
;
34040 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34048 SWIGINTERN PyObject
*_wrap_Clipboard_IsSupported(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34049 PyObject
*resultobj
= 0;
34050 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34051 wxDataFormat
*arg2
= 0 ;
34057 PyObject
* obj0
= 0 ;
34058 PyObject
* obj1
= 0 ;
34059 char * kwnames
[] = {
34060 (char *) "self",(char *) "format", NULL
34063 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Clipboard_IsSupported",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34064 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34065 if (!SWIG_IsOK(res1
)) {
34066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_IsSupported" "', expected argument " "1"" of type '" "wxClipboard *""'");
34068 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34069 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataFormat
, 0 | 0);
34070 if (!SWIG_IsOK(res2
)) {
34071 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Clipboard_IsSupported" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
34074 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Clipboard_IsSupported" "', expected argument " "2"" of type '" "wxDataFormat const &""'");
34076 arg2
= reinterpret_cast< wxDataFormat
* >(argp2
);
34078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34079 result
= (bool)(arg1
)->IsSupported((wxDataFormat
const &)*arg2
);
34080 wxPyEndAllowThreads(__tstate
);
34081 if (PyErr_Occurred()) SWIG_fail
;
34084 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34092 SWIGINTERN PyObject
*_wrap_Clipboard_GetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34093 PyObject
*resultobj
= 0;
34094 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34095 wxDataObject
*arg2
= 0 ;
34101 PyObject
* obj0
= 0 ;
34102 PyObject
* obj1
= 0 ;
34103 char * kwnames
[] = {
34104 (char *) "self",(char *) "data", NULL
34107 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Clipboard_GetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34108 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34109 if (!SWIG_IsOK(res1
)) {
34110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_GetData" "', expected argument " "1"" of type '" "wxClipboard *""'");
34112 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34113 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDataObject
, 0 );
34114 if (!SWIG_IsOK(res2
)) {
34115 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Clipboard_GetData" "', expected argument " "2"" of type '" "wxDataObject &""'");
34118 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Clipboard_GetData" "', expected argument " "2"" of type '" "wxDataObject &""'");
34120 arg2
= reinterpret_cast< wxDataObject
* >(argp2
);
34122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34123 result
= (bool)(arg1
)->GetData(*arg2
);
34124 wxPyEndAllowThreads(__tstate
);
34125 if (PyErr_Occurred()) SWIG_fail
;
34128 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34136 SWIGINTERN PyObject
*_wrap_Clipboard_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34137 PyObject
*resultobj
= 0;
34138 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34141 PyObject
*swig_obj
[1] ;
34143 if (!args
) SWIG_fail
;
34144 swig_obj
[0] = args
;
34145 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34146 if (!SWIG_IsOK(res1
)) {
34147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_Clear" "', expected argument " "1"" of type '" "wxClipboard *""'");
34149 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34153 wxPyEndAllowThreads(__tstate
);
34154 if (PyErr_Occurred()) SWIG_fail
;
34156 resultobj
= SWIG_Py_Void();
34163 SWIGINTERN PyObject
*_wrap_Clipboard_Flush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34164 PyObject
*resultobj
= 0;
34165 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34169 PyObject
*swig_obj
[1] ;
34171 if (!args
) SWIG_fail
;
34172 swig_obj
[0] = args
;
34173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34174 if (!SWIG_IsOK(res1
)) {
34175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_Flush" "', expected argument " "1"" of type '" "wxClipboard *""'");
34177 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34180 result
= (bool)(arg1
)->Flush();
34181 wxPyEndAllowThreads(__tstate
);
34182 if (PyErr_Occurred()) SWIG_fail
;
34185 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34193 SWIGINTERN PyObject
*_wrap_Clipboard_UsePrimarySelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34194 PyObject
*resultobj
= 0;
34195 wxClipboard
*arg1
= (wxClipboard
*) 0 ;
34196 bool arg2
= (bool) true ;
34201 PyObject
* obj0
= 0 ;
34202 PyObject
* obj1
= 0 ;
34203 char * kwnames
[] = {
34204 (char *) "self",(char *) "primary", NULL
34207 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Clipboard_UsePrimarySelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34208 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34209 if (!SWIG_IsOK(res1
)) {
34210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Clipboard_UsePrimarySelection" "', expected argument " "1"" of type '" "wxClipboard *""'");
34212 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34214 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
34215 if (!SWIG_IsOK(ecode2
)) {
34216 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Clipboard_UsePrimarySelection" "', expected argument " "2"" of type '" "bool""'");
34218 arg2
= static_cast< bool >(val2
);
34221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34222 (arg1
)->UsePrimarySelection(arg2
);
34223 wxPyEndAllowThreads(__tstate
);
34224 if (PyErr_Occurred()) SWIG_fail
;
34226 resultobj
= SWIG_Py_Void();
34233 SWIGINTERN PyObject
*_wrap_Clipboard_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34234 PyObject
*resultobj
= 0;
34235 wxClipboard
*result
= 0 ;
34237 if (!SWIG_Python_UnpackTuple(args
,"Clipboard_Get",0,0,0)) SWIG_fail
;
34239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34240 result
= (wxClipboard
*)wxClipboard::Get();
34241 wxPyEndAllowThreads(__tstate
);
34242 if (PyErr_Occurred()) SWIG_fail
;
34244 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxClipboard
, 0 | 0 );
34251 SWIGINTERN PyObject
*Clipboard_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34253 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
34254 SWIG_TypeNewClientData(SWIGTYPE_p_wxClipboard
, SWIG_NewClientData(obj
));
34255 return SWIG_Py_Void();
34258 SWIGINTERN PyObject
*Clipboard_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34259 return SWIG_Python_InitShadowInstance(args
);
34262 SWIGINTERN PyObject
*_wrap_new_ClipboardLocker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34263 PyObject
*resultobj
= 0;
34264 wxClipboard
*arg1
= (wxClipboard
*) NULL
;
34265 wxClipboardLocker
*result
= 0 ;
34268 PyObject
* obj0
= 0 ;
34269 char * kwnames
[] = {
34270 (char *) "clipboard", NULL
34273 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_ClipboardLocker",kwnames
,&obj0
)) SWIG_fail
;
34275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxClipboard
, 0 | 0 );
34276 if (!SWIG_IsOK(res1
)) {
34277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ClipboardLocker" "', expected argument " "1"" of type '" "wxClipboard *""'");
34279 arg1
= reinterpret_cast< wxClipboard
* >(argp1
);
34282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34283 result
= (wxClipboardLocker
*)new wxClipboardLocker(arg1
);
34284 wxPyEndAllowThreads(__tstate
);
34285 if (PyErr_Occurred()) SWIG_fail
;
34287 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxClipboardLocker
, SWIG_POINTER_NEW
| 0 );
34294 SWIGINTERN PyObject
*_wrap_delete_ClipboardLocker(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34295 PyObject
*resultobj
= 0;
34296 wxClipboardLocker
*arg1
= (wxClipboardLocker
*) 0 ;
34299 PyObject
*swig_obj
[1] ;
34301 if (!args
) SWIG_fail
;
34302 swig_obj
[0] = args
;
34303 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboardLocker
, SWIG_POINTER_DISOWN
| 0 );
34304 if (!SWIG_IsOK(res1
)) {
34305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ClipboardLocker" "', expected argument " "1"" of type '" "wxClipboardLocker *""'");
34307 arg1
= reinterpret_cast< wxClipboardLocker
* >(argp1
);
34309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34312 wxPyEndAllowThreads(__tstate
);
34313 if (PyErr_Occurred()) SWIG_fail
;
34315 resultobj
= SWIG_Py_Void();
34322 SWIGINTERN PyObject
*_wrap_ClipboardLocker___nonzero__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34323 PyObject
*resultobj
= 0;
34324 wxClipboardLocker
*arg1
= (wxClipboardLocker
*) 0 ;
34328 PyObject
*swig_obj
[1] ;
34330 if (!args
) SWIG_fail
;
34331 swig_obj
[0] = args
;
34332 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxClipboardLocker
, 0 | 0 );
34333 if (!SWIG_IsOK(res1
)) {
34334 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ClipboardLocker___nonzero__" "', expected argument " "1"" of type '" "wxClipboardLocker *""'");
34336 arg1
= reinterpret_cast< wxClipboardLocker
* >(argp1
);
34338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34339 result
= (bool)wxClipboardLocker___nonzero__(arg1
);
34340 wxPyEndAllowThreads(__tstate
);
34341 if (PyErr_Occurred()) SWIG_fail
;
34344 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34352 SWIGINTERN PyObject
*ClipboardLocker_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34354 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
34355 SWIG_TypeNewClientData(SWIGTYPE_p_wxClipboardLocker
, SWIG_NewClientData(obj
));
34356 return SWIG_Py_Void();
34359 SWIGINTERN PyObject
*ClipboardLocker_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34360 return SWIG_Python_InitShadowInstance(args
);
34363 SWIGINTERN PyObject
*_wrap_new_VideoMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34364 PyObject
*resultobj
= 0;
34365 int arg1
= (int) 0 ;
34366 int arg2
= (int) 0 ;
34367 int arg3
= (int) 0 ;
34368 int arg4
= (int) 0 ;
34369 wxVideoMode
*result
= 0 ;
34378 PyObject
* obj0
= 0 ;
34379 PyObject
* obj1
= 0 ;
34380 PyObject
* obj2
= 0 ;
34381 PyObject
* obj3
= 0 ;
34382 char * kwnames
[] = {
34383 (char *) "width",(char *) "height",(char *) "depth",(char *) "freq", NULL
34386 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_VideoMode",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
34388 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
34389 if (!SWIG_IsOK(ecode1
)) {
34390 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_VideoMode" "', expected argument " "1"" of type '" "int""'");
34392 arg1
= static_cast< int >(val1
);
34395 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
34396 if (!SWIG_IsOK(ecode2
)) {
34397 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_VideoMode" "', expected argument " "2"" of type '" "int""'");
34399 arg2
= static_cast< int >(val2
);
34402 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
34403 if (!SWIG_IsOK(ecode3
)) {
34404 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_VideoMode" "', expected argument " "3"" of type '" "int""'");
34406 arg3
= static_cast< int >(val3
);
34409 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
34410 if (!SWIG_IsOK(ecode4
)) {
34411 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_VideoMode" "', expected argument " "4"" of type '" "int""'");
34413 arg4
= static_cast< int >(val4
);
34416 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34417 result
= (wxVideoMode
*)new wxVideoMode(arg1
,arg2
,arg3
,arg4
);
34418 wxPyEndAllowThreads(__tstate
);
34419 if (PyErr_Occurred()) SWIG_fail
;
34421 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxVideoMode
, SWIG_POINTER_NEW
| 0 );
34428 SWIGINTERN PyObject
*_wrap_delete_VideoMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34429 PyObject
*resultobj
= 0;
34430 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34433 PyObject
*swig_obj
[1] ;
34435 if (!args
) SWIG_fail
;
34436 swig_obj
[0] = args
;
34437 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, SWIG_POINTER_DISOWN
| 0 );
34438 if (!SWIG_IsOK(res1
)) {
34439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_VideoMode" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34441 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34446 wxPyEndAllowThreads(__tstate
);
34447 if (PyErr_Occurred()) SWIG_fail
;
34449 resultobj
= SWIG_Py_Void();
34456 SWIGINTERN PyObject
*_wrap_VideoMode_Matches(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34457 PyObject
*resultobj
= 0;
34458 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34459 wxVideoMode
*arg2
= 0 ;
34465 PyObject
* obj0
= 0 ;
34466 PyObject
* obj1
= 0 ;
34467 char * kwnames
[] = {
34468 (char *) "self",(char *) "other", NULL
34471 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VideoMode_Matches",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34472 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34473 if (!SWIG_IsOK(res1
)) {
34474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_Matches" "', expected argument " "1"" of type '" "wxVideoMode const *""'");
34476 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34477 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxVideoMode
, 0 | 0);
34478 if (!SWIG_IsOK(res2
)) {
34479 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VideoMode_Matches" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
34482 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "VideoMode_Matches" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
34484 arg2
= reinterpret_cast< wxVideoMode
* >(argp2
);
34486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34487 result
= (bool)((wxVideoMode
const *)arg1
)->Matches((wxVideoMode
const &)*arg2
);
34488 wxPyEndAllowThreads(__tstate
);
34489 if (PyErr_Occurred()) SWIG_fail
;
34492 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34500 SWIGINTERN PyObject
*_wrap_VideoMode_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34501 PyObject
*resultobj
= 0;
34502 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34506 PyObject
*swig_obj
[1] ;
34508 if (!args
) SWIG_fail
;
34509 swig_obj
[0] = args
;
34510 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34511 if (!SWIG_IsOK(res1
)) {
34512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_GetWidth" "', expected argument " "1"" of type '" "wxVideoMode const *""'");
34514 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34517 result
= (int)((wxVideoMode
const *)arg1
)->GetWidth();
34518 wxPyEndAllowThreads(__tstate
);
34519 if (PyErr_Occurred()) SWIG_fail
;
34521 resultobj
= SWIG_From_int(static_cast< int >(result
));
34528 SWIGINTERN PyObject
*_wrap_VideoMode_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34529 PyObject
*resultobj
= 0;
34530 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34534 PyObject
*swig_obj
[1] ;
34536 if (!args
) SWIG_fail
;
34537 swig_obj
[0] = args
;
34538 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34539 if (!SWIG_IsOK(res1
)) {
34540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_GetHeight" "', expected argument " "1"" of type '" "wxVideoMode const *""'");
34542 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34545 result
= (int)((wxVideoMode
const *)arg1
)->GetHeight();
34546 wxPyEndAllowThreads(__tstate
);
34547 if (PyErr_Occurred()) SWIG_fail
;
34549 resultobj
= SWIG_From_int(static_cast< int >(result
));
34556 SWIGINTERN PyObject
*_wrap_VideoMode_GetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34557 PyObject
*resultobj
= 0;
34558 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34562 PyObject
*swig_obj
[1] ;
34564 if (!args
) SWIG_fail
;
34565 swig_obj
[0] = args
;
34566 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34567 if (!SWIG_IsOK(res1
)) {
34568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_GetDepth" "', expected argument " "1"" of type '" "wxVideoMode const *""'");
34570 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34573 result
= (int)((wxVideoMode
const *)arg1
)->GetDepth();
34574 wxPyEndAllowThreads(__tstate
);
34575 if (PyErr_Occurred()) SWIG_fail
;
34577 resultobj
= SWIG_From_int(static_cast< int >(result
));
34584 SWIGINTERN PyObject
*_wrap_VideoMode_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34585 PyObject
*resultobj
= 0;
34586 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34590 PyObject
*swig_obj
[1] ;
34592 if (!args
) SWIG_fail
;
34593 swig_obj
[0] = args
;
34594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34595 if (!SWIG_IsOK(res1
)) {
34596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_IsOk" "', expected argument " "1"" of type '" "wxVideoMode const *""'");
34598 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34601 result
= (bool)((wxVideoMode
const *)arg1
)->IsOk();
34602 wxPyEndAllowThreads(__tstate
);
34603 if (PyErr_Occurred()) SWIG_fail
;
34606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34614 SWIGINTERN PyObject
*_wrap_VideoMode___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34615 PyObject
*resultobj
= 0;
34616 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34617 wxVideoMode
*arg2
= (wxVideoMode
*) 0 ;
34623 PyObject
* obj0
= 0 ;
34624 PyObject
* obj1
= 0 ;
34625 char * kwnames
[] = {
34626 (char *) "self",(char *) "other", NULL
34629 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VideoMode___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34630 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34631 if (!SWIG_IsOK(res1
)) {
34632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode___eq__" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34634 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34635 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34636 if (!SWIG_IsOK(res2
)) {
34637 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VideoMode___eq__" "', expected argument " "2"" of type '" "wxVideoMode const *""'");
34639 arg2
= reinterpret_cast< wxVideoMode
* >(argp2
);
34641 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34642 result
= (bool)wxVideoMode___eq__(arg1
,(wxVideoMode
const *)arg2
);
34643 wxPyEndAllowThreads(__tstate
);
34644 if (PyErr_Occurred()) SWIG_fail
;
34647 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34655 SWIGINTERN PyObject
*_wrap_VideoMode___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34656 PyObject
*resultobj
= 0;
34657 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34658 wxVideoMode
*arg2
= (wxVideoMode
*) 0 ;
34664 PyObject
* obj0
= 0 ;
34665 PyObject
* obj1
= 0 ;
34666 char * kwnames
[] = {
34667 (char *) "self",(char *) "other", NULL
34670 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VideoMode___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34671 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34672 if (!SWIG_IsOK(res1
)) {
34673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode___ne__" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34675 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34676 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34677 if (!SWIG_IsOK(res2
)) {
34678 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VideoMode___ne__" "', expected argument " "2"" of type '" "wxVideoMode const *""'");
34680 arg2
= reinterpret_cast< wxVideoMode
* >(argp2
);
34682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34683 result
= (bool)wxVideoMode___ne__(arg1
,(wxVideoMode
const *)arg2
);
34684 wxPyEndAllowThreads(__tstate
);
34685 if (PyErr_Occurred()) SWIG_fail
;
34688 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34696 SWIGINTERN PyObject
*_wrap_VideoMode_w_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34697 PyObject
*resultobj
= 0;
34698 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34704 PyObject
*swig_obj
[2] ;
34706 if (!SWIG_Python_UnpackTuple(args
,"VideoMode_w_set",2,2,swig_obj
)) SWIG_fail
;
34707 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34708 if (!SWIG_IsOK(res1
)) {
34709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_w_set" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34711 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34712 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
34713 if (!SWIG_IsOK(ecode2
)) {
34714 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VideoMode_w_set" "', expected argument " "2"" of type '" "int""'");
34716 arg2
= static_cast< int >(val2
);
34717 if (arg1
) (arg1
)->w
= arg2
;
34719 resultobj
= SWIG_Py_Void();
34726 SWIGINTERN PyObject
*_wrap_VideoMode_w_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34727 PyObject
*resultobj
= 0;
34728 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34732 PyObject
*swig_obj
[1] ;
34734 if (!args
) SWIG_fail
;
34735 swig_obj
[0] = args
;
34736 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34737 if (!SWIG_IsOK(res1
)) {
34738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_w_get" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34740 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34741 result
= (int) ((arg1
)->w
);
34742 resultobj
= SWIG_From_int(static_cast< int >(result
));
34749 SWIGINTERN PyObject
*_wrap_VideoMode_h_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34750 PyObject
*resultobj
= 0;
34751 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34757 PyObject
*swig_obj
[2] ;
34759 if (!SWIG_Python_UnpackTuple(args
,"VideoMode_h_set",2,2,swig_obj
)) SWIG_fail
;
34760 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34761 if (!SWIG_IsOK(res1
)) {
34762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_h_set" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34764 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34765 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
34766 if (!SWIG_IsOK(ecode2
)) {
34767 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VideoMode_h_set" "', expected argument " "2"" of type '" "int""'");
34769 arg2
= static_cast< int >(val2
);
34770 if (arg1
) (arg1
)->h
= arg2
;
34772 resultobj
= SWIG_Py_Void();
34779 SWIGINTERN PyObject
*_wrap_VideoMode_h_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34780 PyObject
*resultobj
= 0;
34781 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34785 PyObject
*swig_obj
[1] ;
34787 if (!args
) SWIG_fail
;
34788 swig_obj
[0] = args
;
34789 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34790 if (!SWIG_IsOK(res1
)) {
34791 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_h_get" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34793 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34794 result
= (int) ((arg1
)->h
);
34795 resultobj
= SWIG_From_int(static_cast< int >(result
));
34802 SWIGINTERN PyObject
*_wrap_VideoMode_bpp_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34803 PyObject
*resultobj
= 0;
34804 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34810 PyObject
*swig_obj
[2] ;
34812 if (!SWIG_Python_UnpackTuple(args
,"VideoMode_bpp_set",2,2,swig_obj
)) SWIG_fail
;
34813 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34814 if (!SWIG_IsOK(res1
)) {
34815 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_bpp_set" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34817 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34818 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
34819 if (!SWIG_IsOK(ecode2
)) {
34820 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VideoMode_bpp_set" "', expected argument " "2"" of type '" "int""'");
34822 arg2
= static_cast< int >(val2
);
34823 if (arg1
) (arg1
)->bpp
= arg2
;
34825 resultobj
= SWIG_Py_Void();
34832 SWIGINTERN PyObject
*_wrap_VideoMode_bpp_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34833 PyObject
*resultobj
= 0;
34834 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34838 PyObject
*swig_obj
[1] ;
34840 if (!args
) SWIG_fail
;
34841 swig_obj
[0] = args
;
34842 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34843 if (!SWIG_IsOK(res1
)) {
34844 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_bpp_get" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34846 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34847 result
= (int) ((arg1
)->bpp
);
34848 resultobj
= SWIG_From_int(static_cast< int >(result
));
34855 SWIGINTERN PyObject
*_wrap_VideoMode_refresh_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34856 PyObject
*resultobj
= 0;
34857 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34863 PyObject
*swig_obj
[2] ;
34865 if (!SWIG_Python_UnpackTuple(args
,"VideoMode_refresh_set",2,2,swig_obj
)) SWIG_fail
;
34866 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34867 if (!SWIG_IsOK(res1
)) {
34868 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_refresh_set" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34870 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34871 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
34872 if (!SWIG_IsOK(ecode2
)) {
34873 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VideoMode_refresh_set" "', expected argument " "2"" of type '" "int""'");
34875 arg2
= static_cast< int >(val2
);
34876 if (arg1
) (arg1
)->refresh
= arg2
;
34878 resultobj
= SWIG_Py_Void();
34885 SWIGINTERN PyObject
*_wrap_VideoMode_refresh_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34886 PyObject
*resultobj
= 0;
34887 wxVideoMode
*arg1
= (wxVideoMode
*) 0 ;
34891 PyObject
*swig_obj
[1] ;
34893 if (!args
) SWIG_fail
;
34894 swig_obj
[0] = args
;
34895 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxVideoMode
, 0 | 0 );
34896 if (!SWIG_IsOK(res1
)) {
34897 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VideoMode_refresh_get" "', expected argument " "1"" of type '" "wxVideoMode *""'");
34899 arg1
= reinterpret_cast< wxVideoMode
* >(argp1
);
34900 result
= (int) ((arg1
)->refresh
);
34901 resultobj
= SWIG_From_int(static_cast< int >(result
));
34908 SWIGINTERN PyObject
*VideoMode_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34910 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
34911 SWIG_TypeNewClientData(SWIGTYPE_p_wxVideoMode
, SWIG_NewClientData(obj
));
34912 return SWIG_Py_Void();
34915 SWIGINTERN PyObject
*VideoMode_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34916 return SWIG_Python_InitShadowInstance(args
);
34919 SWIGINTERN
int DefaultVideoMode_set(PyObject
*) {
34920 SWIG_Error(SWIG_AttributeError
,"Variable DefaultVideoMode is read-only.");
34925 SWIGINTERN PyObject
*DefaultVideoMode_get(void) {
34926 PyObject
*pyobj
= 0;
34928 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxDefaultVideoMode
), SWIGTYPE_p_wxVideoMode
, 0 );
34933 SWIGINTERN PyObject
*_wrap_new_Display(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34934 PyObject
*resultobj
= 0;
34935 size_t arg1
= (size_t) 0 ;
34936 wxDisplay
*result
= 0 ;
34939 PyObject
* obj0
= 0 ;
34940 char * kwnames
[] = {
34941 (char *) "index", NULL
34944 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Display",kwnames
,&obj0
)) SWIG_fail
;
34946 ecode1
= SWIG_AsVal_size_t(obj0
, &val1
);
34947 if (!SWIG_IsOK(ecode1
)) {
34948 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Display" "', expected argument " "1"" of type '" "size_t""'");
34950 arg1
= static_cast< size_t >(val1
);
34953 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34954 result
= (wxDisplay
*)new wxDisplay(arg1
);
34955 wxPyEndAllowThreads(__tstate
);
34956 if (PyErr_Occurred()) SWIG_fail
;
34958 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDisplay
, SWIG_POINTER_NEW
| 0 );
34965 SWIGINTERN PyObject
*_wrap_delete_Display(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34966 PyObject
*resultobj
= 0;
34967 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
34970 PyObject
*swig_obj
[1] ;
34972 if (!args
) SWIG_fail
;
34973 swig_obj
[0] = args
;
34974 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, SWIG_POINTER_DISOWN
| 0 );
34975 if (!SWIG_IsOK(res1
)) {
34976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Display" "', expected argument " "1"" of type '" "wxDisplay *""'");
34978 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
34980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34983 wxPyEndAllowThreads(__tstate
);
34984 if (PyErr_Occurred()) SWIG_fail
;
34986 resultobj
= SWIG_Py_Void();
34993 SWIGINTERN PyObject
*_wrap_Display_GetCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34994 PyObject
*resultobj
= 0;
34997 if (!SWIG_Python_UnpackTuple(args
,"Display_GetCount",0,0,0)) SWIG_fail
;
34999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35000 result
= (size_t)wxDisplay::GetCount();
35001 wxPyEndAllowThreads(__tstate
);
35002 if (PyErr_Occurred()) SWIG_fail
;
35004 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
35011 SWIGINTERN PyObject
*_wrap_Display_GetFromPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
35012 PyObject
*resultobj
= 0;
35013 wxPoint
*arg1
= 0 ;
35016 PyObject
* obj0
= 0 ;
35017 char * kwnames
[] = {
35018 (char *) "pt", NULL
35021 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Display_GetFromPoint",kwnames
,&obj0
)) SWIG_fail
;
35024 if ( ! wxPoint_helper(obj0
, &arg1
)) SWIG_fail
;
35027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35028 result
= (int)wxDisplay::GetFromPoint((wxPoint
const &)*arg1
);
35029 wxPyEndAllowThreads(__tstate
);
35030 if (PyErr_Occurred()) SWIG_fail
;
35032 resultobj
= SWIG_From_int(static_cast< int >(result
));
35039 SWIGINTERN PyObject
*_wrap_Display_GetFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
35040 PyObject
*resultobj
= 0;
35041 wxWindow
*arg1
= (wxWindow
*) 0 ;
35045 PyObject
* obj0
= 0 ;
35046 char * kwnames
[] = {
35047 (char *) "window", NULL
35050 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Display_GetFromWindow",kwnames
,&obj0
)) SWIG_fail
;
35051 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
35052 if (!SWIG_IsOK(res1
)) {
35053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetFromWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
35055 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
35057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35058 result
= (int)wxDisplay::GetFromWindow(arg1
);
35059 wxPyEndAllowThreads(__tstate
);
35060 if (PyErr_Occurred()) SWIG_fail
;
35062 resultobj
= SWIG_From_int(static_cast< int >(result
));
35069 SWIGINTERN PyObject
*_wrap_Display_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35070 PyObject
*resultobj
= 0;
35071 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35075 PyObject
*swig_obj
[1] ;
35077 if (!args
) SWIG_fail
;
35078 swig_obj
[0] = args
;
35079 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35080 if (!SWIG_IsOK(res1
)) {
35081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_IsOk" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35083 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35086 result
= (bool)((wxDisplay
const *)arg1
)->IsOk();
35087 wxPyEndAllowThreads(__tstate
);
35088 if (PyErr_Occurred()) SWIG_fail
;
35091 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35099 SWIGINTERN PyObject
*_wrap_Display_GetGeometry(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35100 PyObject
*resultobj
= 0;
35101 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35105 PyObject
*swig_obj
[1] ;
35107 if (!args
) SWIG_fail
;
35108 swig_obj
[0] = args
;
35109 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35110 if (!SWIG_IsOK(res1
)) {
35111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetGeometry" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35113 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35115 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35116 result
= ((wxDisplay
const *)arg1
)->GetGeometry();
35117 wxPyEndAllowThreads(__tstate
);
35118 if (PyErr_Occurred()) SWIG_fail
;
35120 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
35127 SWIGINTERN PyObject
*_wrap_Display_GetClientArea(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35128 PyObject
*resultobj
= 0;
35129 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35133 PyObject
*swig_obj
[1] ;
35135 if (!args
) SWIG_fail
;
35136 swig_obj
[0] = args
;
35137 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35138 if (!SWIG_IsOK(res1
)) {
35139 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetClientArea" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35141 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35144 result
= ((wxDisplay
const *)arg1
)->GetClientArea();
35145 wxPyEndAllowThreads(__tstate
);
35146 if (PyErr_Occurred()) SWIG_fail
;
35148 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
35155 SWIGINTERN PyObject
*_wrap_Display_GetName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35156 PyObject
*resultobj
= 0;
35157 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35161 PyObject
*swig_obj
[1] ;
35163 if (!args
) SWIG_fail
;
35164 swig_obj
[0] = args
;
35165 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35166 if (!SWIG_IsOK(res1
)) {
35167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetName" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35169 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35172 result
= ((wxDisplay
const *)arg1
)->GetName();
35173 wxPyEndAllowThreads(__tstate
);
35174 if (PyErr_Occurred()) SWIG_fail
;
35178 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35180 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35189 SWIGINTERN PyObject
*_wrap_Display_IsPrimary(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35190 PyObject
*resultobj
= 0;
35191 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35195 PyObject
*swig_obj
[1] ;
35197 if (!args
) SWIG_fail
;
35198 swig_obj
[0] = args
;
35199 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35200 if (!SWIG_IsOK(res1
)) {
35201 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_IsPrimary" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35203 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35206 result
= (bool)((wxDisplay
const *)arg1
)->IsPrimary();
35207 wxPyEndAllowThreads(__tstate
);
35208 if (PyErr_Occurred()) SWIG_fail
;
35211 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35219 SWIGINTERN PyObject
*_wrap_Display_GetModes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
35220 PyObject
*resultobj
= 0;
35221 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35222 wxVideoMode
const &arg2_defvalue
= wxDefaultVideoMode
;
35223 wxVideoMode
*arg2
= (wxVideoMode
*) &arg2_defvalue
;
35224 PyObject
*result
= 0 ;
35229 PyObject
* obj0
= 0 ;
35230 PyObject
* obj1
= 0 ;
35231 char * kwnames
[] = {
35232 (char *) "self",(char *) "mode", NULL
35235 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Display_GetModes",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
35236 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35237 if (!SWIG_IsOK(res1
)) {
35238 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetModes" "', expected argument " "1"" of type '" "wxDisplay *""'");
35240 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35242 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxVideoMode
, 0 | 0);
35243 if (!SWIG_IsOK(res2
)) {
35244 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Display_GetModes" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
35247 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Display_GetModes" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
35249 arg2
= reinterpret_cast< wxVideoMode
* >(argp2
);
35252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35253 result
= (PyObject
*)wxDisplay_GetModes(arg1
,(wxVideoMode
const &)*arg2
);
35254 wxPyEndAllowThreads(__tstate
);
35255 if (PyErr_Occurred()) SWIG_fail
;
35257 resultobj
= result
;
35264 SWIGINTERN PyObject
*_wrap_Display_GetCurrentMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35265 PyObject
*resultobj
= 0;
35266 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35267 wxVideoMode result
;
35270 PyObject
*swig_obj
[1] ;
35272 if (!args
) SWIG_fail
;
35273 swig_obj
[0] = args
;
35274 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35275 if (!SWIG_IsOK(res1
)) {
35276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_GetCurrentMode" "', expected argument " "1"" of type '" "wxDisplay const *""'");
35278 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35281 result
= wxDisplay_GetCurrentMode((wxDisplay
const *)arg1
);
35282 wxPyEndAllowThreads(__tstate
);
35283 if (PyErr_Occurred()) SWIG_fail
;
35285 resultobj
= SWIG_NewPointerObj((new wxVideoMode(static_cast< const wxVideoMode
& >(result
))), SWIGTYPE_p_wxVideoMode
, SWIG_POINTER_OWN
| 0 );
35292 SWIGINTERN PyObject
*_wrap_Display_ChangeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
35293 PyObject
*resultobj
= 0;
35294 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35295 wxVideoMode
const &arg2_defvalue
= wxDefaultVideoMode
;
35296 wxVideoMode
*arg2
= (wxVideoMode
*) &arg2_defvalue
;
35302 PyObject
* obj0
= 0 ;
35303 PyObject
* obj1
= 0 ;
35304 char * kwnames
[] = {
35305 (char *) "self",(char *) "mode", NULL
35308 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Display_ChangeMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
35309 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35310 if (!SWIG_IsOK(res1
)) {
35311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_ChangeMode" "', expected argument " "1"" of type '" "wxDisplay *""'");
35313 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35315 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxVideoMode
, 0 | 0);
35316 if (!SWIG_IsOK(res2
)) {
35317 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Display_ChangeMode" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
35320 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Display_ChangeMode" "', expected argument " "2"" of type '" "wxVideoMode const &""'");
35322 arg2
= reinterpret_cast< wxVideoMode
* >(argp2
);
35325 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35326 result
= (bool)wxDisplay_ChangeMode(arg1
,(wxVideoMode
const &)*arg2
);
35327 wxPyEndAllowThreads(__tstate
);
35328 if (PyErr_Occurred()) SWIG_fail
;
35331 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35339 SWIGINTERN PyObject
*_wrap_Display_ResetMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35340 PyObject
*resultobj
= 0;
35341 wxDisplay
*arg1
= (wxDisplay
*) 0 ;
35344 PyObject
*swig_obj
[1] ;
35346 if (!args
) SWIG_fail
;
35347 swig_obj
[0] = args
;
35348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDisplay
, 0 | 0 );
35349 if (!SWIG_IsOK(res1
)) {
35350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Display_ResetMode" "', expected argument " "1"" of type '" "wxDisplay *""'");
35352 arg1
= reinterpret_cast< wxDisplay
* >(argp1
);
35354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35355 wxDisplay_ResetMode(arg1
);
35356 wxPyEndAllowThreads(__tstate
);
35357 if (PyErr_Occurred()) SWIG_fail
;
35359 resultobj
= SWIG_Py_Void();
35366 SWIGINTERN PyObject
*Display_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35368 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
35369 SWIG_TypeNewClientData(SWIGTYPE_p_wxDisplay
, SWIG_NewClientData(obj
));
35370 return SWIG_Py_Void();
35373 SWIGINTERN PyObject
*Display_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35374 return SWIG_Python_InitShadowInstance(args
);
35377 SWIGINTERN PyObject
*_wrap_StandardPaths_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35378 PyObject
*resultobj
= 0;
35379 wxStandardPaths
*result
= 0 ;
35381 if (!SWIG_Python_UnpackTuple(args
,"StandardPaths_Get",0,0,0)) SWIG_fail
;
35383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35384 result
= (wxStandardPaths
*)wxStandardPaths_Get();
35385 wxPyEndAllowThreads(__tstate
);
35386 if (PyErr_Occurred()) SWIG_fail
;
35388 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35395 SWIGINTERN PyObject
*_wrap_StandardPaths_GetConfigDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35396 PyObject
*resultobj
= 0;
35397 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35401 PyObject
*swig_obj
[1] ;
35403 if (!args
) SWIG_fail
;
35404 swig_obj
[0] = args
;
35405 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35406 if (!SWIG_IsOK(res1
)) {
35407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetConfigDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35409 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35412 result
= ((wxStandardPaths
const *)arg1
)->GetConfigDir();
35413 wxPyEndAllowThreads(__tstate
);
35414 if (PyErr_Occurred()) SWIG_fail
;
35418 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35420 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35429 SWIGINTERN PyObject
*_wrap_StandardPaths_GetUserConfigDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35430 PyObject
*resultobj
= 0;
35431 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35435 PyObject
*swig_obj
[1] ;
35437 if (!args
) SWIG_fail
;
35438 swig_obj
[0] = args
;
35439 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35440 if (!SWIG_IsOK(res1
)) {
35441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetUserConfigDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35443 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35445 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35446 result
= ((wxStandardPaths
const *)arg1
)->GetUserConfigDir();
35447 wxPyEndAllowThreads(__tstate
);
35448 if (PyErr_Occurred()) SWIG_fail
;
35452 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35454 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35463 SWIGINTERN PyObject
*_wrap_StandardPaths_GetDataDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35464 PyObject
*resultobj
= 0;
35465 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35469 PyObject
*swig_obj
[1] ;
35471 if (!args
) SWIG_fail
;
35472 swig_obj
[0] = args
;
35473 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35474 if (!SWIG_IsOK(res1
)) {
35475 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetDataDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35477 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35480 result
= ((wxStandardPaths
const *)arg1
)->GetDataDir();
35481 wxPyEndAllowThreads(__tstate
);
35482 if (PyErr_Occurred()) SWIG_fail
;
35486 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35488 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35497 SWIGINTERN PyObject
*_wrap_StandardPaths_GetLocalDataDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35498 PyObject
*resultobj
= 0;
35499 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35503 PyObject
*swig_obj
[1] ;
35505 if (!args
) SWIG_fail
;
35506 swig_obj
[0] = args
;
35507 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35508 if (!SWIG_IsOK(res1
)) {
35509 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetLocalDataDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35511 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35514 result
= ((wxStandardPaths
const *)arg1
)->GetLocalDataDir();
35515 wxPyEndAllowThreads(__tstate
);
35516 if (PyErr_Occurred()) SWIG_fail
;
35520 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35522 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35531 SWIGINTERN PyObject
*_wrap_StandardPaths_GetUserDataDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35532 PyObject
*resultobj
= 0;
35533 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35537 PyObject
*swig_obj
[1] ;
35539 if (!args
) SWIG_fail
;
35540 swig_obj
[0] = args
;
35541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35542 if (!SWIG_IsOK(res1
)) {
35543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetUserDataDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35545 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35548 result
= ((wxStandardPaths
const *)arg1
)->GetUserDataDir();
35549 wxPyEndAllowThreads(__tstate
);
35550 if (PyErr_Occurred()) SWIG_fail
;
35554 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35556 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35565 SWIGINTERN PyObject
*_wrap_StandardPaths_GetUserLocalDataDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35566 PyObject
*resultobj
= 0;
35567 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35571 PyObject
*swig_obj
[1] ;
35573 if (!args
) SWIG_fail
;
35574 swig_obj
[0] = args
;
35575 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35576 if (!SWIG_IsOK(res1
)) {
35577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetUserLocalDataDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35579 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35582 result
= ((wxStandardPaths
const *)arg1
)->GetUserLocalDataDir();
35583 wxPyEndAllowThreads(__tstate
);
35584 if (PyErr_Occurred()) SWIG_fail
;
35588 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35590 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35599 SWIGINTERN PyObject
*_wrap_StandardPaths_GetPluginsDir(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35600 PyObject
*resultobj
= 0;
35601 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35605 PyObject
*swig_obj
[1] ;
35607 if (!args
) SWIG_fail
;
35608 swig_obj
[0] = args
;
35609 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35610 if (!SWIG_IsOK(res1
)) {
35611 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetPluginsDir" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35613 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35616 result
= ((wxStandardPaths
const *)arg1
)->GetPluginsDir();
35617 wxPyEndAllowThreads(__tstate
);
35618 if (PyErr_Occurred()) SWIG_fail
;
35622 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35624 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35633 SWIGINTERN PyObject
*_wrap_StandardPaths_SetInstallPrefix(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
35634 PyObject
*resultobj
= 0;
35635 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35636 wxString
*arg2
= 0 ;
35639 bool temp2
= false ;
35640 PyObject
* obj0
= 0 ;
35641 PyObject
* obj1
= 0 ;
35642 char * kwnames
[] = {
35643 (char *) "self",(char *) "prefix", NULL
35646 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StandardPaths_SetInstallPrefix",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
35647 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35648 if (!SWIG_IsOK(res1
)) {
35649 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_SetInstallPrefix" "', expected argument " "1"" of type '" "wxStandardPaths *""'");
35651 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35653 arg2
= wxString_in_helper(obj1
);
35654 if (arg2
== NULL
) SWIG_fail
;
35658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35659 (arg1
)->SetInstallPrefix((wxString
const &)*arg2
);
35660 wxPyEndAllowThreads(__tstate
);
35661 if (PyErr_Occurred()) SWIG_fail
;
35663 resultobj
= SWIG_Py_Void();
35678 SWIGINTERN PyObject
*_wrap_StandardPaths_GetInstallPrefix(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35679 PyObject
*resultobj
= 0;
35680 wxStandardPaths
*arg1
= (wxStandardPaths
*) 0 ;
35684 PyObject
*swig_obj
[1] ;
35686 if (!args
) SWIG_fail
;
35687 swig_obj
[0] = args
;
35688 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStandardPaths
, 0 | 0 );
35689 if (!SWIG_IsOK(res1
)) {
35690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StandardPaths_GetInstallPrefix" "', expected argument " "1"" of type '" "wxStandardPaths const *""'");
35692 arg1
= reinterpret_cast< wxStandardPaths
* >(argp1
);
35694 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35695 result
= ((wxStandardPaths
const *)arg1
)->GetInstallPrefix();
35696 wxPyEndAllowThreads(__tstate
);
35697 if (PyErr_Occurred()) SWIG_fail
;
35701 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
35703 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
35712 SWIGINTERN PyObject
*StandardPaths_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
35714 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
35715 SWIG_TypeNewClientData(SWIGTYPE_p_wxStandardPaths
, SWIG_NewClientData(obj
));
35716 return SWIG_Py_Void();
35719 static PyMethodDef SwigMethods
[] = {
35720 { (char *)"SystemSettings_GetColour", (PyCFunction
) _wrap_SystemSettings_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35721 { (char *)"SystemSettings_GetFont", (PyCFunction
) _wrap_SystemSettings_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35722 { (char *)"SystemSettings_GetMetric", (PyCFunction
) _wrap_SystemSettings_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35723 { (char *)"SystemSettings_HasFeature", (PyCFunction
) _wrap_SystemSettings_HasFeature
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35724 { (char *)"SystemSettings_GetScreenType", (PyCFunction
)_wrap_SystemSettings_GetScreenType
, METH_NOARGS
, NULL
},
35725 { (char *)"SystemSettings_SetScreenType", (PyCFunction
) _wrap_SystemSettings_SetScreenType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35726 { (char *)"SystemSettings_swigregister", SystemSettings_swigregister
, METH_VARARGS
, NULL
},
35727 { (char *)"new_SystemOptions", (PyCFunction
)_wrap_new_SystemOptions
, METH_NOARGS
, NULL
},
35728 { (char *)"SystemOptions_SetOption", (PyCFunction
) _wrap_SystemOptions_SetOption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35729 { (char *)"SystemOptions_SetOptionInt", (PyCFunction
) _wrap_SystemOptions_SetOptionInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35730 { (char *)"SystemOptions_GetOption", (PyCFunction
) _wrap_SystemOptions_GetOption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35731 { (char *)"SystemOptions_GetOptionInt", (PyCFunction
) _wrap_SystemOptions_GetOptionInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35732 { (char *)"SystemOptions_HasOption", (PyCFunction
) _wrap_SystemOptions_HasOption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35733 { (char *)"SystemOptions_IsFalse", (PyCFunction
) _wrap_SystemOptions_IsFalse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35734 { (char *)"SystemOptions_swigregister", SystemOptions_swigregister
, METH_VARARGS
, NULL
},
35735 { (char *)"SystemOptions_swiginit", SystemOptions_swiginit
, METH_VARARGS
, NULL
},
35736 { (char *)"NewId", (PyCFunction
)_wrap_NewId
, METH_NOARGS
, NULL
},
35737 { (char *)"RegisterId", (PyCFunction
) _wrap_RegisterId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35738 { (char *)"GetCurrentId", (PyCFunction
)_wrap_GetCurrentId
, METH_NOARGS
, NULL
},
35739 { (char *)"IsStockID", (PyCFunction
) _wrap_IsStockID
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35740 { (char *)"IsStockLabel", (PyCFunction
) _wrap_IsStockLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35741 { (char *)"GetStockLabel", (PyCFunction
) _wrap_GetStockLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35742 { (char *)"Bell", (PyCFunction
)_wrap_Bell
, METH_NOARGS
, NULL
},
35743 { (char *)"EndBusyCursor", (PyCFunction
)_wrap_EndBusyCursor
, METH_NOARGS
, NULL
},
35744 { (char *)"GetElapsedTime", (PyCFunction
) _wrap_GetElapsedTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35745 { (char *)"IsBusy", (PyCFunction
)_wrap_IsBusy
, METH_NOARGS
, NULL
},
35746 { (char *)"Now", (PyCFunction
)_wrap_Now
, METH_NOARGS
, NULL
},
35747 { (char *)"Shell", (PyCFunction
) _wrap_Shell
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35748 { (char *)"StartTimer", (PyCFunction
)_wrap_StartTimer
, METH_NOARGS
, NULL
},
35749 { (char *)"GetOsVersion", (PyCFunction
)_wrap_GetOsVersion
, METH_NOARGS
, NULL
},
35750 { (char *)"GetOsDescription", (PyCFunction
)_wrap_GetOsDescription
, METH_NOARGS
, NULL
},
35751 { (char *)"GetFreeMemory", (PyCFunction
)_wrap_GetFreeMemory
, METH_NOARGS
, NULL
},
35752 { (char *)"Shutdown", (PyCFunction
) _wrap_Shutdown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35753 { (char *)"Sleep", (PyCFunction
) _wrap_Sleep
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35754 { (char *)"MilliSleep", (PyCFunction
) _wrap_MilliSleep
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35755 { (char *)"MicroSleep", (PyCFunction
) _wrap_MicroSleep
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35756 { (char *)"EnableTopLevelWindows", (PyCFunction
) _wrap_EnableTopLevelWindows
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35757 { (char *)"StripMenuCodes", (PyCFunction
) _wrap_StripMenuCodes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35758 { (char *)"GetEmailAddress", (PyCFunction
)_wrap_GetEmailAddress
, METH_NOARGS
, NULL
},
35759 { (char *)"GetHostName", (PyCFunction
)_wrap_GetHostName
, METH_NOARGS
, NULL
},
35760 { (char *)"GetFullHostName", (PyCFunction
)_wrap_GetFullHostName
, METH_NOARGS
, NULL
},
35761 { (char *)"GetUserId", (PyCFunction
)_wrap_GetUserId
, METH_NOARGS
, NULL
},
35762 { (char *)"GetUserName", (PyCFunction
)_wrap_GetUserName
, METH_NOARGS
, NULL
},
35763 { (char *)"GetHomeDir", (PyCFunction
)_wrap_GetHomeDir
, METH_NOARGS
, NULL
},
35764 { (char *)"GetUserHome", (PyCFunction
) _wrap_GetUserHome
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35765 { (char *)"GetProcessId", (PyCFunction
)_wrap_GetProcessId
, METH_NOARGS
, NULL
},
35766 { (char *)"Trap", (PyCFunction
)_wrap_Trap
, METH_NOARGS
, NULL
},
35767 { (char *)"FileSelector", (PyCFunction
) _wrap_FileSelector
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35768 { (char *)"LoadFileSelector", (PyCFunction
) _wrap_LoadFileSelector
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35769 { (char *)"SaveFileSelector", (PyCFunction
) _wrap_SaveFileSelector
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35770 { (char *)"DirSelector", (PyCFunction
) _wrap_DirSelector
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35771 { (char *)"GetTextFromUser", (PyCFunction
) _wrap_GetTextFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35772 { (char *)"GetPasswordFromUser", (PyCFunction
) _wrap_GetPasswordFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35773 { (char *)"GetSingleChoice", (PyCFunction
) _wrap_GetSingleChoice
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35774 { (char *)"GetSingleChoiceIndex", (PyCFunction
) _wrap_GetSingleChoiceIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35775 { (char *)"MessageBox", (PyCFunction
) _wrap_MessageBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35776 { (char *)"ColourDisplay", (PyCFunction
)_wrap_ColourDisplay
, METH_NOARGS
, NULL
},
35777 { (char *)"DisplayDepth", (PyCFunction
)_wrap_DisplayDepth
, METH_NOARGS
, NULL
},
35778 { (char *)"GetDisplayDepth", (PyCFunction
)_wrap_GetDisplayDepth
, METH_NOARGS
, NULL
},
35779 { (char *)"DisplaySize", (PyCFunction
)_wrap_DisplaySize
, METH_NOARGS
, NULL
},
35780 { (char *)"GetDisplaySize", (PyCFunction
)_wrap_GetDisplaySize
, METH_NOARGS
, NULL
},
35781 { (char *)"DisplaySizeMM", (PyCFunction
)_wrap_DisplaySizeMM
, METH_NOARGS
, NULL
},
35782 { (char *)"GetDisplaySizeMM", (PyCFunction
)_wrap_GetDisplaySizeMM
, METH_NOARGS
, NULL
},
35783 { (char *)"ClientDisplayRect", (PyCFunction
)_wrap_ClientDisplayRect
, METH_NOARGS
, NULL
},
35784 { (char *)"GetClientDisplayRect", (PyCFunction
)_wrap_GetClientDisplayRect
, METH_NOARGS
, NULL
},
35785 { (char *)"SetCursor", (PyCFunction
) _wrap_SetCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35786 { (char *)"GetXDisplay", (PyCFunction
)_wrap_GetXDisplay
, METH_NOARGS
, NULL
},
35787 { (char *)"BeginBusyCursor", (PyCFunction
) _wrap_BeginBusyCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35788 { (char *)"GetMousePosition", (PyCFunction
)_wrap_GetMousePosition
, METH_NOARGS
, NULL
},
35789 { (char *)"FindWindowAtPointer", (PyCFunction
)_wrap_FindWindowAtPointer
, METH_NOARGS
, NULL
},
35790 { (char *)"GetActiveWindow", (PyCFunction
)_wrap_GetActiveWindow
, METH_NOARGS
, NULL
},
35791 { (char *)"GenericFindWindowAtPoint", (PyCFunction
) _wrap_GenericFindWindowAtPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35792 { (char *)"FindWindowAtPoint", (PyCFunction
) _wrap_FindWindowAtPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35793 { (char *)"GetTopLevelParent", (PyCFunction
) _wrap_GetTopLevelParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35794 { (char *)"LaunchDefaultBrowser", (PyCFunction
) _wrap_LaunchDefaultBrowser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35795 { (char *)"GetKeyState", (PyCFunction
) _wrap_GetKeyState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35796 { (char *)"new_MouseState", (PyCFunction
)_wrap_new_MouseState
, METH_NOARGS
, NULL
},
35797 { (char *)"delete_MouseState", (PyCFunction
)_wrap_delete_MouseState
, METH_O
, NULL
},
35798 { (char *)"MouseState_GetX", (PyCFunction
)_wrap_MouseState_GetX
, METH_O
, NULL
},
35799 { (char *)"MouseState_GetY", (PyCFunction
)_wrap_MouseState_GetY
, METH_O
, NULL
},
35800 { (char *)"MouseState_LeftDown", (PyCFunction
)_wrap_MouseState_LeftDown
, METH_O
, NULL
},
35801 { (char *)"MouseState_MiddleDown", (PyCFunction
)_wrap_MouseState_MiddleDown
, METH_O
, NULL
},
35802 { (char *)"MouseState_RightDown", (PyCFunction
)_wrap_MouseState_RightDown
, METH_O
, NULL
},
35803 { (char *)"MouseState_ControlDown", (PyCFunction
)_wrap_MouseState_ControlDown
, METH_O
, NULL
},
35804 { (char *)"MouseState_ShiftDown", (PyCFunction
)_wrap_MouseState_ShiftDown
, METH_O
, NULL
},
35805 { (char *)"MouseState_AltDown", (PyCFunction
)_wrap_MouseState_AltDown
, METH_O
, NULL
},
35806 { (char *)"MouseState_MetaDown", (PyCFunction
)_wrap_MouseState_MetaDown
, METH_O
, NULL
},
35807 { (char *)"MouseState_CmdDown", (PyCFunction
)_wrap_MouseState_CmdDown
, METH_O
, NULL
},
35808 { (char *)"MouseState_SetX", (PyCFunction
) _wrap_MouseState_SetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35809 { (char *)"MouseState_SetY", (PyCFunction
) _wrap_MouseState_SetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35810 { (char *)"MouseState_SetLeftDown", (PyCFunction
) _wrap_MouseState_SetLeftDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35811 { (char *)"MouseState_SetMiddleDown", (PyCFunction
) _wrap_MouseState_SetMiddleDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35812 { (char *)"MouseState_SetRightDown", (PyCFunction
) _wrap_MouseState_SetRightDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35813 { (char *)"MouseState_SetControlDown", (PyCFunction
) _wrap_MouseState_SetControlDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35814 { (char *)"MouseState_SetShiftDown", (PyCFunction
) _wrap_MouseState_SetShiftDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35815 { (char *)"MouseState_SetAltDown", (PyCFunction
) _wrap_MouseState_SetAltDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35816 { (char *)"MouseState_SetMetaDown", (PyCFunction
) _wrap_MouseState_SetMetaDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35817 { (char *)"MouseState_swigregister", MouseState_swigregister
, METH_VARARGS
, NULL
},
35818 { (char *)"MouseState_swiginit", MouseState_swiginit
, METH_VARARGS
, NULL
},
35819 { (char *)"GetMouseState", (PyCFunction
)_wrap_GetMouseState
, METH_NOARGS
, NULL
},
35820 { (char *)"WakeUpMainThread", (PyCFunction
)_wrap_WakeUpMainThread
, METH_NOARGS
, NULL
},
35821 { (char *)"MutexGuiEnter", (PyCFunction
)_wrap_MutexGuiEnter
, METH_NOARGS
, NULL
},
35822 { (char *)"MutexGuiLeave", (PyCFunction
)_wrap_MutexGuiLeave
, METH_NOARGS
, NULL
},
35823 { (char *)"new_MutexGuiLocker", (PyCFunction
)_wrap_new_MutexGuiLocker
, METH_NOARGS
, NULL
},
35824 { (char *)"delete_MutexGuiLocker", (PyCFunction
)_wrap_delete_MutexGuiLocker
, METH_O
, NULL
},
35825 { (char *)"MutexGuiLocker_swigregister", MutexGuiLocker_swigregister
, METH_VARARGS
, NULL
},
35826 { (char *)"MutexGuiLocker_swiginit", MutexGuiLocker_swiginit
, METH_VARARGS
, NULL
},
35827 { (char *)"Thread_IsMain", (PyCFunction
)_wrap_Thread_IsMain
, METH_NOARGS
, NULL
},
35828 { (char *)"new_ToolTip", (PyCFunction
) _wrap_new_ToolTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35829 { (char *)"delete_ToolTip", (PyCFunction
)_wrap_delete_ToolTip
, METH_O
, NULL
},
35830 { (char *)"ToolTip_SetTip", (PyCFunction
) _wrap_ToolTip_SetTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35831 { (char *)"ToolTip_GetTip", (PyCFunction
)_wrap_ToolTip_GetTip
, METH_O
, NULL
},
35832 { (char *)"ToolTip_GetWindow", (PyCFunction
)_wrap_ToolTip_GetWindow
, METH_O
, NULL
},
35833 { (char *)"ToolTip_Enable", (PyCFunction
) _wrap_ToolTip_Enable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35834 { (char *)"ToolTip_SetDelay", (PyCFunction
) _wrap_ToolTip_SetDelay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35835 { (char *)"ToolTip_swigregister", ToolTip_swigregister
, METH_VARARGS
, NULL
},
35836 { (char *)"ToolTip_swiginit", ToolTip_swiginit
, METH_VARARGS
, NULL
},
35837 { (char *)"new_Caret", (PyCFunction
) _wrap_new_Caret
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35838 { (char *)"delete_Caret", (PyCFunction
)_wrap_delete_Caret
, METH_O
, NULL
},
35839 { (char *)"Caret_Destroy", (PyCFunction
)_wrap_Caret_Destroy
, METH_O
, NULL
},
35840 { (char *)"Caret_IsOk", (PyCFunction
)_wrap_Caret_IsOk
, METH_O
, NULL
},
35841 { (char *)"Caret_IsVisible", (PyCFunction
)_wrap_Caret_IsVisible
, METH_O
, NULL
},
35842 { (char *)"Caret_GetPosition", (PyCFunction
)_wrap_Caret_GetPosition
, METH_O
, NULL
},
35843 { (char *)"Caret_GetPositionTuple", (PyCFunction
)_wrap_Caret_GetPositionTuple
, METH_O
, NULL
},
35844 { (char *)"Caret_GetSize", (PyCFunction
)_wrap_Caret_GetSize
, METH_O
, NULL
},
35845 { (char *)"Caret_GetSizeTuple", (PyCFunction
)_wrap_Caret_GetSizeTuple
, METH_O
, NULL
},
35846 { (char *)"Caret_GetWindow", (PyCFunction
)_wrap_Caret_GetWindow
, METH_O
, NULL
},
35847 { (char *)"Caret_MoveXY", (PyCFunction
) _wrap_Caret_MoveXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35848 { (char *)"Caret_Move", (PyCFunction
) _wrap_Caret_Move
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35849 { (char *)"Caret_SetSizeWH", (PyCFunction
) _wrap_Caret_SetSizeWH
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35850 { (char *)"Caret_SetSize", (PyCFunction
) _wrap_Caret_SetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35851 { (char *)"Caret_Show", (PyCFunction
) _wrap_Caret_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35852 { (char *)"Caret_Hide", (PyCFunction
)_wrap_Caret_Hide
, METH_O
, NULL
},
35853 { (char *)"Caret_GetBlinkTime", (PyCFunction
)_wrap_Caret_GetBlinkTime
, METH_NOARGS
, NULL
},
35854 { (char *)"Caret_SetBlinkTime", (PyCFunction
) _wrap_Caret_SetBlinkTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35855 { (char *)"Caret_swigregister", Caret_swigregister
, METH_VARARGS
, NULL
},
35856 { (char *)"Caret_swiginit", Caret_swiginit
, METH_VARARGS
, NULL
},
35857 { (char *)"new_BusyCursor", (PyCFunction
) _wrap_new_BusyCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35858 { (char *)"delete_BusyCursor", (PyCFunction
)_wrap_delete_BusyCursor
, METH_O
, NULL
},
35859 { (char *)"BusyCursor_swigregister", BusyCursor_swigregister
, METH_VARARGS
, NULL
},
35860 { (char *)"BusyCursor_swiginit", BusyCursor_swiginit
, METH_VARARGS
, NULL
},
35861 { (char *)"new_WindowDisabler", (PyCFunction
) _wrap_new_WindowDisabler
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35862 { (char *)"delete_WindowDisabler", (PyCFunction
)_wrap_delete_WindowDisabler
, METH_O
, NULL
},
35863 { (char *)"WindowDisabler_swigregister", WindowDisabler_swigregister
, METH_VARARGS
, NULL
},
35864 { (char *)"WindowDisabler_swiginit", WindowDisabler_swiginit
, METH_VARARGS
, NULL
},
35865 { (char *)"new_BusyInfo", (PyCFunction
) _wrap_new_BusyInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35866 { (char *)"delete_BusyInfo", (PyCFunction
)_wrap_delete_BusyInfo
, METH_O
, NULL
},
35867 { (char *)"BusyInfo_swigregister", BusyInfo_swigregister
, METH_VARARGS
, NULL
},
35868 { (char *)"BusyInfo_swiginit", BusyInfo_swiginit
, METH_VARARGS
, NULL
},
35869 { (char *)"new_StopWatch", (PyCFunction
)_wrap_new_StopWatch
, METH_NOARGS
, NULL
},
35870 { (char *)"StopWatch_Start", (PyCFunction
) _wrap_StopWatch_Start
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35871 { (char *)"StopWatch_Pause", (PyCFunction
)_wrap_StopWatch_Pause
, METH_O
, NULL
},
35872 { (char *)"StopWatch_Resume", (PyCFunction
)_wrap_StopWatch_Resume
, METH_O
, NULL
},
35873 { (char *)"StopWatch_Time", (PyCFunction
)_wrap_StopWatch_Time
, METH_O
, NULL
},
35874 { (char *)"StopWatch_swigregister", StopWatch_swigregister
, METH_VARARGS
, NULL
},
35875 { (char *)"StopWatch_swiginit", StopWatch_swiginit
, METH_VARARGS
, NULL
},
35876 { (char *)"new_FileHistory", (PyCFunction
) _wrap_new_FileHistory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35877 { (char *)"delete_FileHistory", (PyCFunction
)_wrap_delete_FileHistory
, METH_O
, NULL
},
35878 { (char *)"FileHistory_AddFileToHistory", (PyCFunction
) _wrap_FileHistory_AddFileToHistory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35879 { (char *)"FileHistory_RemoveFileFromHistory", (PyCFunction
) _wrap_FileHistory_RemoveFileFromHistory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35880 { (char *)"FileHistory_GetMaxFiles", (PyCFunction
)_wrap_FileHistory_GetMaxFiles
, METH_O
, NULL
},
35881 { (char *)"FileHistory_UseMenu", (PyCFunction
) _wrap_FileHistory_UseMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35882 { (char *)"FileHistory_RemoveMenu", (PyCFunction
) _wrap_FileHistory_RemoveMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35883 { (char *)"FileHistory_Load", (PyCFunction
) _wrap_FileHistory_Load
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35884 { (char *)"FileHistory_Save", (PyCFunction
) _wrap_FileHistory_Save
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35885 { (char *)"FileHistory_AddFilesToMenu", (PyCFunction
)_wrap_FileHistory_AddFilesToMenu
, METH_O
, NULL
},
35886 { (char *)"FileHistory_AddFilesToThisMenu", (PyCFunction
) _wrap_FileHistory_AddFilesToThisMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35887 { (char *)"FileHistory_GetHistoryFile", (PyCFunction
) _wrap_FileHistory_GetHistoryFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35888 { (char *)"FileHistory_GetCount", (PyCFunction
)_wrap_FileHistory_GetCount
, METH_O
, NULL
},
35889 { (char *)"FileHistory_swigregister", FileHistory_swigregister
, METH_VARARGS
, NULL
},
35890 { (char *)"FileHistory_swiginit", FileHistory_swiginit
, METH_VARARGS
, NULL
},
35891 { (char *)"new_SingleInstanceChecker", (PyCFunction
) _wrap_new_SingleInstanceChecker
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35892 { (char *)"new_PreSingleInstanceChecker", (PyCFunction
)_wrap_new_PreSingleInstanceChecker
, METH_NOARGS
, NULL
},
35893 { (char *)"delete_SingleInstanceChecker", (PyCFunction
)_wrap_delete_SingleInstanceChecker
, METH_O
, NULL
},
35894 { (char *)"SingleInstanceChecker_Create", (PyCFunction
) _wrap_SingleInstanceChecker_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35895 { (char *)"SingleInstanceChecker_IsAnotherRunning", (PyCFunction
)_wrap_SingleInstanceChecker_IsAnotherRunning
, METH_O
, NULL
},
35896 { (char *)"SingleInstanceChecker_swigregister", SingleInstanceChecker_swigregister
, METH_VARARGS
, NULL
},
35897 { (char *)"SingleInstanceChecker_swiginit", SingleInstanceChecker_swiginit
, METH_VARARGS
, NULL
},
35898 { (char *)"DrawWindowOnDC", (PyCFunction
) _wrap_DrawWindowOnDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35899 { (char *)"delete_TipProvider", (PyCFunction
)_wrap_delete_TipProvider
, METH_O
, NULL
},
35900 { (char *)"TipProvider_GetTip", (PyCFunction
)_wrap_TipProvider_GetTip
, METH_O
, NULL
},
35901 { (char *)"TipProvider_GetCurrentTip", (PyCFunction
)_wrap_TipProvider_GetCurrentTip
, METH_O
, NULL
},
35902 { (char *)"TipProvider_PreprocessTip", (PyCFunction
) _wrap_TipProvider_PreprocessTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35903 { (char *)"TipProvider_swigregister", TipProvider_swigregister
, METH_VARARGS
, NULL
},
35904 { (char *)"new_PyTipProvider", (PyCFunction
) _wrap_new_PyTipProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35905 { (char *)"PyTipProvider__setCallbackInfo", (PyCFunction
) _wrap_PyTipProvider__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35906 { (char *)"PyTipProvider_swigregister", PyTipProvider_swigregister
, METH_VARARGS
, NULL
},
35907 { (char *)"PyTipProvider_swiginit", PyTipProvider_swiginit
, METH_VARARGS
, NULL
},
35908 { (char *)"ShowTip", (PyCFunction
) _wrap_ShowTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35909 { (char *)"CreateFileTipProvider", (PyCFunction
) _wrap_CreateFileTipProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35910 { (char *)"new_Timer", (PyCFunction
) _wrap_new_Timer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35911 { (char *)"delete_Timer", (PyCFunction
)_wrap_delete_Timer
, METH_O
, NULL
},
35912 { (char *)"Timer__setCallbackInfo", (PyCFunction
) _wrap_Timer__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35913 { (char *)"Timer_SetOwner", (PyCFunction
) _wrap_Timer_SetOwner
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35914 { (char *)"Timer_GetOwner", (PyCFunction
)_wrap_Timer_GetOwner
, METH_O
, NULL
},
35915 { (char *)"Timer_Start", (PyCFunction
) _wrap_Timer_Start
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35916 { (char *)"Timer_Stop", (PyCFunction
)_wrap_Timer_Stop
, METH_O
, NULL
},
35917 { (char *)"Timer_Notify", (PyCFunction
)_wrap_Timer_Notify
, METH_O
, NULL
},
35918 { (char *)"Timer_IsRunning", (PyCFunction
)_wrap_Timer_IsRunning
, METH_O
, NULL
},
35919 { (char *)"Timer_GetInterval", (PyCFunction
)_wrap_Timer_GetInterval
, METH_O
, NULL
},
35920 { (char *)"Timer_GetId", (PyCFunction
)_wrap_Timer_GetId
, METH_O
, NULL
},
35921 { (char *)"Timer_IsOneShot", (PyCFunction
)_wrap_Timer_IsOneShot
, METH_O
, NULL
},
35922 { (char *)"Timer_swigregister", Timer_swigregister
, METH_VARARGS
, NULL
},
35923 { (char *)"Timer_swiginit", Timer_swiginit
, METH_VARARGS
, NULL
},
35924 { (char *)"new_TimerEvent", (PyCFunction
) _wrap_new_TimerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35925 { (char *)"TimerEvent_GetInterval", (PyCFunction
)_wrap_TimerEvent_GetInterval
, METH_O
, NULL
},
35926 { (char *)"TimerEvent_swigregister", TimerEvent_swigregister
, METH_VARARGS
, NULL
},
35927 { (char *)"TimerEvent_swiginit", TimerEvent_swiginit
, METH_VARARGS
, NULL
},
35928 { (char *)"new_TimerRunner", _wrap_new_TimerRunner
, METH_VARARGS
, NULL
},
35929 { (char *)"delete_TimerRunner", (PyCFunction
)_wrap_delete_TimerRunner
, METH_O
, NULL
},
35930 { (char *)"TimerRunner_Start", (PyCFunction
) _wrap_TimerRunner_Start
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35931 { (char *)"TimerRunner_swigregister", TimerRunner_swigregister
, METH_VARARGS
, NULL
},
35932 { (char *)"TimerRunner_swiginit", TimerRunner_swiginit
, METH_VARARGS
, NULL
},
35933 { (char *)"new_Log", (PyCFunction
)_wrap_new_Log
, METH_NOARGS
, NULL
},
35934 { (char *)"delete_Log", (PyCFunction
)_wrap_delete_Log
, METH_O
, NULL
},
35935 { (char *)"Log_IsEnabled", (PyCFunction
)_wrap_Log_IsEnabled
, METH_NOARGS
, NULL
},
35936 { (char *)"Log_EnableLogging", (PyCFunction
) _wrap_Log_EnableLogging
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35937 { (char *)"Log_OnLog", (PyCFunction
) _wrap_Log_OnLog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35938 { (char *)"Log_Flush", (PyCFunction
)_wrap_Log_Flush
, METH_O
, NULL
},
35939 { (char *)"Log_FlushActive", (PyCFunction
)_wrap_Log_FlushActive
, METH_NOARGS
, NULL
},
35940 { (char *)"Log_GetActiveTarget", (PyCFunction
)_wrap_Log_GetActiveTarget
, METH_NOARGS
, NULL
},
35941 { (char *)"Log_SetActiveTarget", (PyCFunction
) _wrap_Log_SetActiveTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35942 { (char *)"Log_Suspend", (PyCFunction
)_wrap_Log_Suspend
, METH_NOARGS
, NULL
},
35943 { (char *)"Log_Resume", (PyCFunction
)_wrap_Log_Resume
, METH_NOARGS
, NULL
},
35944 { (char *)"Log_SetVerbose", (PyCFunction
) _wrap_Log_SetVerbose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35945 { (char *)"Log_SetLogLevel", (PyCFunction
) _wrap_Log_SetLogLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35946 { (char *)"Log_DontCreateOnDemand", (PyCFunction
)_wrap_Log_DontCreateOnDemand
, METH_NOARGS
, NULL
},
35947 { (char *)"Log_SetTraceMask", (PyCFunction
) _wrap_Log_SetTraceMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35948 { (char *)"Log_AddTraceMask", (PyCFunction
) _wrap_Log_AddTraceMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35949 { (char *)"Log_RemoveTraceMask", (PyCFunction
) _wrap_Log_RemoveTraceMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35950 { (char *)"Log_ClearTraceMasks", (PyCFunction
)_wrap_Log_ClearTraceMasks
, METH_NOARGS
, NULL
},
35951 { (char *)"Log_GetTraceMasks", (PyCFunction
)_wrap_Log_GetTraceMasks
, METH_NOARGS
, NULL
},
35952 { (char *)"Log_SetTimestamp", (PyCFunction
) _wrap_Log_SetTimestamp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35953 { (char *)"Log_GetVerbose", (PyCFunction
)_wrap_Log_GetVerbose
, METH_NOARGS
, NULL
},
35954 { (char *)"Log_GetTraceMask", (PyCFunction
)_wrap_Log_GetTraceMask
, METH_NOARGS
, NULL
},
35955 { (char *)"Log_IsAllowedTraceMask", (PyCFunction
) _wrap_Log_IsAllowedTraceMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35956 { (char *)"Log_GetLogLevel", (PyCFunction
)_wrap_Log_GetLogLevel
, METH_NOARGS
, NULL
},
35957 { (char *)"Log_GetTimestamp", (PyCFunction
)_wrap_Log_GetTimestamp
, METH_NOARGS
, NULL
},
35958 { (char *)"Log_TimeStamp", (PyCFunction
)_wrap_Log_TimeStamp
, METH_NOARGS
, NULL
},
35959 { (char *)"Log_Destroy", (PyCFunction
)_wrap_Log_Destroy
, METH_O
, NULL
},
35960 { (char *)"Log_swigregister", Log_swigregister
, METH_VARARGS
, NULL
},
35961 { (char *)"Log_swiginit", Log_swiginit
, METH_VARARGS
, NULL
},
35962 { (char *)"new_LogStderr", (PyCFunction
)_wrap_new_LogStderr
, METH_NOARGS
, NULL
},
35963 { (char *)"LogStderr_swigregister", LogStderr_swigregister
, METH_VARARGS
, NULL
},
35964 { (char *)"LogStderr_swiginit", LogStderr_swiginit
, METH_VARARGS
, NULL
},
35965 { (char *)"new_LogTextCtrl", (PyCFunction
) _wrap_new_LogTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35966 { (char *)"LogTextCtrl_swigregister", LogTextCtrl_swigregister
, METH_VARARGS
, NULL
},
35967 { (char *)"LogTextCtrl_swiginit", LogTextCtrl_swiginit
, METH_VARARGS
, NULL
},
35968 { (char *)"new_LogGui", (PyCFunction
)_wrap_new_LogGui
, METH_NOARGS
, NULL
},
35969 { (char *)"LogGui_swigregister", LogGui_swigregister
, METH_VARARGS
, NULL
},
35970 { (char *)"LogGui_swiginit", LogGui_swiginit
, METH_VARARGS
, NULL
},
35971 { (char *)"new_LogWindow", (PyCFunction
) _wrap_new_LogWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35972 { (char *)"LogWindow_Show", (PyCFunction
) _wrap_LogWindow_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35973 { (char *)"LogWindow_GetFrame", (PyCFunction
)_wrap_LogWindow_GetFrame
, METH_O
, NULL
},
35974 { (char *)"LogWindow_GetOldLog", (PyCFunction
)_wrap_LogWindow_GetOldLog
, METH_O
, NULL
},
35975 { (char *)"LogWindow_IsPassingMessages", (PyCFunction
)_wrap_LogWindow_IsPassingMessages
, METH_O
, NULL
},
35976 { (char *)"LogWindow_PassMessages", (PyCFunction
) _wrap_LogWindow_PassMessages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35977 { (char *)"LogWindow_swigregister", LogWindow_swigregister
, METH_VARARGS
, NULL
},
35978 { (char *)"LogWindow_swiginit", LogWindow_swiginit
, METH_VARARGS
, NULL
},
35979 { (char *)"new_LogChain", (PyCFunction
) _wrap_new_LogChain
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35980 { (char *)"LogChain_SetLog", (PyCFunction
) _wrap_LogChain_SetLog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35981 { (char *)"LogChain_PassMessages", (PyCFunction
) _wrap_LogChain_PassMessages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35982 { (char *)"LogChain_IsPassingMessages", (PyCFunction
)_wrap_LogChain_IsPassingMessages
, METH_O
, NULL
},
35983 { (char *)"LogChain_GetOldLog", (PyCFunction
)_wrap_LogChain_GetOldLog
, METH_O
, NULL
},
35984 { (char *)"LogChain_swigregister", LogChain_swigregister
, METH_VARARGS
, NULL
},
35985 { (char *)"LogChain_swiginit", LogChain_swiginit
, METH_VARARGS
, NULL
},
35986 { (char *)"new_LogBuffer", (PyCFunction
)_wrap_new_LogBuffer
, METH_NOARGS
, NULL
},
35987 { (char *)"LogBuffer_GetBuffer", (PyCFunction
)_wrap_LogBuffer_GetBuffer
, METH_O
, NULL
},
35988 { (char *)"LogBuffer_swigregister", LogBuffer_swigregister
, METH_VARARGS
, NULL
},
35989 { (char *)"LogBuffer_swiginit", LogBuffer_swiginit
, METH_VARARGS
, NULL
},
35990 { (char *)"SysErrorCode", (PyCFunction
)_wrap_SysErrorCode
, METH_NOARGS
, NULL
},
35991 { (char *)"SysErrorMsg", (PyCFunction
) _wrap_SysErrorMsg
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35992 { (char *)"LogFatalError", (PyCFunction
) _wrap_LogFatalError
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35993 { (char *)"LogError", (PyCFunction
) _wrap_LogError
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35994 { (char *)"LogWarning", (PyCFunction
) _wrap_LogWarning
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35995 { (char *)"LogMessage", (PyCFunction
) _wrap_LogMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35996 { (char *)"LogInfo", (PyCFunction
) _wrap_LogInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35997 { (char *)"LogDebug", (PyCFunction
) _wrap_LogDebug
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35998 { (char *)"LogVerbose", (PyCFunction
) _wrap_LogVerbose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35999 { (char *)"LogStatus", (PyCFunction
) _wrap_LogStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36000 { (char *)"LogStatusFrame", (PyCFunction
) _wrap_LogStatusFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36001 { (char *)"LogSysError", (PyCFunction
) _wrap_LogSysError
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36002 { (char *)"LogGeneric", (PyCFunction
) _wrap_LogGeneric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36003 { (char *)"LogTrace", _wrap_LogTrace
, METH_VARARGS
, NULL
},
36004 { (char *)"SafeShowMessage", (PyCFunction
) _wrap_SafeShowMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36005 { (char *)"new_LogNull", (PyCFunction
)_wrap_new_LogNull
, METH_NOARGS
, NULL
},
36006 { (char *)"delete_LogNull", (PyCFunction
)_wrap_delete_LogNull
, METH_O
, NULL
},
36007 { (char *)"LogNull_swigregister", LogNull_swigregister
, METH_VARARGS
, NULL
},
36008 { (char *)"LogNull_swiginit", LogNull_swiginit
, METH_VARARGS
, NULL
},
36009 { (char *)"new_PyLog", (PyCFunction
)_wrap_new_PyLog
, METH_NOARGS
, NULL
},
36010 { (char *)"PyLog__setCallbackInfo", (PyCFunction
) _wrap_PyLog__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36011 { (char *)"PyLog_swigregister", PyLog_swigregister
, METH_VARARGS
, NULL
},
36012 { (char *)"PyLog_swiginit", PyLog_swiginit
, METH_VARARGS
, NULL
},
36013 { (char *)"Process_Kill", (PyCFunction
) _wrap_Process_Kill
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36014 { (char *)"Process_Exists", (PyCFunction
) _wrap_Process_Exists
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36015 { (char *)"Process_Open", (PyCFunction
) _wrap_Process_Open
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36016 { (char *)"new_Process", (PyCFunction
) _wrap_new_Process
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36017 { (char *)"Process__setCallbackInfo", (PyCFunction
) _wrap_Process__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36018 { (char *)"Process_OnTerminate", (PyCFunction
) _wrap_Process_OnTerminate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36019 { (char *)"Process_Redirect", (PyCFunction
)_wrap_Process_Redirect
, METH_O
, NULL
},
36020 { (char *)"Process_IsRedirected", (PyCFunction
)_wrap_Process_IsRedirected
, METH_O
, NULL
},
36021 { (char *)"Process_Detach", (PyCFunction
)_wrap_Process_Detach
, METH_O
, NULL
},
36022 { (char *)"Process_GetInputStream", (PyCFunction
)_wrap_Process_GetInputStream
, METH_O
, NULL
},
36023 { (char *)"Process_GetErrorStream", (PyCFunction
)_wrap_Process_GetErrorStream
, METH_O
, NULL
},
36024 { (char *)"Process_GetOutputStream", (PyCFunction
)_wrap_Process_GetOutputStream
, METH_O
, NULL
},
36025 { (char *)"Process_CloseOutput", (PyCFunction
)_wrap_Process_CloseOutput
, METH_O
, NULL
},
36026 { (char *)"Process_IsInputOpened", (PyCFunction
)_wrap_Process_IsInputOpened
, METH_O
, NULL
},
36027 { (char *)"Process_IsInputAvailable", (PyCFunction
)_wrap_Process_IsInputAvailable
, METH_O
, NULL
},
36028 { (char *)"Process_IsErrorAvailable", (PyCFunction
)_wrap_Process_IsErrorAvailable
, METH_O
, NULL
},
36029 { (char *)"Process_swigregister", Process_swigregister
, METH_VARARGS
, NULL
},
36030 { (char *)"Process_swiginit", Process_swiginit
, METH_VARARGS
, NULL
},
36031 { (char *)"new_ProcessEvent", (PyCFunction
) _wrap_new_ProcessEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36032 { (char *)"ProcessEvent_GetPid", (PyCFunction
)_wrap_ProcessEvent_GetPid
, METH_O
, NULL
},
36033 { (char *)"ProcessEvent_GetExitCode", (PyCFunction
)_wrap_ProcessEvent_GetExitCode
, METH_O
, NULL
},
36034 { (char *)"ProcessEvent_m_pid_set", _wrap_ProcessEvent_m_pid_set
, METH_VARARGS
, NULL
},
36035 { (char *)"ProcessEvent_m_pid_get", (PyCFunction
)_wrap_ProcessEvent_m_pid_get
, METH_O
, NULL
},
36036 { (char *)"ProcessEvent_m_exitcode_set", _wrap_ProcessEvent_m_exitcode_set
, METH_VARARGS
, NULL
},
36037 { (char *)"ProcessEvent_m_exitcode_get", (PyCFunction
)_wrap_ProcessEvent_m_exitcode_get
, METH_O
, NULL
},
36038 { (char *)"ProcessEvent_swigregister", ProcessEvent_swigregister
, METH_VARARGS
, NULL
},
36039 { (char *)"ProcessEvent_swiginit", ProcessEvent_swiginit
, METH_VARARGS
, NULL
},
36040 { (char *)"Execute", (PyCFunction
) _wrap_Execute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36041 { (char *)"Kill", (PyCFunction
) _wrap_Kill
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36042 { (char *)"new_Joystick", (PyCFunction
) _wrap_new_Joystick
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36043 { (char *)"delete_Joystick", (PyCFunction
)_wrap_delete_Joystick
, METH_O
, NULL
},
36044 { (char *)"Joystick_GetPosition", (PyCFunction
)_wrap_Joystick_GetPosition
, METH_O
, NULL
},
36045 { (char *)"Joystick_GetZPosition", (PyCFunction
)_wrap_Joystick_GetZPosition
, METH_O
, NULL
},
36046 { (char *)"Joystick_GetButtonState", (PyCFunction
)_wrap_Joystick_GetButtonState
, METH_O
, NULL
},
36047 { (char *)"Joystick_GetPOVPosition", (PyCFunction
)_wrap_Joystick_GetPOVPosition
, METH_O
, NULL
},
36048 { (char *)"Joystick_GetPOVCTSPosition", (PyCFunction
)_wrap_Joystick_GetPOVCTSPosition
, METH_O
, NULL
},
36049 { (char *)"Joystick_GetRudderPosition", (PyCFunction
)_wrap_Joystick_GetRudderPosition
, METH_O
, NULL
},
36050 { (char *)"Joystick_GetUPosition", (PyCFunction
)_wrap_Joystick_GetUPosition
, METH_O
, NULL
},
36051 { (char *)"Joystick_GetVPosition", (PyCFunction
)_wrap_Joystick_GetVPosition
, METH_O
, NULL
},
36052 { (char *)"Joystick_GetMovementThreshold", (PyCFunction
)_wrap_Joystick_GetMovementThreshold
, METH_O
, NULL
},
36053 { (char *)"Joystick_SetMovementThreshold", (PyCFunction
) _wrap_Joystick_SetMovementThreshold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36054 { (char *)"Joystick_IsOk", (PyCFunction
)_wrap_Joystick_IsOk
, METH_O
, NULL
},
36055 { (char *)"Joystick_GetNumberJoysticks", (PyCFunction
)_wrap_Joystick_GetNumberJoysticks
, METH_O
, NULL
},
36056 { (char *)"Joystick_GetManufacturerId", (PyCFunction
)_wrap_Joystick_GetManufacturerId
, METH_O
, NULL
},
36057 { (char *)"Joystick_GetProductId", (PyCFunction
)_wrap_Joystick_GetProductId
, METH_O
, NULL
},
36058 { (char *)"Joystick_GetProductName", (PyCFunction
)_wrap_Joystick_GetProductName
, METH_O
, NULL
},
36059 { (char *)"Joystick_GetXMin", (PyCFunction
)_wrap_Joystick_GetXMin
, METH_O
, NULL
},
36060 { (char *)"Joystick_GetYMin", (PyCFunction
)_wrap_Joystick_GetYMin
, METH_O
, NULL
},
36061 { (char *)"Joystick_GetZMin", (PyCFunction
)_wrap_Joystick_GetZMin
, METH_O
, NULL
},
36062 { (char *)"Joystick_GetXMax", (PyCFunction
)_wrap_Joystick_GetXMax
, METH_O
, NULL
},
36063 { (char *)"Joystick_GetYMax", (PyCFunction
)_wrap_Joystick_GetYMax
, METH_O
, NULL
},
36064 { (char *)"Joystick_GetZMax", (PyCFunction
)_wrap_Joystick_GetZMax
, METH_O
, NULL
},
36065 { (char *)"Joystick_GetNumberButtons", (PyCFunction
)_wrap_Joystick_GetNumberButtons
, METH_O
, NULL
},
36066 { (char *)"Joystick_GetNumberAxes", (PyCFunction
)_wrap_Joystick_GetNumberAxes
, METH_O
, NULL
},
36067 { (char *)"Joystick_GetMaxButtons", (PyCFunction
)_wrap_Joystick_GetMaxButtons
, METH_O
, NULL
},
36068 { (char *)"Joystick_GetMaxAxes", (PyCFunction
)_wrap_Joystick_GetMaxAxes
, METH_O
, NULL
},
36069 { (char *)"Joystick_GetPollingMin", (PyCFunction
)_wrap_Joystick_GetPollingMin
, METH_O
, NULL
},
36070 { (char *)"Joystick_GetPollingMax", (PyCFunction
)_wrap_Joystick_GetPollingMax
, METH_O
, NULL
},
36071 { (char *)"Joystick_GetRudderMin", (PyCFunction
)_wrap_Joystick_GetRudderMin
, METH_O
, NULL
},
36072 { (char *)"Joystick_GetRudderMax", (PyCFunction
)_wrap_Joystick_GetRudderMax
, METH_O
, NULL
},
36073 { (char *)"Joystick_GetUMin", (PyCFunction
)_wrap_Joystick_GetUMin
, METH_O
, NULL
},
36074 { (char *)"Joystick_GetUMax", (PyCFunction
)_wrap_Joystick_GetUMax
, METH_O
, NULL
},
36075 { (char *)"Joystick_GetVMin", (PyCFunction
)_wrap_Joystick_GetVMin
, METH_O
, NULL
},
36076 { (char *)"Joystick_GetVMax", (PyCFunction
)_wrap_Joystick_GetVMax
, METH_O
, NULL
},
36077 { (char *)"Joystick_HasRudder", (PyCFunction
)_wrap_Joystick_HasRudder
, METH_O
, NULL
},
36078 { (char *)"Joystick_HasZ", (PyCFunction
)_wrap_Joystick_HasZ
, METH_O
, NULL
},
36079 { (char *)"Joystick_HasU", (PyCFunction
)_wrap_Joystick_HasU
, METH_O
, NULL
},
36080 { (char *)"Joystick_HasV", (PyCFunction
)_wrap_Joystick_HasV
, METH_O
, NULL
},
36081 { (char *)"Joystick_HasPOV", (PyCFunction
)_wrap_Joystick_HasPOV
, METH_O
, NULL
},
36082 { (char *)"Joystick_HasPOV4Dir", (PyCFunction
)_wrap_Joystick_HasPOV4Dir
, METH_O
, NULL
},
36083 { (char *)"Joystick_HasPOVCTS", (PyCFunction
)_wrap_Joystick_HasPOVCTS
, METH_O
, NULL
},
36084 { (char *)"Joystick_SetCapture", (PyCFunction
) _wrap_Joystick_SetCapture
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36085 { (char *)"Joystick_ReleaseCapture", (PyCFunction
)_wrap_Joystick_ReleaseCapture
, METH_O
, NULL
},
36086 { (char *)"Joystick_swigregister", Joystick_swigregister
, METH_VARARGS
, NULL
},
36087 { (char *)"Joystick_swiginit", Joystick_swiginit
, METH_VARARGS
, NULL
},
36088 { (char *)"new_JoystickEvent", (PyCFunction
) _wrap_new_JoystickEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36089 { (char *)"JoystickEvent_GetPosition", (PyCFunction
)_wrap_JoystickEvent_GetPosition
, METH_O
, NULL
},
36090 { (char *)"JoystickEvent_GetZPosition", (PyCFunction
)_wrap_JoystickEvent_GetZPosition
, METH_O
, NULL
},
36091 { (char *)"JoystickEvent_GetButtonState", (PyCFunction
)_wrap_JoystickEvent_GetButtonState
, METH_O
, NULL
},
36092 { (char *)"JoystickEvent_GetButtonChange", (PyCFunction
)_wrap_JoystickEvent_GetButtonChange
, METH_O
, NULL
},
36093 { (char *)"JoystickEvent_GetJoystick", (PyCFunction
)_wrap_JoystickEvent_GetJoystick
, METH_O
, NULL
},
36094 { (char *)"JoystickEvent_SetJoystick", (PyCFunction
) _wrap_JoystickEvent_SetJoystick
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36095 { (char *)"JoystickEvent_SetButtonState", (PyCFunction
) _wrap_JoystickEvent_SetButtonState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36096 { (char *)"JoystickEvent_SetButtonChange", (PyCFunction
) _wrap_JoystickEvent_SetButtonChange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36097 { (char *)"JoystickEvent_SetPosition", (PyCFunction
) _wrap_JoystickEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36098 { (char *)"JoystickEvent_SetZPosition", (PyCFunction
) _wrap_JoystickEvent_SetZPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36099 { (char *)"JoystickEvent_IsButton", (PyCFunction
)_wrap_JoystickEvent_IsButton
, METH_O
, NULL
},
36100 { (char *)"JoystickEvent_IsMove", (PyCFunction
)_wrap_JoystickEvent_IsMove
, METH_O
, NULL
},
36101 { (char *)"JoystickEvent_IsZMove", (PyCFunction
)_wrap_JoystickEvent_IsZMove
, METH_O
, NULL
},
36102 { (char *)"JoystickEvent_ButtonDown", (PyCFunction
) _wrap_JoystickEvent_ButtonDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36103 { (char *)"JoystickEvent_ButtonUp", (PyCFunction
) _wrap_JoystickEvent_ButtonUp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36104 { (char *)"JoystickEvent_ButtonIsDown", (PyCFunction
) _wrap_JoystickEvent_ButtonIsDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36105 { (char *)"JoystickEvent_swigregister", JoystickEvent_swigregister
, METH_VARARGS
, NULL
},
36106 { (char *)"JoystickEvent_swiginit", JoystickEvent_swiginit
, METH_VARARGS
, NULL
},
36107 { (char *)"new_Sound", (PyCFunction
) _wrap_new_Sound
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36108 { (char *)"new_SoundFromData", (PyCFunction
) _wrap_new_SoundFromData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36109 { (char *)"delete_Sound", (PyCFunction
)_wrap_delete_Sound
, METH_O
, NULL
},
36110 { (char *)"Sound_Create", (PyCFunction
) _wrap_Sound_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36111 { (char *)"Sound_CreateFromData", (PyCFunction
) _wrap_Sound_CreateFromData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36112 { (char *)"Sound_IsOk", (PyCFunction
)_wrap_Sound_IsOk
, METH_O
, NULL
},
36113 { (char *)"Sound_Play", (PyCFunction
) _wrap_Sound_Play
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36114 { (char *)"Sound_PlaySound", (PyCFunction
) _wrap_Sound_PlaySound
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36115 { (char *)"Sound_Stop", (PyCFunction
)_wrap_Sound_Stop
, METH_NOARGS
, NULL
},
36116 { (char *)"Sound_swigregister", Sound_swigregister
, METH_VARARGS
, NULL
},
36117 { (char *)"Sound_swiginit", Sound_swiginit
, METH_VARARGS
, NULL
},
36118 { (char *)"new_FileTypeInfo", (PyCFunction
) _wrap_new_FileTypeInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36119 { (char *)"new_FileTypeInfoSequence", (PyCFunction
) _wrap_new_FileTypeInfoSequence
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36120 { (char *)"new_NullFileTypeInfo", (PyCFunction
)_wrap_new_NullFileTypeInfo
, METH_NOARGS
, NULL
},
36121 { (char *)"FileTypeInfo_IsValid", (PyCFunction
)_wrap_FileTypeInfo_IsValid
, METH_O
, NULL
},
36122 { (char *)"FileTypeInfo_SetIcon", (PyCFunction
) _wrap_FileTypeInfo_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36123 { (char *)"FileTypeInfo_SetShortDesc", (PyCFunction
) _wrap_FileTypeInfo_SetShortDesc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36124 { (char *)"FileTypeInfo_GetMimeType", (PyCFunction
)_wrap_FileTypeInfo_GetMimeType
, METH_O
, NULL
},
36125 { (char *)"FileTypeInfo_GetOpenCommand", (PyCFunction
)_wrap_FileTypeInfo_GetOpenCommand
, METH_O
, NULL
},
36126 { (char *)"FileTypeInfo_GetPrintCommand", (PyCFunction
)_wrap_FileTypeInfo_GetPrintCommand
, METH_O
, NULL
},
36127 { (char *)"FileTypeInfo_GetShortDesc", (PyCFunction
)_wrap_FileTypeInfo_GetShortDesc
, METH_O
, NULL
},
36128 { (char *)"FileTypeInfo_GetDescription", (PyCFunction
)_wrap_FileTypeInfo_GetDescription
, METH_O
, NULL
},
36129 { (char *)"FileTypeInfo_GetExtensions", (PyCFunction
)_wrap_FileTypeInfo_GetExtensions
, METH_O
, NULL
},
36130 { (char *)"FileTypeInfo_GetExtensionsCount", (PyCFunction
)_wrap_FileTypeInfo_GetExtensionsCount
, METH_O
, NULL
},
36131 { (char *)"FileTypeInfo_GetIconFile", (PyCFunction
)_wrap_FileTypeInfo_GetIconFile
, METH_O
, NULL
},
36132 { (char *)"FileTypeInfo_GetIconIndex", (PyCFunction
)_wrap_FileTypeInfo_GetIconIndex
, METH_O
, NULL
},
36133 { (char *)"FileTypeInfo_swigregister", FileTypeInfo_swigregister
, METH_VARARGS
, NULL
},
36134 { (char *)"FileTypeInfo_swiginit", FileTypeInfo_swiginit
, METH_VARARGS
, NULL
},
36135 { (char *)"new_FileType", (PyCFunction
) _wrap_new_FileType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36136 { (char *)"delete_FileType", (PyCFunction
)_wrap_delete_FileType
, METH_O
, NULL
},
36137 { (char *)"FileType_GetMimeType", (PyCFunction
)_wrap_FileType_GetMimeType
, METH_O
, NULL
},
36138 { (char *)"FileType_GetMimeTypes", (PyCFunction
)_wrap_FileType_GetMimeTypes
, METH_O
, NULL
},
36139 { (char *)"FileType_GetExtensions", (PyCFunction
)_wrap_FileType_GetExtensions
, METH_O
, NULL
},
36140 { (char *)"FileType_GetIcon", (PyCFunction
)_wrap_FileType_GetIcon
, METH_O
, NULL
},
36141 { (char *)"FileType_GetIconInfo", (PyCFunction
)_wrap_FileType_GetIconInfo
, METH_O
, NULL
},
36142 { (char *)"FileType_GetDescription", (PyCFunction
)_wrap_FileType_GetDescription
, METH_O
, NULL
},
36143 { (char *)"FileType_GetOpenCommand", (PyCFunction
) _wrap_FileType_GetOpenCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36144 { (char *)"FileType_GetPrintCommand", (PyCFunction
) _wrap_FileType_GetPrintCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36145 { (char *)"FileType_GetAllCommands", (PyCFunction
) _wrap_FileType_GetAllCommands
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36146 { (char *)"FileType_SetCommand", (PyCFunction
) _wrap_FileType_SetCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36147 { (char *)"FileType_SetDefaultIcon", (PyCFunction
) _wrap_FileType_SetDefaultIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36148 { (char *)"FileType_Unassociate", (PyCFunction
)_wrap_FileType_Unassociate
, METH_O
, NULL
},
36149 { (char *)"FileType_ExpandCommand", (PyCFunction
) _wrap_FileType_ExpandCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36150 { (char *)"FileType_swigregister", FileType_swigregister
, METH_VARARGS
, NULL
},
36151 { (char *)"FileType_swiginit", FileType_swiginit
, METH_VARARGS
, NULL
},
36152 { (char *)"MimeTypesManager_IsOfType", (PyCFunction
) _wrap_MimeTypesManager_IsOfType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36153 { (char *)"new_MimeTypesManager", (PyCFunction
)_wrap_new_MimeTypesManager
, METH_NOARGS
, NULL
},
36154 { (char *)"MimeTypesManager_Initialize", (PyCFunction
) _wrap_MimeTypesManager_Initialize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36155 { (char *)"MimeTypesManager_ClearData", (PyCFunction
)_wrap_MimeTypesManager_ClearData
, METH_O
, NULL
},
36156 { (char *)"MimeTypesManager_GetFileTypeFromExtension", (PyCFunction
) _wrap_MimeTypesManager_GetFileTypeFromExtension
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36157 { (char *)"MimeTypesManager_GetFileTypeFromMimeType", (PyCFunction
) _wrap_MimeTypesManager_GetFileTypeFromMimeType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36158 { (char *)"MimeTypesManager_ReadMailcap", (PyCFunction
) _wrap_MimeTypesManager_ReadMailcap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36159 { (char *)"MimeTypesManager_ReadMimeTypes", (PyCFunction
) _wrap_MimeTypesManager_ReadMimeTypes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36160 { (char *)"MimeTypesManager_EnumAllFileTypes", (PyCFunction
)_wrap_MimeTypesManager_EnumAllFileTypes
, METH_O
, NULL
},
36161 { (char *)"MimeTypesManager_AddFallback", (PyCFunction
) _wrap_MimeTypesManager_AddFallback
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36162 { (char *)"MimeTypesManager_Associate", (PyCFunction
) _wrap_MimeTypesManager_Associate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36163 { (char *)"MimeTypesManager_Unassociate", (PyCFunction
) _wrap_MimeTypesManager_Unassociate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36164 { (char *)"delete_MimeTypesManager", (PyCFunction
)_wrap_delete_MimeTypesManager
, METH_O
, NULL
},
36165 { (char *)"MimeTypesManager_swigregister", MimeTypesManager_swigregister
, METH_VARARGS
, NULL
},
36166 { (char *)"MimeTypesManager_swiginit", MimeTypesManager_swiginit
, METH_VARARGS
, NULL
},
36167 { (char *)"new_ArtProvider", (PyCFunction
)_wrap_new_ArtProvider
, METH_NOARGS
, NULL
},
36168 { (char *)"delete_ArtProvider", (PyCFunction
)_wrap_delete_ArtProvider
, METH_O
, NULL
},
36169 { (char *)"ArtProvider__setCallbackInfo", (PyCFunction
) _wrap_ArtProvider__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36170 { (char *)"ArtProvider_PushProvider", (PyCFunction
) _wrap_ArtProvider_PushProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36171 { (char *)"ArtProvider_PopProvider", (PyCFunction
)_wrap_ArtProvider_PopProvider
, METH_NOARGS
, NULL
},
36172 { (char *)"ArtProvider_RemoveProvider", (PyCFunction
) _wrap_ArtProvider_RemoveProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36173 { (char *)"ArtProvider_GetBitmap", (PyCFunction
) _wrap_ArtProvider_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36174 { (char *)"ArtProvider_GetIcon", (PyCFunction
) _wrap_ArtProvider_GetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36175 { (char *)"ArtProvider_GetSizeHint", (PyCFunction
) _wrap_ArtProvider_GetSizeHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36176 { (char *)"ArtProvider_Destroy", (PyCFunction
)_wrap_ArtProvider_Destroy
, METH_O
, NULL
},
36177 { (char *)"ArtProvider_swigregister", ArtProvider_swigregister
, METH_VARARGS
, NULL
},
36178 { (char *)"ArtProvider_swiginit", ArtProvider_swiginit
, METH_VARARGS
, NULL
},
36179 { (char *)"delete_ConfigBase", (PyCFunction
)_wrap_delete_ConfigBase
, METH_O
, NULL
},
36180 { (char *)"ConfigBase_Set", (PyCFunction
) _wrap_ConfigBase_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36181 { (char *)"ConfigBase_Get", (PyCFunction
) _wrap_ConfigBase_Get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36182 { (char *)"ConfigBase_Create", (PyCFunction
)_wrap_ConfigBase_Create
, METH_NOARGS
, NULL
},
36183 { (char *)"ConfigBase_DontCreateOnDemand", (PyCFunction
)_wrap_ConfigBase_DontCreateOnDemand
, METH_NOARGS
, NULL
},
36184 { (char *)"ConfigBase_SetPath", (PyCFunction
) _wrap_ConfigBase_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36185 { (char *)"ConfigBase_GetPath", (PyCFunction
)_wrap_ConfigBase_GetPath
, METH_O
, NULL
},
36186 { (char *)"ConfigBase_GetFirstGroup", (PyCFunction
)_wrap_ConfigBase_GetFirstGroup
, METH_O
, NULL
},
36187 { (char *)"ConfigBase_GetNextGroup", (PyCFunction
) _wrap_ConfigBase_GetNextGroup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36188 { (char *)"ConfigBase_GetFirstEntry", (PyCFunction
)_wrap_ConfigBase_GetFirstEntry
, METH_O
, NULL
},
36189 { (char *)"ConfigBase_GetNextEntry", (PyCFunction
) _wrap_ConfigBase_GetNextEntry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36190 { (char *)"ConfigBase_GetNumberOfEntries", (PyCFunction
) _wrap_ConfigBase_GetNumberOfEntries
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36191 { (char *)"ConfigBase_GetNumberOfGroups", (PyCFunction
) _wrap_ConfigBase_GetNumberOfGroups
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36192 { (char *)"ConfigBase_HasGroup", (PyCFunction
) _wrap_ConfigBase_HasGroup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36193 { (char *)"ConfigBase_HasEntry", (PyCFunction
) _wrap_ConfigBase_HasEntry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36194 { (char *)"ConfigBase_Exists", (PyCFunction
) _wrap_ConfigBase_Exists
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36195 { (char *)"ConfigBase_GetEntryType", (PyCFunction
) _wrap_ConfigBase_GetEntryType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36196 { (char *)"ConfigBase_Read", (PyCFunction
) _wrap_ConfigBase_Read
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36197 { (char *)"ConfigBase_ReadInt", (PyCFunction
) _wrap_ConfigBase_ReadInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36198 { (char *)"ConfigBase_ReadFloat", (PyCFunction
) _wrap_ConfigBase_ReadFloat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36199 { (char *)"ConfigBase_ReadBool", (PyCFunction
) _wrap_ConfigBase_ReadBool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36200 { (char *)"ConfigBase_Write", (PyCFunction
) _wrap_ConfigBase_Write
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36201 { (char *)"ConfigBase_WriteInt", (PyCFunction
) _wrap_ConfigBase_WriteInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36202 { (char *)"ConfigBase_WriteFloat", (PyCFunction
) _wrap_ConfigBase_WriteFloat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36203 { (char *)"ConfigBase_WriteBool", (PyCFunction
) _wrap_ConfigBase_WriteBool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36204 { (char *)"ConfigBase_Flush", (PyCFunction
) _wrap_ConfigBase_Flush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36205 { (char *)"ConfigBase_RenameEntry", (PyCFunction
) _wrap_ConfigBase_RenameEntry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36206 { (char *)"ConfigBase_RenameGroup", (PyCFunction
) _wrap_ConfigBase_RenameGroup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36207 { (char *)"ConfigBase_DeleteEntry", (PyCFunction
) _wrap_ConfigBase_DeleteEntry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36208 { (char *)"ConfigBase_DeleteGroup", (PyCFunction
) _wrap_ConfigBase_DeleteGroup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36209 { (char *)"ConfigBase_DeleteAll", (PyCFunction
)_wrap_ConfigBase_DeleteAll
, METH_O
, NULL
},
36210 { (char *)"ConfigBase_SetExpandEnvVars", (PyCFunction
) _wrap_ConfigBase_SetExpandEnvVars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36211 { (char *)"ConfigBase_IsExpandingEnvVars", (PyCFunction
)_wrap_ConfigBase_IsExpandingEnvVars
, METH_O
, NULL
},
36212 { (char *)"ConfigBase_SetRecordDefaults", (PyCFunction
) _wrap_ConfigBase_SetRecordDefaults
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36213 { (char *)"ConfigBase_IsRecordingDefaults", (PyCFunction
)_wrap_ConfigBase_IsRecordingDefaults
, METH_O
, NULL
},
36214 { (char *)"ConfigBase_ExpandEnvVars", (PyCFunction
) _wrap_ConfigBase_ExpandEnvVars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36215 { (char *)"ConfigBase_GetAppName", (PyCFunction
)_wrap_ConfigBase_GetAppName
, METH_O
, NULL
},
36216 { (char *)"ConfigBase_GetVendorName", (PyCFunction
)_wrap_ConfigBase_GetVendorName
, METH_O
, NULL
},
36217 { (char *)"ConfigBase_SetAppName", (PyCFunction
) _wrap_ConfigBase_SetAppName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36218 { (char *)"ConfigBase_SetVendorName", (PyCFunction
) _wrap_ConfigBase_SetVendorName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36219 { (char *)"ConfigBase_SetStyle", (PyCFunction
) _wrap_ConfigBase_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36220 { (char *)"ConfigBase_GetStyle", (PyCFunction
)_wrap_ConfigBase_GetStyle
, METH_O
, NULL
},
36221 { (char *)"ConfigBase_swigregister", ConfigBase_swigregister
, METH_VARARGS
, NULL
},
36222 { (char *)"new_Config", (PyCFunction
) _wrap_new_Config
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36223 { (char *)"delete_Config", (PyCFunction
)_wrap_delete_Config
, METH_O
, NULL
},
36224 { (char *)"Config_swigregister", Config_swigregister
, METH_VARARGS
, NULL
},
36225 { (char *)"Config_swiginit", Config_swiginit
, METH_VARARGS
, NULL
},
36226 { (char *)"new_FileConfig", (PyCFunction
) _wrap_new_FileConfig
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36227 { (char *)"delete_FileConfig", (PyCFunction
)_wrap_delete_FileConfig
, METH_O
, NULL
},
36228 { (char *)"FileConfig_swigregister", FileConfig_swigregister
, METH_VARARGS
, NULL
},
36229 { (char *)"FileConfig_swiginit", FileConfig_swiginit
, METH_VARARGS
, NULL
},
36230 { (char *)"new_ConfigPathChanger", (PyCFunction
) _wrap_new_ConfigPathChanger
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36231 { (char *)"delete_ConfigPathChanger", (PyCFunction
)_wrap_delete_ConfigPathChanger
, METH_O
, NULL
},
36232 { (char *)"ConfigPathChanger_Name", (PyCFunction
)_wrap_ConfigPathChanger_Name
, METH_O
, NULL
},
36233 { (char *)"ConfigPathChanger_swigregister", ConfigPathChanger_swigregister
, METH_VARARGS
, NULL
},
36234 { (char *)"ConfigPathChanger_swiginit", ConfigPathChanger_swiginit
, METH_VARARGS
, NULL
},
36235 { (char *)"ExpandEnvVars", (PyCFunction
) _wrap_ExpandEnvVars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36236 { (char *)"DateTime_SetCountry", (PyCFunction
) _wrap_DateTime_SetCountry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36237 { (char *)"DateTime_GetCountry", (PyCFunction
)_wrap_DateTime_GetCountry
, METH_NOARGS
, NULL
},
36238 { (char *)"DateTime_IsWestEuropeanCountry", (PyCFunction
) _wrap_DateTime_IsWestEuropeanCountry
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36239 { (char *)"DateTime_GetCurrentYear", (PyCFunction
) _wrap_DateTime_GetCurrentYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36240 { (char *)"DateTime_ConvertYearToBC", (PyCFunction
) _wrap_DateTime_ConvertYearToBC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36241 { (char *)"DateTime_GetCurrentMonth", (PyCFunction
) _wrap_DateTime_GetCurrentMonth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36242 { (char *)"DateTime_IsLeapYear", (PyCFunction
) _wrap_DateTime_IsLeapYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36243 { (char *)"DateTime_GetCentury", (PyCFunction
) _wrap_DateTime_GetCentury
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36244 { (char *)"DateTime_GetNumberOfDaysinYear", (PyCFunction
) _wrap_DateTime_GetNumberOfDaysinYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36245 { (char *)"DateTime_GetNumberOfDaysInMonth", (PyCFunction
) _wrap_DateTime_GetNumberOfDaysInMonth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36246 { (char *)"DateTime_GetMonthName", (PyCFunction
) _wrap_DateTime_GetMonthName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36247 { (char *)"DateTime_GetWeekDayName", (PyCFunction
) _wrap_DateTime_GetWeekDayName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36248 { (char *)"DateTime_GetAmPmStrings", (PyCFunction
)_wrap_DateTime_GetAmPmStrings
, METH_NOARGS
, NULL
},
36249 { (char *)"DateTime_IsDSTApplicable", (PyCFunction
) _wrap_DateTime_IsDSTApplicable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36250 { (char *)"DateTime_GetBeginDST", (PyCFunction
) _wrap_DateTime_GetBeginDST
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36251 { (char *)"DateTime_GetEndDST", (PyCFunction
) _wrap_DateTime_GetEndDST
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36252 { (char *)"DateTime_Now", (PyCFunction
)_wrap_DateTime_Now
, METH_NOARGS
, NULL
},
36253 { (char *)"DateTime_UNow", (PyCFunction
)_wrap_DateTime_UNow
, METH_NOARGS
, NULL
},
36254 { (char *)"DateTime_Today", (PyCFunction
)_wrap_DateTime_Today
, METH_NOARGS
, NULL
},
36255 { (char *)"new_DateTime", (PyCFunction
)_wrap_new_DateTime
, METH_NOARGS
, NULL
},
36256 { (char *)"new_DateTimeFromTimeT", (PyCFunction
) _wrap_new_DateTimeFromTimeT
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36257 { (char *)"new_DateTimeFromJDN", (PyCFunction
) _wrap_new_DateTimeFromJDN
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36258 { (char *)"new_DateTimeFromHMS", (PyCFunction
) _wrap_new_DateTimeFromHMS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36259 { (char *)"new_DateTimeFromDMY", (PyCFunction
) _wrap_new_DateTimeFromDMY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36260 { (char *)"new_DateTimeFromDateTime", (PyCFunction
) _wrap_new_DateTimeFromDateTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36261 { (char *)"delete_DateTime", (PyCFunction
)_wrap_delete_DateTime
, METH_O
, NULL
},
36262 { (char *)"DateTime_SetToCurrent", (PyCFunction
)_wrap_DateTime_SetToCurrent
, METH_O
, NULL
},
36263 { (char *)"DateTime_SetTimeT", (PyCFunction
) _wrap_DateTime_SetTimeT
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36264 { (char *)"DateTime_SetJDN", (PyCFunction
) _wrap_DateTime_SetJDN
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36265 { (char *)"DateTime_SetHMS", (PyCFunction
) _wrap_DateTime_SetHMS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36266 { (char *)"DateTime_Set", (PyCFunction
) _wrap_DateTime_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36267 { (char *)"DateTime_ResetTime", (PyCFunction
)_wrap_DateTime_ResetTime
, METH_O
, NULL
},
36268 { (char *)"DateTime_SetYear", (PyCFunction
) _wrap_DateTime_SetYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36269 { (char *)"DateTime_SetMonth", (PyCFunction
) _wrap_DateTime_SetMonth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36270 { (char *)"DateTime_SetDay", (PyCFunction
) _wrap_DateTime_SetDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36271 { (char *)"DateTime_SetHour", (PyCFunction
) _wrap_DateTime_SetHour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36272 { (char *)"DateTime_SetMinute", (PyCFunction
) _wrap_DateTime_SetMinute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36273 { (char *)"DateTime_SetSecond", (PyCFunction
) _wrap_DateTime_SetSecond
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36274 { (char *)"DateTime_SetMillisecond", (PyCFunction
) _wrap_DateTime_SetMillisecond
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36275 { (char *)"DateTime_SetToWeekDayInSameWeek", (PyCFunction
) _wrap_DateTime_SetToWeekDayInSameWeek
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36276 { (char *)"DateTime_GetWeekDayInSameWeek", (PyCFunction
) _wrap_DateTime_GetWeekDayInSameWeek
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36277 { (char *)"DateTime_SetToNextWeekDay", (PyCFunction
) _wrap_DateTime_SetToNextWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36278 { (char *)"DateTime_GetNextWeekDay", (PyCFunction
) _wrap_DateTime_GetNextWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36279 { (char *)"DateTime_SetToPrevWeekDay", (PyCFunction
) _wrap_DateTime_SetToPrevWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36280 { (char *)"DateTime_GetPrevWeekDay", (PyCFunction
) _wrap_DateTime_GetPrevWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36281 { (char *)"DateTime_SetToWeekDay", (PyCFunction
) _wrap_DateTime_SetToWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36282 { (char *)"DateTime_SetToLastWeekDay", (PyCFunction
) _wrap_DateTime_SetToLastWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36283 { (char *)"DateTime_GetLastWeekDay", (PyCFunction
) _wrap_DateTime_GetLastWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36284 { (char *)"DateTime_SetToTheWeek", (PyCFunction
) _wrap_DateTime_SetToTheWeek
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36285 { (char *)"DateTime_GetWeek", (PyCFunction
) _wrap_DateTime_GetWeek
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36286 { (char *)"DateTime_SetToWeekOfYear", (PyCFunction
) _wrap_DateTime_SetToWeekOfYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36287 { (char *)"DateTime_SetToLastMonthDay", (PyCFunction
) _wrap_DateTime_SetToLastMonthDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36288 { (char *)"DateTime_GetLastMonthDay", (PyCFunction
) _wrap_DateTime_GetLastMonthDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36289 { (char *)"DateTime_SetToYearDay", (PyCFunction
) _wrap_DateTime_SetToYearDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36290 { (char *)"DateTime_GetYearDay", (PyCFunction
) _wrap_DateTime_GetYearDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36291 { (char *)"DateTime_GetJulianDayNumber", (PyCFunction
)_wrap_DateTime_GetJulianDayNumber
, METH_O
, NULL
},
36292 { (char *)"DateTime_GetJDN", (PyCFunction
)_wrap_DateTime_GetJDN
, METH_O
, NULL
},
36293 { (char *)"DateTime_GetModifiedJulianDayNumber", (PyCFunction
)_wrap_DateTime_GetModifiedJulianDayNumber
, METH_O
, NULL
},
36294 { (char *)"DateTime_GetMJD", (PyCFunction
)_wrap_DateTime_GetMJD
, METH_O
, NULL
},
36295 { (char *)"DateTime_GetRataDie", (PyCFunction
)_wrap_DateTime_GetRataDie
, METH_O
, NULL
},
36296 { (char *)"DateTime_ToTimezone", (PyCFunction
) _wrap_DateTime_ToTimezone
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36297 { (char *)"DateTime_MakeTimezone", (PyCFunction
) _wrap_DateTime_MakeTimezone
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36298 { (char *)"DateTime_FromTimezone", (PyCFunction
) _wrap_DateTime_FromTimezone
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36299 { (char *)"DateTime_MakeFromTimezone", (PyCFunction
) _wrap_DateTime_MakeFromTimezone
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36300 { (char *)"DateTime_ToUTC", (PyCFunction
) _wrap_DateTime_ToUTC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36301 { (char *)"DateTime_MakeUTC", (PyCFunction
) _wrap_DateTime_MakeUTC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36302 { (char *)"DateTime_ToGMT", (PyCFunction
) _wrap_DateTime_ToGMT
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36303 { (char *)"DateTime_MakeGMT", (PyCFunction
) _wrap_DateTime_MakeGMT
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36304 { (char *)"DateTime_FromUTC", (PyCFunction
) _wrap_DateTime_FromUTC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36305 { (char *)"DateTime_MakeFromUTC", (PyCFunction
) _wrap_DateTime_MakeFromUTC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36306 { (char *)"DateTime_IsDST", (PyCFunction
) _wrap_DateTime_IsDST
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36307 { (char *)"DateTime_IsValid", (PyCFunction
)_wrap_DateTime_IsValid
, METH_O
, NULL
},
36308 { (char *)"DateTime_GetTicks", (PyCFunction
)_wrap_DateTime_GetTicks
, METH_O
, NULL
},
36309 { (char *)"DateTime_GetYear", (PyCFunction
) _wrap_DateTime_GetYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36310 { (char *)"DateTime_GetMonth", (PyCFunction
) _wrap_DateTime_GetMonth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36311 { (char *)"DateTime_GetDay", (PyCFunction
) _wrap_DateTime_GetDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36312 { (char *)"DateTime_GetWeekDay", (PyCFunction
) _wrap_DateTime_GetWeekDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36313 { (char *)"DateTime_GetHour", (PyCFunction
) _wrap_DateTime_GetHour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36314 { (char *)"DateTime_GetMinute", (PyCFunction
) _wrap_DateTime_GetMinute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36315 { (char *)"DateTime_GetSecond", (PyCFunction
) _wrap_DateTime_GetSecond
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36316 { (char *)"DateTime_GetMillisecond", (PyCFunction
) _wrap_DateTime_GetMillisecond
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36317 { (char *)"DateTime_GetDayOfYear", (PyCFunction
) _wrap_DateTime_GetDayOfYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36318 { (char *)"DateTime_GetWeekOfYear", (PyCFunction
) _wrap_DateTime_GetWeekOfYear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36319 { (char *)"DateTime_GetWeekOfMonth", (PyCFunction
) _wrap_DateTime_GetWeekOfMonth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36320 { (char *)"DateTime_IsWorkDay", (PyCFunction
) _wrap_DateTime_IsWorkDay
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36321 { (char *)"DateTime_IsEqualTo", (PyCFunction
) _wrap_DateTime_IsEqualTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36322 { (char *)"DateTime_IsEarlierThan", (PyCFunction
) _wrap_DateTime_IsEarlierThan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36323 { (char *)"DateTime_IsLaterThan", (PyCFunction
) _wrap_DateTime_IsLaterThan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36324 { (char *)"DateTime_IsStrictlyBetween", (PyCFunction
) _wrap_DateTime_IsStrictlyBetween
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36325 { (char *)"DateTime_IsBetween", (PyCFunction
) _wrap_DateTime_IsBetween
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36326 { (char *)"DateTime_IsSameDate", (PyCFunction
) _wrap_DateTime_IsSameDate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36327 { (char *)"DateTime_IsSameTime", (PyCFunction
) _wrap_DateTime_IsSameTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36328 { (char *)"DateTime_IsEqualUpTo", (PyCFunction
) _wrap_DateTime_IsEqualUpTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36329 { (char *)"DateTime_AddTS", (PyCFunction
) _wrap_DateTime_AddTS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36330 { (char *)"DateTime_AddDS", (PyCFunction
) _wrap_DateTime_AddDS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36331 { (char *)"DateTime_SubtractTS", (PyCFunction
) _wrap_DateTime_SubtractTS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36332 { (char *)"DateTime_SubtractDS", (PyCFunction
) _wrap_DateTime_SubtractDS
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36333 { (char *)"DateTime_Subtract", (PyCFunction
) _wrap_DateTime_Subtract
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36334 { (char *)"DateTime___iadd__", _wrap_DateTime___iadd__
, METH_VARARGS
, NULL
},
36335 { (char *)"DateTime___isub__", _wrap_DateTime___isub__
, METH_VARARGS
, NULL
},
36336 { (char *)"DateTime___add__", _wrap_DateTime___add__
, METH_VARARGS
, NULL
},
36337 { (char *)"DateTime___sub__", _wrap_DateTime___sub__
, METH_VARARGS
, NULL
},
36338 { (char *)"DateTime___lt__", (PyCFunction
) _wrap_DateTime___lt__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36339 { (char *)"DateTime___le__", (PyCFunction
) _wrap_DateTime___le__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36340 { (char *)"DateTime___gt__", (PyCFunction
) _wrap_DateTime___gt__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36341 { (char *)"DateTime___ge__", (PyCFunction
) _wrap_DateTime___ge__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36342 { (char *)"DateTime___eq__", (PyCFunction
) _wrap_DateTime___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36343 { (char *)"DateTime___ne__", (PyCFunction
) _wrap_DateTime___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36344 { (char *)"DateTime_ParseRfc822Date", (PyCFunction
) _wrap_DateTime_ParseRfc822Date
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36345 { (char *)"DateTime_ParseFormat", (PyCFunction
) _wrap_DateTime_ParseFormat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36346 { (char *)"DateTime_ParseDateTime", (PyCFunction
) _wrap_DateTime_ParseDateTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36347 { (char *)"DateTime_ParseDate", (PyCFunction
) _wrap_DateTime_ParseDate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36348 { (char *)"DateTime_ParseTime", (PyCFunction
) _wrap_DateTime_ParseTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36349 { (char *)"DateTime_Format", (PyCFunction
) _wrap_DateTime_Format
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36350 { (char *)"DateTime_FormatDate", (PyCFunction
)_wrap_DateTime_FormatDate
, METH_O
, NULL
},
36351 { (char *)"DateTime_FormatTime", (PyCFunction
)_wrap_DateTime_FormatTime
, METH_O
, NULL
},
36352 { (char *)"DateTime_FormatISODate", (PyCFunction
)_wrap_DateTime_FormatISODate
, METH_O
, NULL
},
36353 { (char *)"DateTime_FormatISOTime", (PyCFunction
)_wrap_DateTime_FormatISOTime
, METH_O
, NULL
},
36354 { (char *)"DateTime_swigregister", DateTime_swigregister
, METH_VARARGS
, NULL
},
36355 { (char *)"DateTime_swiginit", DateTime_swiginit
, METH_VARARGS
, NULL
},
36356 { (char *)"TimeSpan_Seconds", (PyCFunction
) _wrap_TimeSpan_Seconds
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36357 { (char *)"TimeSpan_Second", (PyCFunction
)_wrap_TimeSpan_Second
, METH_NOARGS
, NULL
},
36358 { (char *)"TimeSpan_Minutes", (PyCFunction
) _wrap_TimeSpan_Minutes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36359 { (char *)"TimeSpan_Minute", (PyCFunction
)_wrap_TimeSpan_Minute
, METH_NOARGS
, NULL
},
36360 { (char *)"TimeSpan_Hours", (PyCFunction
) _wrap_TimeSpan_Hours
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36361 { (char *)"TimeSpan_Hour", (PyCFunction
)_wrap_TimeSpan_Hour
, METH_NOARGS
, NULL
},
36362 { (char *)"TimeSpan_Days", (PyCFunction
) _wrap_TimeSpan_Days
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36363 { (char *)"TimeSpan_Day", (PyCFunction
)_wrap_TimeSpan_Day
, METH_NOARGS
, NULL
},
36364 { (char *)"TimeSpan_Weeks", (PyCFunction
) _wrap_TimeSpan_Weeks
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36365 { (char *)"TimeSpan_Week", (PyCFunction
)_wrap_TimeSpan_Week
, METH_NOARGS
, NULL
},
36366 { (char *)"new_TimeSpan", (PyCFunction
) _wrap_new_TimeSpan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36367 { (char *)"delete_TimeSpan", (PyCFunction
)_wrap_delete_TimeSpan
, METH_O
, NULL
},
36368 { (char *)"TimeSpan_Add", (PyCFunction
) _wrap_TimeSpan_Add
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36369 { (char *)"TimeSpan_Subtract", (PyCFunction
) _wrap_TimeSpan_Subtract
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36370 { (char *)"TimeSpan_Multiply", (PyCFunction
) _wrap_TimeSpan_Multiply
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36371 { (char *)"TimeSpan_Neg", (PyCFunction
)_wrap_TimeSpan_Neg
, METH_O
, NULL
},
36372 { (char *)"TimeSpan_Abs", (PyCFunction
)_wrap_TimeSpan_Abs
, METH_O
, NULL
},
36373 { (char *)"TimeSpan___iadd__", (PyCFunction
) _wrap_TimeSpan___iadd__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36374 { (char *)"TimeSpan___isub__", (PyCFunction
) _wrap_TimeSpan___isub__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36375 { (char *)"TimeSpan___imul__", (PyCFunction
) _wrap_TimeSpan___imul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36376 { (char *)"TimeSpan___neg__", (PyCFunction
)_wrap_TimeSpan___neg__
, METH_O
, NULL
},
36377 { (char *)"TimeSpan___add__", (PyCFunction
) _wrap_TimeSpan___add__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36378 { (char *)"TimeSpan___sub__", (PyCFunction
) _wrap_TimeSpan___sub__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36379 { (char *)"TimeSpan___mul__", (PyCFunction
) _wrap_TimeSpan___mul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36380 { (char *)"TimeSpan___rmul__", (PyCFunction
) _wrap_TimeSpan___rmul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36381 { (char *)"TimeSpan___lt__", (PyCFunction
) _wrap_TimeSpan___lt__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36382 { (char *)"TimeSpan___le__", (PyCFunction
) _wrap_TimeSpan___le__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36383 { (char *)"TimeSpan___gt__", (PyCFunction
) _wrap_TimeSpan___gt__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36384 { (char *)"TimeSpan___ge__", (PyCFunction
) _wrap_TimeSpan___ge__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36385 { (char *)"TimeSpan___eq__", (PyCFunction
) _wrap_TimeSpan___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36386 { (char *)"TimeSpan___ne__", (PyCFunction
) _wrap_TimeSpan___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36387 { (char *)"TimeSpan_IsNull", (PyCFunction
)_wrap_TimeSpan_IsNull
, METH_O
, NULL
},
36388 { (char *)"TimeSpan_IsPositive", (PyCFunction
)_wrap_TimeSpan_IsPositive
, METH_O
, NULL
},
36389 { (char *)"TimeSpan_IsNegative", (PyCFunction
)_wrap_TimeSpan_IsNegative
, METH_O
, NULL
},
36390 { (char *)"TimeSpan_IsEqualTo", (PyCFunction
) _wrap_TimeSpan_IsEqualTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36391 { (char *)"TimeSpan_IsLongerThan", (PyCFunction
) _wrap_TimeSpan_IsLongerThan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36392 { (char *)"TimeSpan_IsShorterThan", (PyCFunction
) _wrap_TimeSpan_IsShorterThan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36393 { (char *)"TimeSpan_GetWeeks", (PyCFunction
)_wrap_TimeSpan_GetWeeks
, METH_O
, NULL
},
36394 { (char *)"TimeSpan_GetDays", (PyCFunction
)_wrap_TimeSpan_GetDays
, METH_O
, NULL
},
36395 { (char *)"TimeSpan_GetHours", (PyCFunction
)_wrap_TimeSpan_GetHours
, METH_O
, NULL
},
36396 { (char *)"TimeSpan_GetMinutes", (PyCFunction
)_wrap_TimeSpan_GetMinutes
, METH_O
, NULL
},
36397 { (char *)"TimeSpan_GetSeconds", (PyCFunction
)_wrap_TimeSpan_GetSeconds
, METH_O
, NULL
},
36398 { (char *)"TimeSpan_GetMilliseconds", (PyCFunction
)_wrap_TimeSpan_GetMilliseconds
, METH_O
, NULL
},
36399 { (char *)"TimeSpan_Format", (PyCFunction
) _wrap_TimeSpan_Format
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36400 { (char *)"TimeSpan_swigregister", TimeSpan_swigregister
, METH_VARARGS
, NULL
},
36401 { (char *)"TimeSpan_swiginit", TimeSpan_swiginit
, METH_VARARGS
, NULL
},
36402 { (char *)"new_DateSpan", (PyCFunction
) _wrap_new_DateSpan
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36403 { (char *)"delete_DateSpan", (PyCFunction
)_wrap_delete_DateSpan
, METH_O
, NULL
},
36404 { (char *)"DateSpan_Days", (PyCFunction
) _wrap_DateSpan_Days
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36405 { (char *)"DateSpan_Day", (PyCFunction
)_wrap_DateSpan_Day
, METH_NOARGS
, NULL
},
36406 { (char *)"DateSpan_Weeks", (PyCFunction
) _wrap_DateSpan_Weeks
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36407 { (char *)"DateSpan_Week", (PyCFunction
)_wrap_DateSpan_Week
, METH_NOARGS
, NULL
},
36408 { (char *)"DateSpan_Months", (PyCFunction
) _wrap_DateSpan_Months
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36409 { (char *)"DateSpan_Month", (PyCFunction
)_wrap_DateSpan_Month
, METH_NOARGS
, NULL
},
36410 { (char *)"DateSpan_Years", (PyCFunction
) _wrap_DateSpan_Years
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36411 { (char *)"DateSpan_Year", (PyCFunction
)_wrap_DateSpan_Year
, METH_NOARGS
, NULL
},
36412 { (char *)"DateSpan_SetYears", (PyCFunction
) _wrap_DateSpan_SetYears
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36413 { (char *)"DateSpan_SetMonths", (PyCFunction
) _wrap_DateSpan_SetMonths
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36414 { (char *)"DateSpan_SetWeeks", (PyCFunction
) _wrap_DateSpan_SetWeeks
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36415 { (char *)"DateSpan_SetDays", (PyCFunction
) _wrap_DateSpan_SetDays
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36416 { (char *)"DateSpan_GetYears", (PyCFunction
)_wrap_DateSpan_GetYears
, METH_O
, NULL
},
36417 { (char *)"DateSpan_GetMonths", (PyCFunction
)_wrap_DateSpan_GetMonths
, METH_O
, NULL
},
36418 { (char *)"DateSpan_GetWeeks", (PyCFunction
)_wrap_DateSpan_GetWeeks
, METH_O
, NULL
},
36419 { (char *)"DateSpan_GetDays", (PyCFunction
)_wrap_DateSpan_GetDays
, METH_O
, NULL
},
36420 { (char *)"DateSpan_GetTotalDays", (PyCFunction
)_wrap_DateSpan_GetTotalDays
, METH_O
, NULL
},
36421 { (char *)"DateSpan_Add", (PyCFunction
) _wrap_DateSpan_Add
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36422 { (char *)"DateSpan_Subtract", (PyCFunction
) _wrap_DateSpan_Subtract
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36423 { (char *)"DateSpan_Neg", (PyCFunction
)_wrap_DateSpan_Neg
, METH_O
, NULL
},
36424 { (char *)"DateSpan_Multiply", (PyCFunction
) _wrap_DateSpan_Multiply
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36425 { (char *)"DateSpan___iadd__", (PyCFunction
) _wrap_DateSpan___iadd__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36426 { (char *)"DateSpan___isub__", (PyCFunction
) _wrap_DateSpan___isub__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36427 { (char *)"DateSpan___neg__", (PyCFunction
)_wrap_DateSpan___neg__
, METH_O
, NULL
},
36428 { (char *)"DateSpan___imul__", (PyCFunction
) _wrap_DateSpan___imul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36429 { (char *)"DateSpan___add__", (PyCFunction
) _wrap_DateSpan___add__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36430 { (char *)"DateSpan___sub__", (PyCFunction
) _wrap_DateSpan___sub__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36431 { (char *)"DateSpan___mul__", (PyCFunction
) _wrap_DateSpan___mul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36432 { (char *)"DateSpan___rmul__", (PyCFunction
) _wrap_DateSpan___rmul__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36433 { (char *)"DateSpan___eq__", (PyCFunction
) _wrap_DateSpan___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36434 { (char *)"DateSpan___ne__", (PyCFunction
) _wrap_DateSpan___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36435 { (char *)"DateSpan_swigregister", DateSpan_swigregister
, METH_VARARGS
, NULL
},
36436 { (char *)"DateSpan_swiginit", DateSpan_swiginit
, METH_VARARGS
, NULL
},
36437 { (char *)"GetLocalTime", (PyCFunction
)_wrap_GetLocalTime
, METH_NOARGS
, NULL
},
36438 { (char *)"GetUTCTime", (PyCFunction
)_wrap_GetUTCTime
, METH_NOARGS
, NULL
},
36439 { (char *)"GetCurrentTime", (PyCFunction
)_wrap_GetCurrentTime
, METH_NOARGS
, NULL
},
36440 { (char *)"GetLocalTimeMillis", (PyCFunction
)_wrap_GetLocalTimeMillis
, METH_NOARGS
, NULL
},
36441 { (char *)"new_DataFormat", (PyCFunction
) _wrap_new_DataFormat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36442 { (char *)"new_CustomDataFormat", (PyCFunction
) _wrap_new_CustomDataFormat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36443 { (char *)"delete_DataFormat", (PyCFunction
)_wrap_delete_DataFormat
, METH_O
, NULL
},
36444 { (char *)"DataFormat___eq__", _wrap_DataFormat___eq__
, METH_VARARGS
, NULL
},
36445 { (char *)"DataFormat___ne__", _wrap_DataFormat___ne__
, METH_VARARGS
, NULL
},
36446 { (char *)"DataFormat_SetType", (PyCFunction
) _wrap_DataFormat_SetType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36447 { (char *)"DataFormat_GetType", (PyCFunction
)_wrap_DataFormat_GetType
, METH_O
, NULL
},
36448 { (char *)"DataFormat_GetId", (PyCFunction
)_wrap_DataFormat_GetId
, METH_O
, NULL
},
36449 { (char *)"DataFormat_SetId", (PyCFunction
) _wrap_DataFormat_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36450 { (char *)"DataFormat_swigregister", DataFormat_swigregister
, METH_VARARGS
, NULL
},
36451 { (char *)"DataFormat_swiginit", DataFormat_swiginit
, METH_VARARGS
, NULL
},
36452 { (char *)"delete_DataObject", (PyCFunction
)_wrap_delete_DataObject
, METH_O
, NULL
},
36453 { (char *)"DataObject_GetPreferredFormat", (PyCFunction
) _wrap_DataObject_GetPreferredFormat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36454 { (char *)"DataObject_GetFormatCount", (PyCFunction
) _wrap_DataObject_GetFormatCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36455 { (char *)"DataObject_IsSupported", (PyCFunction
) _wrap_DataObject_IsSupported
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36456 { (char *)"DataObject_GetDataSize", (PyCFunction
) _wrap_DataObject_GetDataSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36457 { (char *)"DataObject_GetAllFormats", (PyCFunction
) _wrap_DataObject_GetAllFormats
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36458 { (char *)"DataObject_GetDataHere", (PyCFunction
) _wrap_DataObject_GetDataHere
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36459 { (char *)"DataObject_SetData", (PyCFunction
) _wrap_DataObject_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36460 { (char *)"DataObject_swigregister", DataObject_swigregister
, METH_VARARGS
, NULL
},
36461 { (char *)"new_DataObjectSimple", (PyCFunction
) _wrap_new_DataObjectSimple
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36462 { (char *)"DataObjectSimple_GetFormat", (PyCFunction
)_wrap_DataObjectSimple_GetFormat
, METH_O
, NULL
},
36463 { (char *)"DataObjectSimple_SetFormat", (PyCFunction
) _wrap_DataObjectSimple_SetFormat
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36464 { (char *)"DataObjectSimple_GetDataSize", (PyCFunction
)_wrap_DataObjectSimple_GetDataSize
, METH_O
, NULL
},
36465 { (char *)"DataObjectSimple_GetDataHere", (PyCFunction
)_wrap_DataObjectSimple_GetDataHere
, METH_O
, NULL
},
36466 { (char *)"DataObjectSimple_SetData", (PyCFunction
) _wrap_DataObjectSimple_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36467 { (char *)"DataObjectSimple_swigregister", DataObjectSimple_swigregister
, METH_VARARGS
, NULL
},
36468 { (char *)"DataObjectSimple_swiginit", DataObjectSimple_swiginit
, METH_VARARGS
, NULL
},
36469 { (char *)"new_PyDataObjectSimple", (PyCFunction
) _wrap_new_PyDataObjectSimple
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36470 { (char *)"PyDataObjectSimple__setCallbackInfo", (PyCFunction
) _wrap_PyDataObjectSimple__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36471 { (char *)"PyDataObjectSimple_swigregister", PyDataObjectSimple_swigregister
, METH_VARARGS
, NULL
},
36472 { (char *)"PyDataObjectSimple_swiginit", PyDataObjectSimple_swiginit
, METH_VARARGS
, NULL
},
36473 { (char *)"new_DataObjectComposite", (PyCFunction
)_wrap_new_DataObjectComposite
, METH_NOARGS
, NULL
},
36474 { (char *)"DataObjectComposite_Add", (PyCFunction
) _wrap_DataObjectComposite_Add
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36475 { (char *)"DataObjectComposite_swigregister", DataObjectComposite_swigregister
, METH_VARARGS
, NULL
},
36476 { (char *)"DataObjectComposite_swiginit", DataObjectComposite_swiginit
, METH_VARARGS
, NULL
},
36477 { (char *)"new_TextDataObject", (PyCFunction
) _wrap_new_TextDataObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36478 { (char *)"TextDataObject_GetTextLength", (PyCFunction
)_wrap_TextDataObject_GetTextLength
, METH_O
, NULL
},
36479 { (char *)"TextDataObject_GetText", (PyCFunction
)_wrap_TextDataObject_GetText
, METH_O
, NULL
},
36480 { (char *)"TextDataObject_SetText", (PyCFunction
) _wrap_TextDataObject_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36481 { (char *)"TextDataObject_swigregister", TextDataObject_swigregister
, METH_VARARGS
, NULL
},
36482 { (char *)"TextDataObject_swiginit", TextDataObject_swiginit
, METH_VARARGS
, NULL
},
36483 { (char *)"new_PyTextDataObject", (PyCFunction
) _wrap_new_PyTextDataObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36484 { (char *)"PyTextDataObject__setCallbackInfo", (PyCFunction
) _wrap_PyTextDataObject__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36485 { (char *)"PyTextDataObject_swigregister", PyTextDataObject_swigregister
, METH_VARARGS
, NULL
},
36486 { (char *)"PyTextDataObject_swiginit", PyTextDataObject_swiginit
, METH_VARARGS
, NULL
},
36487 { (char *)"new_BitmapDataObject", (PyCFunction
) _wrap_new_BitmapDataObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36488 { (char *)"BitmapDataObject_GetBitmap", (PyCFunction
)_wrap_BitmapDataObject_GetBitmap
, METH_O
, NULL
},
36489 { (char *)"BitmapDataObject_SetBitmap", (PyCFunction
) _wrap_BitmapDataObject_SetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36490 { (char *)"BitmapDataObject_swigregister", BitmapDataObject_swigregister
, METH_VARARGS
, NULL
},
36491 { (char *)"BitmapDataObject_swiginit", BitmapDataObject_swiginit
, METH_VARARGS
, NULL
},
36492 { (char *)"new_PyBitmapDataObject", (PyCFunction
) _wrap_new_PyBitmapDataObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36493 { (char *)"PyBitmapDataObject__setCallbackInfo", (PyCFunction
) _wrap_PyBitmapDataObject__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36494 { (char *)"PyBitmapDataObject_swigregister", PyBitmapDataObject_swigregister
, METH_VARARGS
, NULL
},
36495 { (char *)"PyBitmapDataObject_swiginit", PyBitmapDataObject_swiginit
, METH_VARARGS
, NULL
},
36496 { (char *)"new_FileDataObject", (PyCFunction
)_wrap_new_FileDataObject
, METH_NOARGS
, NULL
},
36497 { (char *)"FileDataObject_GetFilenames", (PyCFunction
)_wrap_FileDataObject_GetFilenames
, METH_O
, NULL
},
36498 { (char *)"FileDataObject_AddFile", (PyCFunction
) _wrap_FileDataObject_AddFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36499 { (char *)"FileDataObject_swigregister", FileDataObject_swigregister
, METH_VARARGS
, NULL
},
36500 { (char *)"FileDataObject_swiginit", FileDataObject_swiginit
, METH_VARARGS
, NULL
},
36501 { (char *)"new_CustomDataObject", _wrap_new_CustomDataObject
, METH_VARARGS
, NULL
},
36502 { (char *)"CustomDataObject_SetData", (PyCFunction
) _wrap_CustomDataObject_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36503 { (char *)"CustomDataObject_GetSize", (PyCFunction
)_wrap_CustomDataObject_GetSize
, METH_O
, NULL
},
36504 { (char *)"CustomDataObject_GetData", (PyCFunction
)_wrap_CustomDataObject_GetData
, METH_O
, NULL
},
36505 { (char *)"CustomDataObject_swigregister", CustomDataObject_swigregister
, METH_VARARGS
, NULL
},
36506 { (char *)"CustomDataObject_swiginit", CustomDataObject_swiginit
, METH_VARARGS
, NULL
},
36507 { (char *)"new_URLDataObject", (PyCFunction
)_wrap_new_URLDataObject
, METH_NOARGS
, NULL
},
36508 { (char *)"URLDataObject_GetURL", (PyCFunction
)_wrap_URLDataObject_GetURL
, METH_O
, NULL
},
36509 { (char *)"URLDataObject_SetURL", (PyCFunction
) _wrap_URLDataObject_SetURL
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36510 { (char *)"URLDataObject_swigregister", URLDataObject_swigregister
, METH_VARARGS
, NULL
},
36511 { (char *)"URLDataObject_swiginit", URLDataObject_swiginit
, METH_VARARGS
, NULL
},
36512 { (char *)"new_MetafileDataObject", (PyCFunction
)_wrap_new_MetafileDataObject
, METH_NOARGS
, NULL
},
36513 { (char *)"MetafileDataObject_swigregister", MetafileDataObject_swigregister
, METH_VARARGS
, NULL
},
36514 { (char *)"MetafileDataObject_swiginit", MetafileDataObject_swiginit
, METH_VARARGS
, NULL
},
36515 { (char *)"IsDragResultOk", (PyCFunction
) _wrap_IsDragResultOk
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36516 { (char *)"new_DropSource", (PyCFunction
) _wrap_new_DropSource
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36517 { (char *)"DropSource__setCallbackInfo", (PyCFunction
) _wrap_DropSource__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36518 { (char *)"delete_DropSource", (PyCFunction
)_wrap_delete_DropSource
, METH_O
, NULL
},
36519 { (char *)"DropSource_SetData", (PyCFunction
) _wrap_DropSource_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36520 { (char *)"DropSource_GetDataObject", (PyCFunction
)_wrap_DropSource_GetDataObject
, METH_O
, NULL
},
36521 { (char *)"DropSource_SetCursor", (PyCFunction
) _wrap_DropSource_SetCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36522 { (char *)"DropSource_DoDragDrop", (PyCFunction
) _wrap_DropSource_DoDragDrop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36523 { (char *)"DropSource_GiveFeedback", (PyCFunction
) _wrap_DropSource_GiveFeedback
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36524 { (char *)"DropSource_swigregister", DropSource_swigregister
, METH_VARARGS
, NULL
},
36525 { (char *)"DropSource_swiginit", DropSource_swiginit
, METH_VARARGS
, NULL
},
36526 { (char *)"new_DropTarget", (PyCFunction
) _wrap_new_DropTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36527 { (char *)"DropTarget__setCallbackInfo", (PyCFunction
) _wrap_DropTarget__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36528 { (char *)"delete_DropTarget", (PyCFunction
)_wrap_delete_DropTarget
, METH_O
, NULL
},
36529 { (char *)"DropTarget_GetDataObject", (PyCFunction
)_wrap_DropTarget_GetDataObject
, METH_O
, NULL
},
36530 { (char *)"DropTarget_SetDataObject", (PyCFunction
) _wrap_DropTarget_SetDataObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36531 { (char *)"DropTarget_OnEnter", (PyCFunction
) _wrap_DropTarget_OnEnter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36532 { (char *)"DropTarget_OnDragOver", (PyCFunction
) _wrap_DropTarget_OnDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36533 { (char *)"DropTarget_OnLeave", (PyCFunction
)_wrap_DropTarget_OnLeave
, METH_O
, NULL
},
36534 { (char *)"DropTarget_OnDrop", (PyCFunction
) _wrap_DropTarget_OnDrop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36535 { (char *)"DropTarget_GetData", (PyCFunction
)_wrap_DropTarget_GetData
, METH_O
, NULL
},
36536 { (char *)"DropTarget_SetDefaultAction", (PyCFunction
) _wrap_DropTarget_SetDefaultAction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36537 { (char *)"DropTarget_GetDefaultAction", (PyCFunction
)_wrap_DropTarget_GetDefaultAction
, METH_O
, NULL
},
36538 { (char *)"DropTarget_swigregister", DropTarget_swigregister
, METH_VARARGS
, NULL
},
36539 { (char *)"DropTarget_swiginit", DropTarget_swiginit
, METH_VARARGS
, NULL
},
36540 { (char *)"new_TextDropTarget", (PyCFunction
)_wrap_new_TextDropTarget
, METH_NOARGS
, NULL
},
36541 { (char *)"TextDropTarget__setCallbackInfo", (PyCFunction
) _wrap_TextDropTarget__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36542 { (char *)"TextDropTarget_OnDropText", (PyCFunction
) _wrap_TextDropTarget_OnDropText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36543 { (char *)"TextDropTarget_OnEnter", (PyCFunction
) _wrap_TextDropTarget_OnEnter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36544 { (char *)"TextDropTarget_OnDragOver", (PyCFunction
) _wrap_TextDropTarget_OnDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36545 { (char *)"TextDropTarget_OnLeave", (PyCFunction
)_wrap_TextDropTarget_OnLeave
, METH_O
, NULL
},
36546 { (char *)"TextDropTarget_OnDrop", (PyCFunction
) _wrap_TextDropTarget_OnDrop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36547 { (char *)"TextDropTarget_OnData", (PyCFunction
) _wrap_TextDropTarget_OnData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36548 { (char *)"TextDropTarget_swigregister", TextDropTarget_swigregister
, METH_VARARGS
, NULL
},
36549 { (char *)"TextDropTarget_swiginit", TextDropTarget_swiginit
, METH_VARARGS
, NULL
},
36550 { (char *)"new_FileDropTarget", (PyCFunction
)_wrap_new_FileDropTarget
, METH_NOARGS
, NULL
},
36551 { (char *)"FileDropTarget__setCallbackInfo", (PyCFunction
) _wrap_FileDropTarget__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36552 { (char *)"FileDropTarget_OnDropFiles", (PyCFunction
) _wrap_FileDropTarget_OnDropFiles
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36553 { (char *)"FileDropTarget_OnEnter", (PyCFunction
) _wrap_FileDropTarget_OnEnter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36554 { (char *)"FileDropTarget_OnDragOver", (PyCFunction
) _wrap_FileDropTarget_OnDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36555 { (char *)"FileDropTarget_OnLeave", (PyCFunction
)_wrap_FileDropTarget_OnLeave
, METH_O
, NULL
},
36556 { (char *)"FileDropTarget_OnDrop", (PyCFunction
) _wrap_FileDropTarget_OnDrop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36557 { (char *)"FileDropTarget_OnData", (PyCFunction
) _wrap_FileDropTarget_OnData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36558 { (char *)"FileDropTarget_swigregister", FileDropTarget_swigregister
, METH_VARARGS
, NULL
},
36559 { (char *)"FileDropTarget_swiginit", FileDropTarget_swiginit
, METH_VARARGS
, NULL
},
36560 { (char *)"new_Clipboard", (PyCFunction
)_wrap_new_Clipboard
, METH_NOARGS
, NULL
},
36561 { (char *)"delete_Clipboard", (PyCFunction
)_wrap_delete_Clipboard
, METH_O
, NULL
},
36562 { (char *)"Clipboard_Open", (PyCFunction
)_wrap_Clipboard_Open
, METH_O
, NULL
},
36563 { (char *)"Clipboard_Close", (PyCFunction
)_wrap_Clipboard_Close
, METH_O
, NULL
},
36564 { (char *)"Clipboard_IsOpened", (PyCFunction
)_wrap_Clipboard_IsOpened
, METH_O
, NULL
},
36565 { (char *)"Clipboard_AddData", (PyCFunction
) _wrap_Clipboard_AddData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36566 { (char *)"Clipboard_SetData", (PyCFunction
) _wrap_Clipboard_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36567 { (char *)"Clipboard_IsSupported", (PyCFunction
) _wrap_Clipboard_IsSupported
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36568 { (char *)"Clipboard_GetData", (PyCFunction
) _wrap_Clipboard_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36569 { (char *)"Clipboard_Clear", (PyCFunction
)_wrap_Clipboard_Clear
, METH_O
, NULL
},
36570 { (char *)"Clipboard_Flush", (PyCFunction
)_wrap_Clipboard_Flush
, METH_O
, NULL
},
36571 { (char *)"Clipboard_UsePrimarySelection", (PyCFunction
) _wrap_Clipboard_UsePrimarySelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36572 { (char *)"Clipboard_Get", (PyCFunction
)_wrap_Clipboard_Get
, METH_NOARGS
, NULL
},
36573 { (char *)"Clipboard_swigregister", Clipboard_swigregister
, METH_VARARGS
, NULL
},
36574 { (char *)"Clipboard_swiginit", Clipboard_swiginit
, METH_VARARGS
, NULL
},
36575 { (char *)"new_ClipboardLocker", (PyCFunction
) _wrap_new_ClipboardLocker
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36576 { (char *)"delete_ClipboardLocker", (PyCFunction
)_wrap_delete_ClipboardLocker
, METH_O
, NULL
},
36577 { (char *)"ClipboardLocker___nonzero__", (PyCFunction
)_wrap_ClipboardLocker___nonzero__
, METH_O
, NULL
},
36578 { (char *)"ClipboardLocker_swigregister", ClipboardLocker_swigregister
, METH_VARARGS
, NULL
},
36579 { (char *)"ClipboardLocker_swiginit", ClipboardLocker_swiginit
, METH_VARARGS
, NULL
},
36580 { (char *)"new_VideoMode", (PyCFunction
) _wrap_new_VideoMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36581 { (char *)"delete_VideoMode", (PyCFunction
)_wrap_delete_VideoMode
, METH_O
, NULL
},
36582 { (char *)"VideoMode_Matches", (PyCFunction
) _wrap_VideoMode_Matches
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36583 { (char *)"VideoMode_GetWidth", (PyCFunction
)_wrap_VideoMode_GetWidth
, METH_O
, NULL
},
36584 { (char *)"VideoMode_GetHeight", (PyCFunction
)_wrap_VideoMode_GetHeight
, METH_O
, NULL
},
36585 { (char *)"VideoMode_GetDepth", (PyCFunction
)_wrap_VideoMode_GetDepth
, METH_O
, NULL
},
36586 { (char *)"VideoMode_IsOk", (PyCFunction
)_wrap_VideoMode_IsOk
, METH_O
, NULL
},
36587 { (char *)"VideoMode___eq__", (PyCFunction
) _wrap_VideoMode___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36588 { (char *)"VideoMode___ne__", (PyCFunction
) _wrap_VideoMode___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36589 { (char *)"VideoMode_w_set", _wrap_VideoMode_w_set
, METH_VARARGS
, NULL
},
36590 { (char *)"VideoMode_w_get", (PyCFunction
)_wrap_VideoMode_w_get
, METH_O
, NULL
},
36591 { (char *)"VideoMode_h_set", _wrap_VideoMode_h_set
, METH_VARARGS
, NULL
},
36592 { (char *)"VideoMode_h_get", (PyCFunction
)_wrap_VideoMode_h_get
, METH_O
, NULL
},
36593 { (char *)"VideoMode_bpp_set", _wrap_VideoMode_bpp_set
, METH_VARARGS
, NULL
},
36594 { (char *)"VideoMode_bpp_get", (PyCFunction
)_wrap_VideoMode_bpp_get
, METH_O
, NULL
},
36595 { (char *)"VideoMode_refresh_set", _wrap_VideoMode_refresh_set
, METH_VARARGS
, NULL
},
36596 { (char *)"VideoMode_refresh_get", (PyCFunction
)_wrap_VideoMode_refresh_get
, METH_O
, NULL
},
36597 { (char *)"VideoMode_swigregister", VideoMode_swigregister
, METH_VARARGS
, NULL
},
36598 { (char *)"VideoMode_swiginit", VideoMode_swiginit
, METH_VARARGS
, NULL
},
36599 { (char *)"new_Display", (PyCFunction
) _wrap_new_Display
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36600 { (char *)"delete_Display", (PyCFunction
)_wrap_delete_Display
, METH_O
, NULL
},
36601 { (char *)"Display_GetCount", (PyCFunction
)_wrap_Display_GetCount
, METH_NOARGS
, NULL
},
36602 { (char *)"Display_GetFromPoint", (PyCFunction
) _wrap_Display_GetFromPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36603 { (char *)"Display_GetFromWindow", (PyCFunction
) _wrap_Display_GetFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36604 { (char *)"Display_IsOk", (PyCFunction
)_wrap_Display_IsOk
, METH_O
, NULL
},
36605 { (char *)"Display_GetGeometry", (PyCFunction
)_wrap_Display_GetGeometry
, METH_O
, NULL
},
36606 { (char *)"Display_GetClientArea", (PyCFunction
)_wrap_Display_GetClientArea
, METH_O
, NULL
},
36607 { (char *)"Display_GetName", (PyCFunction
)_wrap_Display_GetName
, METH_O
, NULL
},
36608 { (char *)"Display_IsPrimary", (PyCFunction
)_wrap_Display_IsPrimary
, METH_O
, NULL
},
36609 { (char *)"Display_GetModes", (PyCFunction
) _wrap_Display_GetModes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36610 { (char *)"Display_GetCurrentMode", (PyCFunction
)_wrap_Display_GetCurrentMode
, METH_O
, NULL
},
36611 { (char *)"Display_ChangeMode", (PyCFunction
) _wrap_Display_ChangeMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36612 { (char *)"Display_ResetMode", (PyCFunction
)_wrap_Display_ResetMode
, METH_O
, NULL
},
36613 { (char *)"Display_swigregister", Display_swigregister
, METH_VARARGS
, NULL
},
36614 { (char *)"Display_swiginit", Display_swiginit
, METH_VARARGS
, NULL
},
36615 { (char *)"StandardPaths_Get", (PyCFunction
)_wrap_StandardPaths_Get
, METH_NOARGS
, NULL
},
36616 { (char *)"StandardPaths_GetConfigDir", (PyCFunction
)_wrap_StandardPaths_GetConfigDir
, METH_O
, NULL
},
36617 { (char *)"StandardPaths_GetUserConfigDir", (PyCFunction
)_wrap_StandardPaths_GetUserConfigDir
, METH_O
, NULL
},
36618 { (char *)"StandardPaths_GetDataDir", (PyCFunction
)_wrap_StandardPaths_GetDataDir
, METH_O
, NULL
},
36619 { (char *)"StandardPaths_GetLocalDataDir", (PyCFunction
)_wrap_StandardPaths_GetLocalDataDir
, METH_O
, NULL
},
36620 { (char *)"StandardPaths_GetUserDataDir", (PyCFunction
)_wrap_StandardPaths_GetUserDataDir
, METH_O
, NULL
},
36621 { (char *)"StandardPaths_GetUserLocalDataDir", (PyCFunction
)_wrap_StandardPaths_GetUserLocalDataDir
, METH_O
, NULL
},
36622 { (char *)"StandardPaths_GetPluginsDir", (PyCFunction
)_wrap_StandardPaths_GetPluginsDir
, METH_O
, NULL
},
36623 { (char *)"StandardPaths_SetInstallPrefix", (PyCFunction
) _wrap_StandardPaths_SetInstallPrefix
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36624 { (char *)"StandardPaths_GetInstallPrefix", (PyCFunction
)_wrap_StandardPaths_GetInstallPrefix
, METH_O
, NULL
},
36625 { (char *)"StandardPaths_swigregister", StandardPaths_swigregister
, METH_VARARGS
, NULL
},
36626 { NULL
, NULL
, 0, NULL
}
36630 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
36632 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
36633 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
36635 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
36636 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
36638 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
36639 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
36641 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
36642 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
36644 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
36645 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
36647 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
36648 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
36650 static void *_p_wxTimerEventTo_p_wxEvent(void *x
) {
36651 return (void *)((wxEvent
*) ((wxTimerEvent
*) x
));
36653 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
36654 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
36656 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
36657 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
36659 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
36660 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
36662 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
36663 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
36665 static void *_p_wxJoystickEventTo_p_wxEvent(void *x
) {
36666 return (void *)((wxEvent
*) ((wxJoystickEvent
*) x
));
36668 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
36669 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
36671 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
36672 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
36674 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
36675 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
36677 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
36678 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
36680 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
36681 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
36683 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
36684 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
36686 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
36687 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
36689 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
36690 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
36692 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
36693 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
36695 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
36696 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
36698 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
36699 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
36701 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
36702 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
36704 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
36705 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
36707 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
36708 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
36710 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
36711 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
36713 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
36714 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
36716 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
36717 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
36719 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
36720 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
36722 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
36723 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
36725 static void *_p_wxProcessEventTo_p_wxEvent(void *x
) {
36726 return (void *)((wxEvent
*) ((wxProcessEvent
*) x
));
36728 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
36729 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
36731 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
36732 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
36734 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
36735 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
36737 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
36738 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
36740 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
36741 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
36743 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
36744 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
36746 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
36747 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
36749 static void *_p_wxFileConfigTo_p_wxConfigBase(void *x
) {
36750 return (void *)((wxConfigBase
*) ((wxFileConfig
*) x
));
36752 static void *_p_wxConfigTo_p_wxConfigBase(void *x
) {
36753 return (void *)((wxConfigBase
*) ((wxConfig
*) x
));
36755 static void *_p_wxPyBitmapDataObjectTo_p_wxBitmapDataObject(void *x
) {
36756 return (void *)((wxBitmapDataObject
*) ((wxPyBitmapDataObject
*) x
));
36758 static void *_p_wxPyTextDataObjectTo_p_wxTextDataObject(void *x
) {
36759 return (void *)((wxTextDataObject
*) ((wxPyTextDataObject
*) x
));
36761 static void *_p_wxDataObjectSimpleTo_p_wxDataObject(void *x
) {
36762 return (void *)((wxDataObject
*) ((wxDataObjectSimple
*) x
));
36764 static void *_p_wxPyDataObjectSimpleTo_p_wxDataObject(void *x
) {
36765 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxPyDataObjectSimple
*) x
));
36767 static void *_p_wxDataObjectCompositeTo_p_wxDataObject(void *x
) {
36768 return (void *)((wxDataObject
*) ((wxDataObjectComposite
*) x
));
36770 static void *_p_wxTextDataObjectTo_p_wxDataObject(void *x
) {
36771 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxTextDataObject
*) x
));
36773 static void *_p_wxPyTextDataObjectTo_p_wxDataObject(void *x
) {
36774 return (void *)((wxDataObject
*) (wxDataObjectSimple
*)(wxTextDataObject
*) ((wxPyTextDataObject
*) x
));
36776 static void *_p_wxBitmapDataObjectTo_p_wxDataObject(void *x
) {
36777 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxBitmapDataObject
*) x
));
36779 static void *_p_wxPyBitmapDataObjectTo_p_wxDataObject(void *x
) {
36780 return (void *)((wxDataObject
*) (wxDataObjectSimple
*)(wxBitmapDataObject
*) ((wxPyBitmapDataObject
*) x
));
36782 static void *_p_wxFileDataObjectTo_p_wxDataObject(void *x
) {
36783 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxFileDataObject
*) x
));
36785 static void *_p_wxCustomDataObjectTo_p_wxDataObject(void *x
) {
36786 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxCustomDataObject
*) x
));
36788 static void *_p_wxURLDataObjectTo_p_wxDataObject(void *x
) {
36789 return (void *)((wxDataObject
*) ((wxURLDataObject
*) x
));
36791 static void *_p_wxMetafileDataObjectTo_p_wxDataObject(void *x
) {
36792 return (void *)((wxDataObject
*) (wxDataObjectSimple
*) ((wxMetafileDataObject
*) x
));
36794 static void *_p_wxPyDataObjectSimpleTo_p_wxDataObjectSimple(void *x
) {
36795 return (void *)((wxDataObjectSimple
*) ((wxPyDataObjectSimple
*) x
));
36797 static void *_p_wxTextDataObjectTo_p_wxDataObjectSimple(void *x
) {
36798 return (void *)((wxDataObjectSimple
*) ((wxTextDataObject
*) x
));
36800 static void *_p_wxPyTextDataObjectTo_p_wxDataObjectSimple(void *x
) {
36801 return (void *)((wxDataObjectSimple
*) (wxTextDataObject
*) ((wxPyTextDataObject
*) x
));
36803 static void *_p_wxBitmapDataObjectTo_p_wxDataObjectSimple(void *x
) {
36804 return (void *)((wxDataObjectSimple
*) ((wxBitmapDataObject
*) x
));
36806 static void *_p_wxPyBitmapDataObjectTo_p_wxDataObjectSimple(void *x
) {
36807 return (void *)((wxDataObjectSimple
*) (wxBitmapDataObject
*) ((wxPyBitmapDataObject
*) x
));
36809 static void *_p_wxFileDataObjectTo_p_wxDataObjectSimple(void *x
) {
36810 return (void *)((wxDataObjectSimple
*) ((wxFileDataObject
*) x
));
36812 static void *_p_wxCustomDataObjectTo_p_wxDataObjectSimple(void *x
) {
36813 return (void *)((wxDataObjectSimple
*) ((wxCustomDataObject
*) x
));
36815 static void *_p_wxMetafileDataObjectTo_p_wxDataObjectSimple(void *x
) {
36816 return (void *)((wxDataObjectSimple
*) ((wxMetafileDataObject
*) x
));
36818 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
36819 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
36821 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
36822 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
36824 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
36825 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
36827 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
36828 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
36830 static void *_p_wxPyTimerTo_p_wxEvtHandler(void *x
) {
36831 return (void *)((wxEvtHandler
*) ((wxPyTimer
*) x
));
36833 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
36834 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
36836 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
36837 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
36839 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
36840 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
36842 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
36843 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
36845 static void *_p_wxPyProcessTo_p_wxEvtHandler(void *x
) {
36846 return (void *)((wxEvtHandler
*) ((wxPyProcess
*) x
));
36848 static void *_p_wxPyTipProviderTo_p_wxTipProvider(void *x
) {
36849 return (void *)((wxTipProvider
*) ((wxPyTipProvider
*) x
));
36851 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
36852 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
36854 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
36855 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
36857 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
36858 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
36860 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
36861 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
36863 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
36864 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
36866 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
36867 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
36869 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
36870 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
36872 static void *_p_wxSizerTo_p_wxObject(void *x
) {
36873 return (void *)((wxObject
*) ((wxSizer
*) x
));
36875 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
36876 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
36878 static void *_p_wxFileHistoryTo_p_wxObject(void *x
) {
36879 return (void *)((wxObject
*) ((wxFileHistory
*) x
));
36881 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
36882 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
36884 static void *_p_wxEventTo_p_wxObject(void *x
) {
36885 return (void *)((wxObject
*) ((wxEvent
*) x
));
36887 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
36888 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
36890 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
36891 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
36893 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
36894 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
36896 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
36897 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
36899 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
36900 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
36902 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
36903 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
36905 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
36906 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
36908 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
36909 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
36911 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
36912 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
36914 static void *_p_wxControlTo_p_wxObject(void *x
) {
36915 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
36917 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
36918 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
36920 static void *_p_wxTimerEventTo_p_wxObject(void *x
) {
36921 return (void *)((wxObject
*) (wxEvent
*) ((wxTimerEvent
*) x
));
36923 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
36924 return (void *)((wxObject
*) ((wxFSFile
*) x
));
36926 static void *_p_wxClipboardTo_p_wxObject(void *x
) {
36927 return (void *)((wxObject
*) ((wxClipboard
*) x
));
36929 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
36930 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
36932 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
36933 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
36935 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
36936 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
36938 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
36939 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
36941 static void *_p_wxToolTipTo_p_wxObject(void *x
) {
36942 return (void *)((wxObject
*) ((wxToolTip
*) x
));
36944 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
36945 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
36947 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
36948 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
36950 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
36951 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
36953 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
36954 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
36956 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
36957 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
36959 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
36960 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
36962 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
36963 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
36965 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
36966 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
36968 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
36969 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
36971 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
36972 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
36974 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
36975 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
36977 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
36978 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
36980 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
36981 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
36983 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
36984 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
36986 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
36987 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
36989 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
36990 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
36992 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
36993 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
36995 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
36996 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
36998 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
36999 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
37001 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
37002 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
37004 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
37005 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
37007 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
37008 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
37010 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
37011 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
37013 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
37014 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
37016 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
37017 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
37019 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
37020 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
37022 static void *_p_wxImageTo_p_wxObject(void *x
) {
37023 return (void *)((wxObject
*) ((wxImage
*) x
));
37025 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
37026 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
37028 static void *_p_wxSystemOptionsTo_p_wxObject(void *x
) {
37029 return (void *)((wxObject
*) ((wxSystemOptions
*) x
));
37031 static void *_p_wxJoystickEventTo_p_wxObject(void *x
) {
37032 return (void *)((wxObject
*) (wxEvent
*) ((wxJoystickEvent
*) x
));
37034 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
37035 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
37037 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
37038 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
37040 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
37041 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
37043 static void *_p_wxWindowTo_p_wxObject(void *x
) {
37044 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
37046 static void *_p_wxMenuTo_p_wxObject(void *x
) {
37047 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
37049 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
37050 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
37052 static void *_p_wxPyProcessTo_p_wxObject(void *x
) {
37053 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyProcess
*) x
));
37055 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
37056 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
37058 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
37059 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
37061 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
37062 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
37064 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
37065 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
37067 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
37068 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
37070 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
37071 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
37073 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
37074 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
37076 static void *_p_wxBusyInfoTo_p_wxObject(void *x
) {
37077 return (void *)((wxObject
*) ((wxBusyInfo
*) x
));
37079 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
37080 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
37082 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
37083 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
37085 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
37086 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
37088 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
37089 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
37091 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
37092 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
37094 static void *_p_wxProcessEventTo_p_wxObject(void *x
) {
37095 return (void *)((wxObject
*) (wxEvent
*) ((wxProcessEvent
*) x
));
37097 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
37098 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
37100 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
37101 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
37103 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
37104 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
37106 static void *_p_wxPyTimerTo_p_wxObject(void *x
) {
37107 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTimer
*) x
));
37109 static void *_p_wxLogBufferTo_p_wxLog(void *x
) {
37110 return (void *)((wxLog
*) ((wxLogBuffer
*) x
));
37112 static void *_p_wxLogStderrTo_p_wxLog(void *x
) {
37113 return (void *)((wxLog
*) ((wxLogStderr
*) x
));
37115 static void *_p_wxLogTextCtrlTo_p_wxLog(void *x
) {
37116 return (void *)((wxLog
*) ((wxLogTextCtrl
*) x
));
37118 static void *_p_wxLogWindowTo_p_wxLog(void *x
) {
37119 return (void *)((wxLog
*) ((wxLogWindow
*) x
));
37121 static void *_p_wxLogChainTo_p_wxLog(void *x
) {
37122 return (void *)((wxLog
*) ((wxLogChain
*) x
));
37124 static void *_p_wxLogGuiTo_p_wxLog(void *x
) {
37125 return (void *)((wxLog
*) ((wxLogGui
*) x
));
37127 static void *_p_wxPyLogTo_p_wxLog(void *x
) {
37128 return (void *)((wxLog
*) ((wxPyLog
*) x
));
37130 static void *_p_wxControlTo_p_wxWindow(void *x
) {
37131 return (void *)((wxWindow
*) ((wxControl
*) x
));
37133 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
37134 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
37136 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
37137 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
37139 static void *_p_wxPyTextDropTargetTo_p_wxPyDropTarget(void *x
) {
37140 return (void *)((wxPyDropTarget
*) ((wxPyTextDropTarget
*) x
));
37142 static void *_p_wxPyFileDropTargetTo_p_wxPyDropTarget(void *x
) {
37143 return (void *)((wxPyDropTarget
*) ((wxPyFileDropTarget
*) x
));
37145 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
37146 static swig_type_info _swigt__p_form_ops_t
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, (void*)0, 0};
37147 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
37148 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
37149 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
37150 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxLogLevel *", 0, 0, (void*)0, 0};
37151 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, (void*)0, 0};
37152 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, (void*)0, 0};
37153 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
37154 static swig_type_info _swigt__p_wxBitmapDataObject
= {"_p_wxBitmapDataObject", "wxBitmapDataObject *", 0, 0, (void*)0, 0};
37155 static swig_type_info _swigt__p_wxBusyCursor
= {"_p_wxBusyCursor", "wxBusyCursor *", 0, 0, (void*)0, 0};
37156 static swig_type_info _swigt__p_wxBusyInfo
= {"_p_wxBusyInfo", "wxBusyInfo *", 0, 0, (void*)0, 0};
37157 static swig_type_info _swigt__p_wxCaret
= {"_p_wxCaret", "wxCaret *", 0, 0, (void*)0, 0};
37158 static swig_type_info _swigt__p_wxChar
= {"_p_wxChar", "wxChar *", 0, 0, (void*)0, 0};
37159 static swig_type_info _swigt__p_wxClipboard
= {"_p_wxClipboard", "wxClipboard *", 0, 0, (void*)0, 0};
37160 static swig_type_info _swigt__p_wxClipboardLocker
= {"_p_wxClipboardLocker", "wxClipboardLocker *", 0, 0, (void*)0, 0};
37161 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
37162 static swig_type_info _swigt__p_wxConfig
= {"_p_wxConfig", "wxConfig *", 0, 0, (void*)0, 0};
37163 static swig_type_info _swigt__p_wxConfigBase
= {"_p_wxConfigBase", "wxConfigBase *", 0, 0, (void*)0, 0};
37164 static swig_type_info _swigt__p_wxConfigPathChanger
= {"_p_wxConfigPathChanger", "wxConfigPathChanger *", 0, 0, (void*)0, 0};
37165 static swig_type_info _swigt__p_wxCursor
= {"_p_wxCursor", "wxCursor *", 0, 0, (void*)0, 0};
37166 static swig_type_info _swigt__p_wxCustomDataObject
= {"_p_wxCustomDataObject", "wxCustomDataObject *", 0, 0, (void*)0, 0};
37167 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
37168 static swig_type_info _swigt__p_wxDataFormat
= {"_p_wxDataFormat", "wxDataFormat *", 0, 0, (void*)0, 0};
37169 static swig_type_info _swigt__p_wxDataObject
= {"_p_wxDataObject", "wxDataObject *", 0, 0, (void*)0, 0};
37170 static swig_type_info _swigt__p_wxDataObjectComposite
= {"_p_wxDataObjectComposite", "wxDataObjectComposite *", 0, 0, (void*)0, 0};
37171 static swig_type_info _swigt__p_wxDataObjectSimple
= {"_p_wxDataObjectSimple", "wxDataObjectSimple *", 0, 0, (void*)0, 0};
37172 static swig_type_info _swigt__p_wxDateSpan
= {"_p_wxDateSpan", "wxDateSpan *", 0, 0, (void*)0, 0};
37173 static swig_type_info _swigt__p_wxDateTime
= {"_p_wxDateTime", "wxDateTime *", 0, 0, (void*)0, 0};
37174 static swig_type_info _swigt__p_wxDateTime__TimeZone
= {"_p_wxDateTime__TimeZone", "wxDateTime::TimeZone *", 0, 0, (void*)0, 0};
37175 static swig_type_info _swigt__p_wxDisplay
= {"_p_wxDisplay", "wxDisplay *", 0, 0, (void*)0, 0};
37176 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
37177 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
37178 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
37179 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
37180 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
37181 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
37182 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
37183 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
37184 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
37185 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
37186 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
37187 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
37188 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
37189 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
37190 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
37191 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
37192 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
37193 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
37194 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
37195 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
37196 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
37197 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
37198 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
37199 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
37200 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
37201 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
37202 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
37203 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
37204 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
37205 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
37206 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
37207 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
37208 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", 0, 0, 0, 0, 0};
37209 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
37210 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
37211 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
37212 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
37213 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
37214 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
37215 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
37216 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
37217 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
37218 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
37219 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
37220 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
37221 static swig_type_info _swigt__p_wxFileConfig
= {"_p_wxFileConfig", "wxFileConfig *", 0, 0, (void*)0, 0};
37222 static swig_type_info _swigt__p_wxFileDataObject
= {"_p_wxFileDataObject", "wxFileDataObject *", 0, 0, (void*)0, 0};
37223 static swig_type_info _swigt__p_wxFileHistory
= {"_p_wxFileHistory", "wxFileHistory *", 0, 0, (void*)0, 0};
37224 static swig_type_info _swigt__p_wxFileType
= {"_p_wxFileType", "wxFileType *", 0, 0, (void*)0, 0};
37225 static swig_type_info _swigt__p_wxFileTypeInfo
= {"_p_wxFileTypeInfo", "wxFileTypeInfo *", 0, 0, (void*)0, 0};
37226 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
37227 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
37228 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0};
37229 static swig_type_info _swigt__p_wxJoystick
= {"_p_wxJoystick", "wxJoystick *", 0, 0, (void*)0, 0};
37230 static swig_type_info _swigt__p_wxJoystickEvent
= {"_p_wxJoystickEvent", "wxJoystickEvent *", 0, 0, (void*)0, 0};
37231 static swig_type_info _swigt__p_wxKillError
= {"_p_wxKillError", "enum wxKillError *|wxKillError *", 0, 0, (void*)0, 0};
37232 static swig_type_info _swigt__p_wxLog
= {"_p_wxLog", "wxLog *", 0, 0, (void*)0, 0};
37233 static swig_type_info _swigt__p_wxLogBuffer
= {"_p_wxLogBuffer", "wxLogBuffer *", 0, 0, (void*)0, 0};
37234 static swig_type_info _swigt__p_wxLogChain
= {"_p_wxLogChain", "wxLogChain *", 0, 0, (void*)0, 0};
37235 static swig_type_info _swigt__p_wxLogGui
= {"_p_wxLogGui", "wxLogGui *", 0, 0, (void*)0, 0};
37236 static swig_type_info _swigt__p_wxLogNull
= {"_p_wxLogNull", "wxLogNull *", 0, 0, (void*)0, 0};
37237 static swig_type_info _swigt__p_wxLogStderr
= {"_p_wxLogStderr", "wxLogStderr *", 0, 0, (void*)0, 0};
37238 static swig_type_info _swigt__p_wxLogTextCtrl
= {"_p_wxLogTextCtrl", "wxLogTextCtrl *", 0, 0, (void*)0, 0};
37239 static swig_type_info _swigt__p_wxLogWindow
= {"_p_wxLogWindow", "wxLogWindow *", 0, 0, (void*)0, 0};
37240 static swig_type_info _swigt__p_wxMemorySize
= {"_p_wxMemorySize", "wxMemorySize *", 0, 0, (void*)0, 0};
37241 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", "wxMenu *", 0, 0, (void*)0, 0};
37242 static swig_type_info _swigt__p_wxMetafileDataObject
= {"_p_wxMetafileDataObject", "wxMetafileDataObject *", 0, 0, (void*)0, 0};
37243 static swig_type_info _swigt__p_wxMimeTypesManager
= {"_p_wxMimeTypesManager", "wxMimeTypesManager *", 0, 0, (void*)0, 0};
37244 static swig_type_info _swigt__p_wxMouseState
= {"_p_wxMouseState", "wxMouseState *", 0, 0, (void*)0, 0};
37245 static swig_type_info _swigt__p_wxMutexGuiLocker
= {"_p_wxMutexGuiLocker", "wxMutexGuiLocker *", 0, 0, (void*)0, 0};
37246 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
37247 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
37248 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
37249 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
37250 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
37251 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
37252 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
37253 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
37254 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
37255 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
37256 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
37257 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
37258 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
37259 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
37260 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
37261 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
37262 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
37263 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
37264 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
37265 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
37266 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
37267 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
37268 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
37269 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
37270 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
37271 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
37272 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
37273 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
37274 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
37275 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
37276 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
37277 static swig_type_info _swigt__p_wxOutputStream
= {"_p_wxOutputStream", "wxOutputStream *", 0, 0, (void*)0, 0};
37278 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
37279 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
37280 static swig_type_info _swigt__p_wxProcessEvent
= {"_p_wxProcessEvent", "wxProcessEvent *", 0, 0, (void*)0, 0};
37281 static swig_type_info _swigt__p_wxPyArtProvider
= {"_p_wxPyArtProvider", "wxPyArtProvider *", 0, 0, (void*)0, 0};
37282 static swig_type_info _swigt__p_wxPyBitmapDataObject
= {"_p_wxPyBitmapDataObject", "wxPyBitmapDataObject *", 0, 0, (void*)0, 0};
37283 static swig_type_info _swigt__p_wxPyDataObjectSimple
= {"_p_wxPyDataObjectSimple", "wxPyDataObjectSimple *", 0, 0, (void*)0, 0};
37284 static swig_type_info _swigt__p_wxPyDropSource
= {"_p_wxPyDropSource", "wxPyDropSource *", 0, 0, (void*)0, 0};
37285 static swig_type_info _swigt__p_wxPyDropTarget
= {"_p_wxPyDropTarget", "wxPyDropTarget *", 0, 0, (void*)0, 0};
37286 static swig_type_info _swigt__p_wxPyFileDropTarget
= {"_p_wxPyFileDropTarget", "wxPyFileDropTarget *", 0, 0, (void*)0, 0};
37287 static swig_type_info _swigt__p_wxPyLog
= {"_p_wxPyLog", "wxPyLog *", 0, 0, (void*)0, 0};
37288 static swig_type_info _swigt__p_wxPyProcess
= {"_p_wxPyProcess", "wxPyProcess *", 0, 0, (void*)0, 0};
37289 static swig_type_info _swigt__p_wxPyTextDataObject
= {"_p_wxPyTextDataObject", "wxPyTextDataObject *", 0, 0, (void*)0, 0};
37290 static swig_type_info _swigt__p_wxPyTextDropTarget
= {"_p_wxPyTextDropTarget", "wxPyTextDropTarget *", 0, 0, (void*)0, 0};
37291 static swig_type_info _swigt__p_wxPyTimer
= {"_p_wxPyTimer", "wxPyTimer *", 0, 0, (void*)0, 0};
37292 static swig_type_info _swigt__p_wxPyTipProvider
= {"_p_wxPyTipProvider", "wxPyTipProvider *", 0, 0, (void*)0, 0};
37293 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
37294 static swig_type_info _swigt__p_wxSingleInstanceChecker
= {"_p_wxSingleInstanceChecker", "wxSingleInstanceChecker *", 0, 0, (void*)0, 0};
37295 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
37296 static swig_type_info _swigt__p_wxSound
= {"_p_wxSound", "wxSound *", 0, 0, (void*)0, 0};
37297 static swig_type_info _swigt__p_wxStandardPaths
= {"_p_wxStandardPaths", "wxStandardPaths *", 0, 0, (void*)0, 0};
37298 static swig_type_info _swigt__p_wxStopWatch
= {"_p_wxStopWatch", "wxStopWatch *", 0, 0, (void*)0, 0};
37299 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
37300 static swig_type_info _swigt__p_wxSystemOptions
= {"_p_wxSystemOptions", "wxSystemOptions *", 0, 0, (void*)0, 0};
37301 static swig_type_info _swigt__p_wxSystemSettings
= {"_p_wxSystemSettings", "wxSystemSettings *", 0, 0, (void*)0, 0};
37302 static swig_type_info _swigt__p_wxTextCtrl
= {"_p_wxTextCtrl", "wxTextCtrl *", 0, 0, (void*)0, 0};
37303 static swig_type_info _swigt__p_wxTextDataObject
= {"_p_wxTextDataObject", "wxTextDataObject *", 0, 0, (void*)0, 0};
37304 static swig_type_info _swigt__p_wxTimeSpan
= {"_p_wxTimeSpan", "wxTimeSpan *", 0, 0, (void*)0, 0};
37305 static swig_type_info _swigt__p_wxTimer
= {"_p_wxTimer", "wxTimer *", 0, 0, (void*)0, 0};
37306 static swig_type_info _swigt__p_wxTimerEvent
= {"_p_wxTimerEvent", "wxTimerEvent *", 0, 0, (void*)0, 0};
37307 static swig_type_info _swigt__p_wxTimerRunner
= {"_p_wxTimerRunner", "wxTimerRunner *", 0, 0, (void*)0, 0};
37308 static swig_type_info _swigt__p_wxTipProvider
= {"_p_wxTipProvider", "wxTipProvider *", 0, 0, (void*)0, 0};
37309 static swig_type_info _swigt__p_wxToolTip
= {"_p_wxToolTip", "wxToolTip *", 0, 0, (void*)0, 0};
37310 static swig_type_info _swigt__p_wxURLDataObject
= {"_p_wxURLDataObject", "wxURLDataObject *", 0, 0, (void*)0, 0};
37311 static swig_type_info _swigt__p_wxVideoMode
= {"_p_wxVideoMode", "wxVideoMode *", 0, 0, (void*)0, 0};
37312 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
37313 static swig_type_info _swigt__p_wxWindowDisabler
= {"_p_wxWindowDisabler", "wxWindowDisabler *", 0, 0, (void*)0, 0};
37315 static swig_type_info
*swig_type_initial
[] = {
37317 &_swigt__p_form_ops_t
,
37319 &_swigt__p_unsigned_char
,
37320 &_swigt__p_unsigned_int
,
37321 &_swigt__p_unsigned_long
,
37323 &_swigt__p_wxANIHandler
,
37324 &_swigt__p_wxAcceleratorTable
,
37325 &_swigt__p_wxActivateEvent
,
37326 &_swigt__p_wxArrayString
,
37327 &_swigt__p_wxBMPHandler
,
37328 &_swigt__p_wxBitmap
,
37329 &_swigt__p_wxBitmapDataObject
,
37330 &_swigt__p_wxBoxSizer
,
37331 &_swigt__p_wxBusyCursor
,
37332 &_swigt__p_wxBusyInfo
,
37333 &_swigt__p_wxCURHandler
,
37334 &_swigt__p_wxCaret
,
37336 &_swigt__p_wxChildFocusEvent
,
37337 &_swigt__p_wxClipboard
,
37338 &_swigt__p_wxClipboardLocker
,
37339 &_swigt__p_wxCloseEvent
,
37340 &_swigt__p_wxColour
,
37341 &_swigt__p_wxCommandEvent
,
37342 &_swigt__p_wxConfig
,
37343 &_swigt__p_wxConfigBase
,
37344 &_swigt__p_wxConfigPathChanger
,
37345 &_swigt__p_wxContextMenuEvent
,
37346 &_swigt__p_wxControl
,
37347 &_swigt__p_wxControlWithItems
,
37348 &_swigt__p_wxCursor
,
37349 &_swigt__p_wxCustomDataObject
,
37351 &_swigt__p_wxDataFormat
,
37352 &_swigt__p_wxDataObject
,
37353 &_swigt__p_wxDataObjectComposite
,
37354 &_swigt__p_wxDataObjectSimple
,
37355 &_swigt__p_wxDateEvent
,
37356 &_swigt__p_wxDateSpan
,
37357 &_swigt__p_wxDateTime
,
37358 &_swigt__p_wxDateTime__TimeZone
,
37359 &_swigt__p_wxDisplay
,
37360 &_swigt__p_wxDisplayChangedEvent
,
37361 &_swigt__p_wxDropFilesEvent
,
37362 &_swigt__p_wxDuplexMode
,
37363 &_swigt__p_wxEraseEvent
,
37364 &_swigt__p_wxEvent
,
37365 &_swigt__p_wxEvtHandler
,
37366 &_swigt__p_wxFSFile
,
37367 &_swigt__p_wxFileConfig
,
37368 &_swigt__p_wxFileDataObject
,
37369 &_swigt__p_wxFileHistory
,
37370 &_swigt__p_wxFileSystem
,
37371 &_swigt__p_wxFileType
,
37372 &_swigt__p_wxFileTypeInfo
,
37373 &_swigt__p_wxFlexGridSizer
,
37374 &_swigt__p_wxFocusEvent
,
37376 &_swigt__p_wxFrame
,
37377 &_swigt__p_wxGBSizerItem
,
37378 &_swigt__p_wxGIFHandler
,
37379 &_swigt__p_wxGridBagSizer
,
37380 &_swigt__p_wxGridSizer
,
37381 &_swigt__p_wxICOHandler
,
37383 &_swigt__p_wxIconizeEvent
,
37384 &_swigt__p_wxIdleEvent
,
37385 &_swigt__p_wxImage
,
37386 &_swigt__p_wxImageHandler
,
37387 &_swigt__p_wxIndividualLayoutConstraint
,
37388 &_swigt__p_wxInitDialogEvent
,
37389 &_swigt__p_wxJPEGHandler
,
37390 &_swigt__p_wxJoystick
,
37391 &_swigt__p_wxJoystickEvent
,
37392 &_swigt__p_wxKeyEvent
,
37393 &_swigt__p_wxKillError
,
37394 &_swigt__p_wxLayoutConstraints
,
37396 &_swigt__p_wxLogBuffer
,
37397 &_swigt__p_wxLogChain
,
37398 &_swigt__p_wxLogGui
,
37399 &_swigt__p_wxLogNull
,
37400 &_swigt__p_wxLogStderr
,
37401 &_swigt__p_wxLogTextCtrl
,
37402 &_swigt__p_wxLogWindow
,
37403 &_swigt__p_wxMaximizeEvent
,
37404 &_swigt__p_wxMemorySize
,
37406 &_swigt__p_wxMenuBar
,
37407 &_swigt__p_wxMenuEvent
,
37408 &_swigt__p_wxMenuItem
,
37409 &_swigt__p_wxMetafileDataObject
,
37410 &_swigt__p_wxMimeTypesManager
,
37411 &_swigt__p_wxMouseCaptureChangedEvent
,
37412 &_swigt__p_wxMouseEvent
,
37413 &_swigt__p_wxMouseState
,
37414 &_swigt__p_wxMoveEvent
,
37415 &_swigt__p_wxMutexGuiLocker
,
37416 &_swigt__p_wxNavigationKeyEvent
,
37417 &_swigt__p_wxNcPaintEvent
,
37418 &_swigt__p_wxNotifyEvent
,
37419 &_swigt__p_wxObject
,
37420 &_swigt__p_wxOutputStream
,
37421 &_swigt__p_wxPCXHandler
,
37422 &_swigt__p_wxPNGHandler
,
37423 &_swigt__p_wxPNMHandler
,
37424 &_swigt__p_wxPaintEvent
,
37425 &_swigt__p_wxPaletteChangedEvent
,
37426 &_swigt__p_wxPaperSize
,
37427 &_swigt__p_wxPoint
,
37428 &_swigt__p_wxProcessEvent
,
37429 &_swigt__p_wxPyApp
,
37430 &_swigt__p_wxPyArtProvider
,
37431 &_swigt__p_wxPyBitmapDataObject
,
37432 &_swigt__p_wxPyCommandEvent
,
37433 &_swigt__p_wxPyDataObjectSimple
,
37434 &_swigt__p_wxPyDropSource
,
37435 &_swigt__p_wxPyDropTarget
,
37436 &_swigt__p_wxPyEvent
,
37437 &_swigt__p_wxPyFileDropTarget
,
37438 &_swigt__p_wxPyImageHandler
,
37439 &_swigt__p_wxPyLog
,
37440 &_swigt__p_wxPyProcess
,
37441 &_swigt__p_wxPySizer
,
37442 &_swigt__p_wxPyTextDataObject
,
37443 &_swigt__p_wxPyTextDropTarget
,
37444 &_swigt__p_wxPyTimer
,
37445 &_swigt__p_wxPyTipProvider
,
37446 &_swigt__p_wxPyValidator
,
37447 &_swigt__p_wxQueryNewPaletteEvent
,
37449 &_swigt__p_wxScrollEvent
,
37450 &_swigt__p_wxScrollWinEvent
,
37451 &_swigt__p_wxSetCursorEvent
,
37452 &_swigt__p_wxShowEvent
,
37453 &_swigt__p_wxSingleInstanceChecker
,
37455 &_swigt__p_wxSizeEvent
,
37456 &_swigt__p_wxSizer
,
37457 &_swigt__p_wxSizerItem
,
37458 &_swigt__p_wxSound
,
37459 &_swigt__p_wxStandardPaths
,
37460 &_swigt__p_wxStaticBoxSizer
,
37461 &_swigt__p_wxStdDialogButtonSizer
,
37462 &_swigt__p_wxStopWatch
,
37463 &_swigt__p_wxString
,
37464 &_swigt__p_wxSysColourChangedEvent
,
37465 &_swigt__p_wxSystemOptions
,
37466 &_swigt__p_wxSystemSettings
,
37467 &_swigt__p_wxTIFFHandler
,
37468 &_swigt__p_wxTextCtrl
,
37469 &_swigt__p_wxTextDataObject
,
37470 &_swigt__p_wxTimeSpan
,
37471 &_swigt__p_wxTimer
,
37472 &_swigt__p_wxTimerEvent
,
37473 &_swigt__p_wxTimerRunner
,
37474 &_swigt__p_wxTipProvider
,
37475 &_swigt__p_wxToolTip
,
37476 &_swigt__p_wxURLDataObject
,
37477 &_swigt__p_wxUpdateUIEvent
,
37478 &_swigt__p_wxValidator
,
37479 &_swigt__p_wxVideoMode
,
37480 &_swigt__p_wxWindow
,
37481 &_swigt__p_wxWindowCreateEvent
,
37482 &_swigt__p_wxWindowDestroyEvent
,
37483 &_swigt__p_wxWindowDisabler
,
37484 &_swigt__p_wxXPMHandler
,
37487 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
37488 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
37489 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
37490 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
37491 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
37492 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
37493 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
37494 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
37495 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
37496 static swig_cast_info _swigc__p_wxBitmapDataObject
[] = { {&_swigt__p_wxBitmapDataObject
, 0, 0, 0}, {&_swigt__p_wxPyBitmapDataObject
, _p_wxPyBitmapDataObjectTo_p_wxBitmapDataObject
, 0, 0},{0, 0, 0, 0}};
37497 static swig_cast_info _swigc__p_wxBusyCursor
[] = { {&_swigt__p_wxBusyCursor
, 0, 0, 0},{0, 0, 0, 0}};
37498 static swig_cast_info _swigc__p_wxBusyInfo
[] = { {&_swigt__p_wxBusyInfo
, 0, 0, 0},{0, 0, 0, 0}};
37499 static swig_cast_info _swigc__p_wxCaret
[] = { {&_swigt__p_wxCaret
, 0, 0, 0},{0, 0, 0, 0}};
37500 static swig_cast_info _swigc__p_wxChar
[] = { {&_swigt__p_wxChar
, 0, 0, 0},{0, 0, 0, 0}};
37501 static swig_cast_info _swigc__p_wxClipboard
[] = { {&_swigt__p_wxClipboard
, 0, 0, 0},{0, 0, 0, 0}};
37502 static swig_cast_info _swigc__p_wxClipboardLocker
[] = { {&_swigt__p_wxClipboardLocker
, 0, 0, 0},{0, 0, 0, 0}};
37503 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
37504 static swig_cast_info _swigc__p_wxConfig
[] = { {&_swigt__p_wxConfig
, 0, 0, 0},{0, 0, 0, 0}};
37505 static swig_cast_info _swigc__p_wxConfigBase
[] = { {&_swigt__p_wxFileConfig
, _p_wxFileConfigTo_p_wxConfigBase
, 0, 0}, {&_swigt__p_wxConfigBase
, 0, 0, 0}, {&_swigt__p_wxConfig
, _p_wxConfigTo_p_wxConfigBase
, 0, 0},{0, 0, 0, 0}};
37506 static swig_cast_info _swigc__p_wxConfigPathChanger
[] = { {&_swigt__p_wxConfigPathChanger
, 0, 0, 0},{0, 0, 0, 0}};
37507 static swig_cast_info _swigc__p_wxCursor
[] = { {&_swigt__p_wxCursor
, 0, 0, 0},{0, 0, 0, 0}};
37508 static swig_cast_info _swigc__p_wxCustomDataObject
[] = { {&_swigt__p_wxCustomDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37509 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
37510 static swig_cast_info _swigc__p_wxDataFormat
[] = { {&_swigt__p_wxDataFormat
, 0, 0, 0},{0, 0, 0, 0}};
37511 static swig_cast_info _swigc__p_wxDataObject
[] = { {&_swigt__p_wxDataObjectSimple
, _p_wxDataObjectSimpleTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxPyDataObjectSimple
, _p_wxPyDataObjectSimpleTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxDataObjectComposite
, _p_wxDataObjectCompositeTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxDataObject
, 0, 0, 0}, {&_swigt__p_wxTextDataObject
, _p_wxTextDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxPyTextDataObject
, _p_wxPyTextDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxBitmapDataObject
, _p_wxBitmapDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxPyBitmapDataObject
, _p_wxPyBitmapDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxFileDataObject
, _p_wxFileDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxCustomDataObject
, _p_wxCustomDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxMetafileDataObject
, _p_wxMetafileDataObjectTo_p_wxDataObject
, 0, 0}, {&_swigt__p_wxURLDataObject
, _p_wxURLDataObjectTo_p_wxDataObject
, 0, 0},{0, 0, 0, 0}};
37512 static swig_cast_info _swigc__p_wxDataObjectComposite
[] = { {&_swigt__p_wxDataObjectComposite
, 0, 0, 0},{0, 0, 0, 0}};
37513 static swig_cast_info _swigc__p_wxDataObjectSimple
[] = { {&_swigt__p_wxDataObjectSimple
, 0, 0, 0}, {&_swigt__p_wxPyDataObjectSimple
, _p_wxPyDataObjectSimpleTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxTextDataObject
, _p_wxTextDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxPyTextDataObject
, _p_wxPyTextDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxBitmapDataObject
, _p_wxBitmapDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxPyBitmapDataObject
, _p_wxPyBitmapDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxFileDataObject
, _p_wxFileDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxCustomDataObject
, _p_wxCustomDataObjectTo_p_wxDataObjectSimple
, 0, 0}, {&_swigt__p_wxMetafileDataObject
, _p_wxMetafileDataObjectTo_p_wxDataObjectSimple
, 0, 0},{0, 0, 0, 0}};
37514 static swig_cast_info _swigc__p_wxDateSpan
[] = { {&_swigt__p_wxDateSpan
, 0, 0, 0},{0, 0, 0, 0}};
37515 static swig_cast_info _swigc__p_wxDateTime
[] = { {&_swigt__p_wxDateTime
, 0, 0, 0},{0, 0, 0, 0}};
37516 static swig_cast_info _swigc__p_wxDateTime__TimeZone
[] = { {&_swigt__p_wxDateTime__TimeZone
, 0, 0, 0},{0, 0, 0, 0}};
37517 static swig_cast_info _swigc__p_wxDisplay
[] = { {&_swigt__p_wxDisplay
, 0, 0, 0},{0, 0, 0, 0}};
37518 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
37519 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
37520 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
37521 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37522 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37523 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37524 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
37525 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
37526 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
37527 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37528 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37529 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
37530 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37531 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
37532 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37533 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37534 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37535 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37536 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
37537 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37538 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
37539 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
37540 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
37541 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37542 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37543 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37544 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37545 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
37546 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
37547 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
37548 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
37549 static swig_cast_info _swigc__p_wxCommandEvent
[] = {{&_swigt__p_wxCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
37550 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
37551 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37552 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37553 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37554 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
37555 static swig_cast_info _swigc__p_wxEvent
[] = { {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTimerEvent
, _p_wxTimerEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxJoystickEvent
, _p_wxJoystickEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEvent
, 0, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}};
37556 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
37557 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
37558 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
37559 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
37560 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
37561 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
37562 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyTimer
, _p_wxPyTimerTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyProcess
, _p_wxPyProcessTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
37563 static swig_cast_info _swigc__p_wxFileConfig
[] = { {&_swigt__p_wxFileConfig
, 0, 0, 0},{0, 0, 0, 0}};
37564 static swig_cast_info _swigc__p_wxFileDataObject
[] = { {&_swigt__p_wxFileDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37565 static swig_cast_info _swigc__p_wxFileHistory
[] = { {&_swigt__p_wxFileHistory
, 0, 0, 0},{0, 0, 0, 0}};
37566 static swig_cast_info _swigc__p_wxFileType
[] = { {&_swigt__p_wxFileType
, 0, 0, 0},{0, 0, 0, 0}};
37567 static swig_cast_info _swigc__p_wxFileTypeInfo
[] = { {&_swigt__p_wxFileTypeInfo
, 0, 0, 0},{0, 0, 0, 0}};
37568 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
37569 static swig_cast_info _swigc__p_wxFrame
[] = { {&_swigt__p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
37570 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
37571 static swig_cast_info _swigc__p_wxJoystick
[] = { {&_swigt__p_wxJoystick
, 0, 0, 0},{0, 0, 0, 0}};
37572 static swig_cast_info _swigc__p_wxJoystickEvent
[] = { {&_swigt__p_wxJoystickEvent
, 0, 0, 0},{0, 0, 0, 0}};
37573 static swig_cast_info _swigc__p_wxKillError
[] = { {&_swigt__p_wxKillError
, 0, 0, 0},{0, 0, 0, 0}};
37574 static swig_cast_info _swigc__p_wxLog
[] = { {&_swigt__p_wxLogBuffer
, _p_wxLogBufferTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLogStderr
, _p_wxLogStderrTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLogTextCtrl
, _p_wxLogTextCtrlTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLogWindow
, _p_wxLogWindowTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLogChain
, _p_wxLogChainTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLogGui
, _p_wxLogGuiTo_p_wxLog
, 0, 0}, {&_swigt__p_wxPyLog
, _p_wxPyLogTo_p_wxLog
, 0, 0}, {&_swigt__p_wxLog
, 0, 0, 0},{0, 0, 0, 0}};
37575 static swig_cast_info _swigc__p_wxLogBuffer
[] = { {&_swigt__p_wxLogBuffer
, 0, 0, 0},{0, 0, 0, 0}};
37576 static swig_cast_info _swigc__p_wxLogChain
[] = { {&_swigt__p_wxLogChain
, 0, 0, 0},{0, 0, 0, 0}};
37577 static swig_cast_info _swigc__p_wxLogGui
[] = { {&_swigt__p_wxLogGui
, 0, 0, 0},{0, 0, 0, 0}};
37578 static swig_cast_info _swigc__p_wxLogNull
[] = { {&_swigt__p_wxLogNull
, 0, 0, 0},{0, 0, 0, 0}};
37579 static swig_cast_info _swigc__p_wxLogStderr
[] = { {&_swigt__p_wxLogStderr
, 0, 0, 0},{0, 0, 0, 0}};
37580 static swig_cast_info _swigc__p_wxLogTextCtrl
[] = { {&_swigt__p_wxLogTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37581 static swig_cast_info _swigc__p_wxLogWindow
[] = { {&_swigt__p_wxLogWindow
, 0, 0, 0},{0, 0, 0, 0}};
37582 static swig_cast_info _swigc__p_wxMemorySize
[] = { {&_swigt__p_wxMemorySize
, 0, 0, 0},{0, 0, 0, 0}};
37583 static swig_cast_info _swigc__p_wxMenu
[] = { {&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
37584 static swig_cast_info _swigc__p_wxMetafileDataObject
[] = { {&_swigt__p_wxMetafileDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37585 static swig_cast_info _swigc__p_wxMimeTypesManager
[] = { {&_swigt__p_wxMimeTypesManager
, 0, 0, 0},{0, 0, 0, 0}};
37586 static swig_cast_info _swigc__p_wxMouseState
[] = { {&_swigt__p_wxMouseState
, 0, 0, 0},{0, 0, 0, 0}};
37587 static swig_cast_info _swigc__p_wxMutexGuiLocker
[] = { {&_swigt__p_wxMutexGuiLocker
, 0, 0, 0},{0, 0, 0, 0}};
37588 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
37589 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
37590 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
37591 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
37592 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37593 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37594 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37595 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
37596 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
37597 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
37598 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
37599 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
37600 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
37601 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
37602 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
37603 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
37604 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
37605 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
37606 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
37607 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
37608 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
37609 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
37610 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
37611 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
37612 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
37613 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
37614 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
37615 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
37616 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
37617 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
37618 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileHistory
, _p_wxFileHistoryTo_p_wxObject
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTimerEvent
, _p_wxTimerEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClipboard
, _p_wxClipboardTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolTip
, _p_wxToolTipTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSystemOptions
, _p_wxSystemOptionsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJoystickEvent
, _p_wxJoystickEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyProcess
, _p_wxPyProcessTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBusyInfo
, _p_wxBusyInfoTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyTimer
, _p_wxPyTimerTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
37619 static swig_cast_info _swigc__p_wxOutputStream
[] = { {&_swigt__p_wxOutputStream
, 0, 0, 0},{0, 0, 0, 0}};
37620 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
37621 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
37622 static swig_cast_info _swigc__p_wxProcessEvent
[] = { {&_swigt__p_wxProcessEvent
, 0, 0, 0},{0, 0, 0, 0}};
37623 static swig_cast_info _swigc__p_wxPyArtProvider
[] = { {&_swigt__p_wxPyArtProvider
, 0, 0, 0},{0, 0, 0, 0}};
37624 static swig_cast_info _swigc__p_wxPyBitmapDataObject
[] = { {&_swigt__p_wxPyBitmapDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37625 static swig_cast_info _swigc__p_wxPyDataObjectSimple
[] = { {&_swigt__p_wxPyDataObjectSimple
, 0, 0, 0},{0, 0, 0, 0}};
37626 static swig_cast_info _swigc__p_wxPyDropSource
[] = { {&_swigt__p_wxPyDropSource
, 0, 0, 0},{0, 0, 0, 0}};
37627 static swig_cast_info _swigc__p_wxPyDropTarget
[] = { {&_swigt__p_wxPyDropTarget
, 0, 0, 0}, {&_swigt__p_wxPyTextDropTarget
, _p_wxPyTextDropTargetTo_p_wxPyDropTarget
, 0, 0}, {&_swigt__p_wxPyFileDropTarget
, _p_wxPyFileDropTargetTo_p_wxPyDropTarget
, 0, 0},{0, 0, 0, 0}};
37628 static swig_cast_info _swigc__p_wxPyFileDropTarget
[] = { {&_swigt__p_wxPyFileDropTarget
, 0, 0, 0},{0, 0, 0, 0}};
37629 static swig_cast_info _swigc__p_wxPyLog
[] = { {&_swigt__p_wxPyLog
, 0, 0, 0},{0, 0, 0, 0}};
37630 static swig_cast_info _swigc__p_wxPyProcess
[] = { {&_swigt__p_wxPyProcess
, 0, 0, 0},{0, 0, 0, 0}};
37631 static swig_cast_info _swigc__p_wxPyTextDataObject
[] = { {&_swigt__p_wxPyTextDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37632 static swig_cast_info _swigc__p_wxPyTextDropTarget
[] = { {&_swigt__p_wxPyTextDropTarget
, 0, 0, 0},{0, 0, 0, 0}};
37633 static swig_cast_info _swigc__p_wxPyTimer
[] = { {&_swigt__p_wxPyTimer
, 0, 0, 0},{0, 0, 0, 0}};
37634 static swig_cast_info _swigc__p_wxPyTipProvider
[] = { {&_swigt__p_wxPyTipProvider
, 0, 0, 0},{0, 0, 0, 0}};
37635 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
37636 static swig_cast_info _swigc__p_wxSingleInstanceChecker
[] = { {&_swigt__p_wxSingleInstanceChecker
, 0, 0, 0},{0, 0, 0, 0}};
37637 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
37638 static swig_cast_info _swigc__p_wxSound
[] = { {&_swigt__p_wxSound
, 0, 0, 0},{0, 0, 0, 0}};
37639 static swig_cast_info _swigc__p_wxStandardPaths
[] = { {&_swigt__p_wxStandardPaths
, 0, 0, 0},{0, 0, 0, 0}};
37640 static swig_cast_info _swigc__p_wxStopWatch
[] = { {&_swigt__p_wxStopWatch
, 0, 0, 0},{0, 0, 0, 0}};
37641 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
37642 static swig_cast_info _swigc__p_wxSystemOptions
[] = { {&_swigt__p_wxSystemOptions
, 0, 0, 0},{0, 0, 0, 0}};
37643 static swig_cast_info _swigc__p_wxSystemSettings
[] = { {&_swigt__p_wxSystemSettings
, 0, 0, 0},{0, 0, 0, 0}};
37644 static swig_cast_info _swigc__p_wxTextCtrl
[] = { {&_swigt__p_wxTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37645 static swig_cast_info _swigc__p_wxTextDataObject
[] = { {&_swigt__p_wxTextDataObject
, 0, 0, 0}, {&_swigt__p_wxPyTextDataObject
, _p_wxPyTextDataObjectTo_p_wxTextDataObject
, 0, 0},{0, 0, 0, 0}};
37646 static swig_cast_info _swigc__p_wxTimeSpan
[] = { {&_swigt__p_wxTimeSpan
, 0, 0, 0},{0, 0, 0, 0}};
37647 static swig_cast_info _swigc__p_wxTimer
[] = { {&_swigt__p_wxTimer
, 0, 0, 0},{0, 0, 0, 0}};
37648 static swig_cast_info _swigc__p_wxTimerEvent
[] = { {&_swigt__p_wxTimerEvent
, 0, 0, 0},{0, 0, 0, 0}};
37649 static swig_cast_info _swigc__p_wxTimerRunner
[] = { {&_swigt__p_wxTimerRunner
, 0, 0, 0},{0, 0, 0, 0}};
37650 static swig_cast_info _swigc__p_wxTipProvider
[] = { {&_swigt__p_wxTipProvider
, 0, 0, 0}, {&_swigt__p_wxPyTipProvider
, _p_wxPyTipProviderTo_p_wxTipProvider
, 0, 0},{0, 0, 0, 0}};
37651 static swig_cast_info _swigc__p_wxToolTip
[] = { {&_swigt__p_wxToolTip
, 0, 0, 0},{0, 0, 0, 0}};
37652 static swig_cast_info _swigc__p_wxURLDataObject
[] = { {&_swigt__p_wxURLDataObject
, 0, 0, 0},{0, 0, 0, 0}};
37653 static swig_cast_info _swigc__p_wxVideoMode
[] = { {&_swigt__p_wxVideoMode
, 0, 0, 0},{0, 0, 0, 0}};
37654 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
37655 static swig_cast_info _swigc__p_wxWindowDisabler
[] = { {&_swigt__p_wxWindowDisabler
, 0, 0, 0},{0, 0, 0, 0}};
37657 static swig_cast_info
*swig_cast_initial
[] = {
37659 _swigc__p_form_ops_t
,
37661 _swigc__p_unsigned_char
,
37662 _swigc__p_unsigned_int
,
37663 _swigc__p_unsigned_long
,
37665 _swigc__p_wxANIHandler
,
37666 _swigc__p_wxAcceleratorTable
,
37667 _swigc__p_wxActivateEvent
,
37668 _swigc__p_wxArrayString
,
37669 _swigc__p_wxBMPHandler
,
37670 _swigc__p_wxBitmap
,
37671 _swigc__p_wxBitmapDataObject
,
37672 _swigc__p_wxBoxSizer
,
37673 _swigc__p_wxBusyCursor
,
37674 _swigc__p_wxBusyInfo
,
37675 _swigc__p_wxCURHandler
,
37678 _swigc__p_wxChildFocusEvent
,
37679 _swigc__p_wxClipboard
,
37680 _swigc__p_wxClipboardLocker
,
37681 _swigc__p_wxCloseEvent
,
37682 _swigc__p_wxColour
,
37683 _swigc__p_wxCommandEvent
,
37684 _swigc__p_wxConfig
,
37685 _swigc__p_wxConfigBase
,
37686 _swigc__p_wxConfigPathChanger
,
37687 _swigc__p_wxContextMenuEvent
,
37688 _swigc__p_wxControl
,
37689 _swigc__p_wxControlWithItems
,
37690 _swigc__p_wxCursor
,
37691 _swigc__p_wxCustomDataObject
,
37693 _swigc__p_wxDataFormat
,
37694 _swigc__p_wxDataObject
,
37695 _swigc__p_wxDataObjectComposite
,
37696 _swigc__p_wxDataObjectSimple
,
37697 _swigc__p_wxDateEvent
,
37698 _swigc__p_wxDateSpan
,
37699 _swigc__p_wxDateTime
,
37700 _swigc__p_wxDateTime__TimeZone
,
37701 _swigc__p_wxDisplay
,
37702 _swigc__p_wxDisplayChangedEvent
,
37703 _swigc__p_wxDropFilesEvent
,
37704 _swigc__p_wxDuplexMode
,
37705 _swigc__p_wxEraseEvent
,
37707 _swigc__p_wxEvtHandler
,
37708 _swigc__p_wxFSFile
,
37709 _swigc__p_wxFileConfig
,
37710 _swigc__p_wxFileDataObject
,
37711 _swigc__p_wxFileHistory
,
37712 _swigc__p_wxFileSystem
,
37713 _swigc__p_wxFileType
,
37714 _swigc__p_wxFileTypeInfo
,
37715 _swigc__p_wxFlexGridSizer
,
37716 _swigc__p_wxFocusEvent
,
37719 _swigc__p_wxGBSizerItem
,
37720 _swigc__p_wxGIFHandler
,
37721 _swigc__p_wxGridBagSizer
,
37722 _swigc__p_wxGridSizer
,
37723 _swigc__p_wxICOHandler
,
37725 _swigc__p_wxIconizeEvent
,
37726 _swigc__p_wxIdleEvent
,
37728 _swigc__p_wxImageHandler
,
37729 _swigc__p_wxIndividualLayoutConstraint
,
37730 _swigc__p_wxInitDialogEvent
,
37731 _swigc__p_wxJPEGHandler
,
37732 _swigc__p_wxJoystick
,
37733 _swigc__p_wxJoystickEvent
,
37734 _swigc__p_wxKeyEvent
,
37735 _swigc__p_wxKillError
,
37736 _swigc__p_wxLayoutConstraints
,
37738 _swigc__p_wxLogBuffer
,
37739 _swigc__p_wxLogChain
,
37740 _swigc__p_wxLogGui
,
37741 _swigc__p_wxLogNull
,
37742 _swigc__p_wxLogStderr
,
37743 _swigc__p_wxLogTextCtrl
,
37744 _swigc__p_wxLogWindow
,
37745 _swigc__p_wxMaximizeEvent
,
37746 _swigc__p_wxMemorySize
,
37748 _swigc__p_wxMenuBar
,
37749 _swigc__p_wxMenuEvent
,
37750 _swigc__p_wxMenuItem
,
37751 _swigc__p_wxMetafileDataObject
,
37752 _swigc__p_wxMimeTypesManager
,
37753 _swigc__p_wxMouseCaptureChangedEvent
,
37754 _swigc__p_wxMouseEvent
,
37755 _swigc__p_wxMouseState
,
37756 _swigc__p_wxMoveEvent
,
37757 _swigc__p_wxMutexGuiLocker
,
37758 _swigc__p_wxNavigationKeyEvent
,
37759 _swigc__p_wxNcPaintEvent
,
37760 _swigc__p_wxNotifyEvent
,
37761 _swigc__p_wxObject
,
37762 _swigc__p_wxOutputStream
,
37763 _swigc__p_wxPCXHandler
,
37764 _swigc__p_wxPNGHandler
,
37765 _swigc__p_wxPNMHandler
,
37766 _swigc__p_wxPaintEvent
,
37767 _swigc__p_wxPaletteChangedEvent
,
37768 _swigc__p_wxPaperSize
,
37770 _swigc__p_wxProcessEvent
,
37772 _swigc__p_wxPyArtProvider
,
37773 _swigc__p_wxPyBitmapDataObject
,
37774 _swigc__p_wxPyCommandEvent
,
37775 _swigc__p_wxPyDataObjectSimple
,
37776 _swigc__p_wxPyDropSource
,
37777 _swigc__p_wxPyDropTarget
,
37778 _swigc__p_wxPyEvent
,
37779 _swigc__p_wxPyFileDropTarget
,
37780 _swigc__p_wxPyImageHandler
,
37782 _swigc__p_wxPyProcess
,
37783 _swigc__p_wxPySizer
,
37784 _swigc__p_wxPyTextDataObject
,
37785 _swigc__p_wxPyTextDropTarget
,
37786 _swigc__p_wxPyTimer
,
37787 _swigc__p_wxPyTipProvider
,
37788 _swigc__p_wxPyValidator
,
37789 _swigc__p_wxQueryNewPaletteEvent
,
37791 _swigc__p_wxScrollEvent
,
37792 _swigc__p_wxScrollWinEvent
,
37793 _swigc__p_wxSetCursorEvent
,
37794 _swigc__p_wxShowEvent
,
37795 _swigc__p_wxSingleInstanceChecker
,
37797 _swigc__p_wxSizeEvent
,
37799 _swigc__p_wxSizerItem
,
37801 _swigc__p_wxStandardPaths
,
37802 _swigc__p_wxStaticBoxSizer
,
37803 _swigc__p_wxStdDialogButtonSizer
,
37804 _swigc__p_wxStopWatch
,
37805 _swigc__p_wxString
,
37806 _swigc__p_wxSysColourChangedEvent
,
37807 _swigc__p_wxSystemOptions
,
37808 _swigc__p_wxSystemSettings
,
37809 _swigc__p_wxTIFFHandler
,
37810 _swigc__p_wxTextCtrl
,
37811 _swigc__p_wxTextDataObject
,
37812 _swigc__p_wxTimeSpan
,
37814 _swigc__p_wxTimerEvent
,
37815 _swigc__p_wxTimerRunner
,
37816 _swigc__p_wxTipProvider
,
37817 _swigc__p_wxToolTip
,
37818 _swigc__p_wxURLDataObject
,
37819 _swigc__p_wxUpdateUIEvent
,
37820 _swigc__p_wxValidator
,
37821 _swigc__p_wxVideoMode
,
37822 _swigc__p_wxWindow
,
37823 _swigc__p_wxWindowCreateEvent
,
37824 _swigc__p_wxWindowDestroyEvent
,
37825 _swigc__p_wxWindowDisabler
,
37826 _swigc__p_wxXPMHandler
,
37830 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
37832 static swig_const_info swig_const_table
[] = {
37833 {0, 0, 0, 0.0, 0, 0}};
37838 /* -----------------------------------------------------------------------------
37839 * Type initialization:
37840 * This problem is tough by the requirement that no dynamic
37841 * memory is used. Also, since swig_type_info structures store pointers to
37842 * swig_cast_info structures and swig_cast_info structures store pointers back
37843 * to swig_type_info structures, we need some lookup code at initialization.
37844 * The idea is that swig generates all the structures that are needed.
37845 * The runtime then collects these partially filled structures.
37846 * The SWIG_InitializeModule function takes these initial arrays out of
37847 * swig_module, and does all the lookup, filling in the swig_module.types
37848 * array with the correct data and linking the correct swig_cast_info
37849 * structures together.
37851 * The generated swig_type_info structures are assigned staticly to an initial
37852 * array. We just loop though that array, and handle each type individually.
37853 * First we lookup if this type has been already loaded, and if so, use the
37854 * loaded structure instead of the generated one. Then we have to fill in the
37855 * cast linked list. The cast data is initially stored in something like a
37856 * two-dimensional array. Each row corresponds to a type (there are the same
37857 * number of rows as there are in the swig_type_initial array). Each entry in
37858 * a column is one of the swig_cast_info structures for that type.
37859 * The cast_initial array is actually an array of arrays, because each row has
37860 * a variable number of columns. So to actually build the cast linked list,
37861 * we find the array of casts associated with the type, and loop through it
37862 * adding the casts to the list. The one last trick we need to do is making
37863 * sure the type pointer in the swig_cast_info struct is correct.
37865 * First off, we lookup the cast->type name to see if it is already loaded.
37866 * There are three cases to handle:
37867 * 1) If the cast->type has already been loaded AND the type we are adding
37868 * casting info to has not been loaded (it is in this module), THEN we
37869 * replace the cast->type pointer with the type pointer that has already
37871 * 2) If BOTH types (the one we are adding casting info to, and the
37872 * cast->type) are loaded, THEN the cast info has already been loaded by
37873 * the previous module so we just ignore it.
37874 * 3) Finally, if cast->type has not already been loaded, then we add that
37875 * swig_cast_info to the linked list (because the cast->type) pointer will
37877 * ----------------------------------------------------------------------------- */
37887 #define SWIGRUNTIME_DEBUG
37891 SWIG_InitializeModule(void *clientdata
) {
37893 swig_module_info
*module_head
;
37894 static int init_run
= 0;
37896 clientdata
= clientdata
;
37898 if (init_run
) return;
37901 /* Initialize the swig_module */
37902 swig_module
.type_initial
= swig_type_initial
;
37903 swig_module
.cast_initial
= swig_cast_initial
;
37905 /* Try and load any already created modules */
37906 module_head
= SWIG_GetModule(clientdata
);
37908 swig_module
.next
= module_head
->next
;
37909 module_head
->next
= &swig_module
;
37911 /* This is the first module loaded */
37912 swig_module
.next
= &swig_module
;
37913 SWIG_SetModule(clientdata
, &swig_module
);
37916 /* Now work on filling in swig_module.types */
37917 #ifdef SWIGRUNTIME_DEBUG
37918 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
37920 for (i
= 0; i
< swig_module
.size
; ++i
) {
37921 swig_type_info
*type
= 0;
37922 swig_type_info
*ret
;
37923 swig_cast_info
*cast
;
37925 #ifdef SWIGRUNTIME_DEBUG
37926 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
37929 /* if there is another module already loaded */
37930 if (swig_module
.next
!= &swig_module
) {
37931 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
37934 /* Overwrite clientdata field */
37935 #ifdef SWIGRUNTIME_DEBUG
37936 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
37938 if (swig_module
.type_initial
[i
]->clientdata
) {
37939 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
37940 #ifdef SWIGRUNTIME_DEBUG
37941 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
37945 type
= swig_module
.type_initial
[i
];
37948 /* Insert casting types */
37949 cast
= swig_module
.cast_initial
[i
];
37950 while (cast
->type
) {
37951 /* Don't need to add information already in the list */
37953 #ifdef SWIGRUNTIME_DEBUG
37954 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
37956 if (swig_module
.next
!= &swig_module
) {
37957 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
37958 #ifdef SWIGRUNTIME_DEBUG
37959 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
37963 if (type
== swig_module
.type_initial
[i
]) {
37964 #ifdef SWIGRUNTIME_DEBUG
37965 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
37970 /* Check for casting already in the list */
37971 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
37972 #ifdef SWIGRUNTIME_DEBUG
37973 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
37975 if (!ocast
) ret
= 0;
37980 #ifdef SWIGRUNTIME_DEBUG
37981 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
37984 type
->cast
->prev
= cast
;
37985 cast
->next
= type
->cast
;
37991 /* Set entry in modules->types array equal to the type */
37992 swig_module
.types
[i
] = type
;
37994 swig_module
.types
[i
] = 0;
37996 #ifdef SWIGRUNTIME_DEBUG
37997 printf("**** SWIG_InitializeModule: Cast List ******\n");
37998 for (i
= 0; i
< swig_module
.size
; ++i
) {
38000 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
38001 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
38002 while (cast
->type
) {
38003 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
38007 printf("---- Total casts: %d\n",j
);
38009 printf("**** SWIG_InitializeModule: Cast List ******\n");
38013 /* This function will propagate the clientdata field of type to
38014 * any new swig_type_info structures that have been added into the list
38015 * of equivalent types. It is like calling
38016 * SWIG_TypeClientData(type, clientdata) a second time.
38019 SWIG_PropagateClientData(void) {
38021 swig_cast_info
*equiv
;
38022 static int init_run
= 0;
38024 if (init_run
) return;
38027 for (i
= 0; i
< swig_module
.size
; i
++) {
38028 if (swig_module
.types
[i
]->clientdata
) {
38029 equiv
= swig_module
.types
[i
]->cast
;
38031 if (!equiv
->converter
) {
38032 if (equiv
->type
&& !equiv
->type
->clientdata
)
38033 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
38035 equiv
= equiv
->next
;
38055 /* Python-specific SWIG API */
38056 #define SWIG_newvarlink() SWIG_Python_newvarlink()
38057 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
38058 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
38060 /* -----------------------------------------------------------------------------
38061 * global variable support code.
38062 * ----------------------------------------------------------------------------- */
38064 typedef struct swig_globalvar
{
38065 char *name
; /* Name of global variable */
38066 PyObject
*(*get_attr
)(void); /* Return the current value */
38067 int (*set_attr
)(PyObject
*); /* Set the value */
38068 struct swig_globalvar
*next
;
38071 typedef struct swig_varlinkobject
{
38073 swig_globalvar
*vars
;
38074 } swig_varlinkobject
;
38076 SWIGINTERN PyObject
*
38077 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
38078 return PyString_FromString("<Swig global variables>");
38081 SWIGINTERN PyObject
*
38082 swig_varlink_str(swig_varlinkobject
*v
) {
38083 PyObject
*str
= PyString_FromString("(");
38084 swig_globalvar
*var
;
38085 for (var
= v
->vars
; var
; var
=var
->next
) {
38086 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
38087 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
38089 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
38094 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
38095 PyObject
*str
= swig_varlink_str(v
);
38096 fprintf(fp
,"Swig global variables ");
38097 fprintf(fp
,"%s\n", PyString_AsString(str
));
38103 swig_varlink_dealloc(swig_varlinkobject
*v
) {
38104 swig_globalvar
*var
= v
->vars
;
38106 swig_globalvar
*n
= var
->next
;
38113 SWIGINTERN PyObject
*
38114 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
38115 PyObject
*res
= NULL
;
38116 swig_globalvar
*var
= v
->vars
;
38118 if (strcmp(var
->name
,n
) == 0) {
38119 res
= (*var
->get_attr
)();
38124 if (res
== NULL
&& !PyErr_Occurred()) {
38125 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
38131 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
38133 swig_globalvar
*var
= v
->vars
;
38135 if (strcmp(var
->name
,n
) == 0) {
38136 res
= (*var
->set_attr
)(p
);
38141 if (res
== 1 && !PyErr_Occurred()) {
38142 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
38147 SWIGINTERN PyTypeObject
*
38148 swig_varlink_type(void) {
38149 static char varlink__doc__
[] = "Swig var link object";
38150 static PyTypeObject varlink_type
;
38151 static int type_init
= 0;
38153 const PyTypeObject tmp
38155 PyObject_HEAD_INIT(NULL
)
38156 0, /* Number of items in variable part (ob_size) */
38157 (char *)"swigvarlink", /* Type name (tp_name) */
38158 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
38159 0, /* Itemsize (tp_itemsize) */
38160 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
38161 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
38162 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
38163 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
38164 0, /* tp_compare */
38165 (reprfunc
) swig_varlink_repr
, /* tp_repr */
38166 0, /* tp_as_number */
38167 0, /* tp_as_sequence */
38168 0, /* tp_as_mapping */
38171 (reprfunc
)swig_varlink_str
, /* tp_str */
38172 0, /* tp_getattro */
38173 0, /* tp_setattro */
38174 0, /* tp_as_buffer */
38176 varlink__doc__
, /* tp_doc */
38177 0, /* tp_traverse */
38179 0, /* tp_richcompare */
38180 0, /* tp_weaklistoffset */
38181 #if PY_VERSION_HEX >= 0x02020000
38182 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
38184 #if PY_VERSION_HEX >= 0x02030000
38187 #ifdef COUNT_ALLOCS
38188 0,0,0,0 /* tp_alloc -> tp_next */
38191 varlink_type
= tmp
;
38192 varlink_type
.ob_type
= &PyType_Type
;
38195 return &varlink_type
;
38198 /* Create a variable linking object for use later */
38199 SWIGINTERN PyObject
*
38200 SWIG_Python_newvarlink(void) {
38201 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
38205 return ((PyObject
*) result
);
38209 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
38210 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
38211 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
38213 size_t size
= strlen(name
)+1;
38214 gv
->name
= (char *)malloc(size
);
38216 strncpy(gv
->name
,name
,size
);
38217 gv
->get_attr
= get_attr
;
38218 gv
->set_attr
= set_attr
;
38219 gv
->next
= v
->vars
;
38225 SWIGINTERN PyObject
*
38227 static PyObject
*_SWIG_globals
= 0;
38228 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
38229 return _SWIG_globals
;
38232 /* -----------------------------------------------------------------------------
38233 * constants/methods manipulation
38234 * ----------------------------------------------------------------------------- */
38236 /* Install Constants */
38238 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
38241 for (i
= 0; constants
[i
].type
; ++i
) {
38242 switch(constants
[i
].type
) {
38243 case SWIG_PY_POINTER
:
38244 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
38246 case SWIG_PY_BINARY
:
38247 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
38254 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
38260 /* -----------------------------------------------------------------------------*/
38261 /* Fix SwigMethods to carry the callback ptrs when needed */
38262 /* -----------------------------------------------------------------------------*/
38265 SWIG_Python_FixMethods(PyMethodDef
*methods
,
38266 swig_const_info
*const_table
,
38267 swig_type_info
**types
,
38268 swig_type_info
**types_initial
) {
38270 for (i
= 0; methods
[i
].ml_name
; ++i
) {
38271 char *c
= methods
[i
].ml_doc
;
38272 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
38274 swig_const_info
*ci
= 0;
38275 char *name
= c
+ 10;
38276 for (j
= 0; const_table
[j
].type
; ++j
) {
38277 if (strncmp(const_table
[j
].name
, name
,
38278 strlen(const_table
[j
].name
)) == 0) {
38279 ci
= &(const_table
[j
]);
38284 size_t shift
= (ci
->ptype
) - types
;
38285 swig_type_info
*ty
= types_initial
[shift
];
38286 size_t ldoc
= (c
- methods
[i
].ml_doc
);
38287 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
38288 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
38291 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
38293 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
38295 strncpy(buff
, "swig_ptr: ", 10);
38297 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
38298 methods
[i
].ml_doc
= ndoc
;
38310 /* -----------------------------------------------------------------------------*
38311 * Partial Init method
38312 * -----------------------------------------------------------------------------*/
38317 SWIGEXPORT
void SWIG_init(void) {
38320 /* Fix SwigMethods to carry the callback ptrs when needed */
38321 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
38323 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
38324 d
= PyModule_GetDict(m
);
38326 SWIG_InitializeModule(0);
38327 SWIG_InstallConstants(d
,swig_const_table
);
38330 SWIG_Python_SetConstant(d
, "SYS_OEM_FIXED_FONT",SWIG_From_int(static_cast< int >(wxSYS_OEM_FIXED_FONT
)));
38331 SWIG_Python_SetConstant(d
, "SYS_ANSI_FIXED_FONT",SWIG_From_int(static_cast< int >(wxSYS_ANSI_FIXED_FONT
)));
38332 SWIG_Python_SetConstant(d
, "SYS_ANSI_VAR_FONT",SWIG_From_int(static_cast< int >(wxSYS_ANSI_VAR_FONT
)));
38333 SWIG_Python_SetConstant(d
, "SYS_SYSTEM_FONT",SWIG_From_int(static_cast< int >(wxSYS_SYSTEM_FONT
)));
38334 SWIG_Python_SetConstant(d
, "SYS_DEVICE_DEFAULT_FONT",SWIG_From_int(static_cast< int >(wxSYS_DEVICE_DEFAULT_FONT
)));
38335 SWIG_Python_SetConstant(d
, "SYS_DEFAULT_PALETTE",SWIG_From_int(static_cast< int >(wxSYS_DEFAULT_PALETTE
)));
38336 SWIG_Python_SetConstant(d
, "SYS_SYSTEM_FIXED_FONT",SWIG_From_int(static_cast< int >(wxSYS_SYSTEM_FIXED_FONT
)));
38337 SWIG_Python_SetConstant(d
, "SYS_DEFAULT_GUI_FONT",SWIG_From_int(static_cast< int >(wxSYS_DEFAULT_GUI_FONT
)));
38338 SWIG_Python_SetConstant(d
, "SYS_ICONTITLE_FONT",SWIG_From_int(static_cast< int >(wxSYS_ICONTITLE_FONT
)));
38339 SWIG_Python_SetConstant(d
, "SYS_COLOUR_SCROLLBAR",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_SCROLLBAR
)));
38340 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BACKGROUND",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BACKGROUND
)));
38341 SWIG_Python_SetConstant(d
, "SYS_COLOUR_DESKTOP",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_DESKTOP
)));
38342 SWIG_Python_SetConstant(d
, "SYS_COLOUR_ACTIVECAPTION",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_ACTIVECAPTION
)));
38343 SWIG_Python_SetConstant(d
, "SYS_COLOUR_INACTIVECAPTION",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_INACTIVECAPTION
)));
38344 SWIG_Python_SetConstant(d
, "SYS_COLOUR_MENU",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_MENU
)));
38345 SWIG_Python_SetConstant(d
, "SYS_COLOUR_WINDOW",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_WINDOW
)));
38346 SWIG_Python_SetConstant(d
, "SYS_COLOUR_WINDOWFRAME",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_WINDOWFRAME
)));
38347 SWIG_Python_SetConstant(d
, "SYS_COLOUR_MENUTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_MENUTEXT
)));
38348 SWIG_Python_SetConstant(d
, "SYS_COLOUR_WINDOWTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_WINDOWTEXT
)));
38349 SWIG_Python_SetConstant(d
, "SYS_COLOUR_CAPTIONTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_CAPTIONTEXT
)));
38350 SWIG_Python_SetConstant(d
, "SYS_COLOUR_ACTIVEBORDER",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_ACTIVEBORDER
)));
38351 SWIG_Python_SetConstant(d
, "SYS_COLOUR_INACTIVEBORDER",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_INACTIVEBORDER
)));
38352 SWIG_Python_SetConstant(d
, "SYS_COLOUR_APPWORKSPACE",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_APPWORKSPACE
)));
38353 SWIG_Python_SetConstant(d
, "SYS_COLOUR_HIGHLIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_HIGHLIGHT
)));
38354 SWIG_Python_SetConstant(d
, "SYS_COLOUR_HIGHLIGHTTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_HIGHLIGHTTEXT
)));
38355 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BTNFACE",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BTNFACE
)));
38356 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DFACE",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DFACE
)));
38357 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BTNSHADOW",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BTNSHADOW
)));
38358 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DSHADOW",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DSHADOW
)));
38359 SWIG_Python_SetConstant(d
, "SYS_COLOUR_GRAYTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_GRAYTEXT
)));
38360 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BTNTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BTNTEXT
)));
38361 SWIG_Python_SetConstant(d
, "SYS_COLOUR_INACTIVECAPTIONTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_INACTIVECAPTIONTEXT
)));
38362 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BTNHIGHLIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BTNHIGHLIGHT
)));
38363 SWIG_Python_SetConstant(d
, "SYS_COLOUR_BTNHILIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_BTNHILIGHT
)));
38364 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DHIGHLIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DHIGHLIGHT
)));
38365 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DHILIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DHILIGHT
)));
38366 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DDKSHADOW",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DDKSHADOW
)));
38367 SWIG_Python_SetConstant(d
, "SYS_COLOUR_3DLIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_3DLIGHT
)));
38368 SWIG_Python_SetConstant(d
, "SYS_COLOUR_INFOTEXT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_INFOTEXT
)));
38369 SWIG_Python_SetConstant(d
, "SYS_COLOUR_INFOBK",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_INFOBK
)));
38370 SWIG_Python_SetConstant(d
, "SYS_COLOUR_LISTBOX",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_LISTBOX
)));
38371 SWIG_Python_SetConstant(d
, "SYS_COLOUR_HOTLIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_HOTLIGHT
)));
38372 SWIG_Python_SetConstant(d
, "SYS_COLOUR_GRADIENTACTIVECAPTION",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_GRADIENTACTIVECAPTION
)));
38373 SWIG_Python_SetConstant(d
, "SYS_COLOUR_GRADIENTINACTIVECAPTION",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_GRADIENTINACTIVECAPTION
)));
38374 SWIG_Python_SetConstant(d
, "SYS_COLOUR_MENUHILIGHT",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_MENUHILIGHT
)));
38375 SWIG_Python_SetConstant(d
, "SYS_COLOUR_MENUBAR",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_MENUBAR
)));
38376 SWIG_Python_SetConstant(d
, "SYS_COLOUR_MAX",SWIG_From_int(static_cast< int >(wxSYS_COLOUR_MAX
)));
38377 SWIG_Python_SetConstant(d
, "SYS_MOUSE_BUTTONS",SWIG_From_int(static_cast< int >(wxSYS_MOUSE_BUTTONS
)));
38378 SWIG_Python_SetConstant(d
, "SYS_BORDER_X",SWIG_From_int(static_cast< int >(wxSYS_BORDER_X
)));
38379 SWIG_Python_SetConstant(d
, "SYS_BORDER_Y",SWIG_From_int(static_cast< int >(wxSYS_BORDER_Y
)));
38380 SWIG_Python_SetConstant(d
, "SYS_CURSOR_X",SWIG_From_int(static_cast< int >(wxSYS_CURSOR_X
)));
38381 SWIG_Python_SetConstant(d
, "SYS_CURSOR_Y",SWIG_From_int(static_cast< int >(wxSYS_CURSOR_Y
)));
38382 SWIG_Python_SetConstant(d
, "SYS_DCLICK_X",SWIG_From_int(static_cast< int >(wxSYS_DCLICK_X
)));
38383 SWIG_Python_SetConstant(d
, "SYS_DCLICK_Y",SWIG_From_int(static_cast< int >(wxSYS_DCLICK_Y
)));
38384 SWIG_Python_SetConstant(d
, "SYS_DRAG_X",SWIG_From_int(static_cast< int >(wxSYS_DRAG_X
)));
38385 SWIG_Python_SetConstant(d
, "SYS_DRAG_Y",SWIG_From_int(static_cast< int >(wxSYS_DRAG_Y
)));
38386 SWIG_Python_SetConstant(d
, "SYS_EDGE_X",SWIG_From_int(static_cast< int >(wxSYS_EDGE_X
)));
38387 SWIG_Python_SetConstant(d
, "SYS_EDGE_Y",SWIG_From_int(static_cast< int >(wxSYS_EDGE_Y
)));
38388 SWIG_Python_SetConstant(d
, "SYS_HSCROLL_ARROW_X",SWIG_From_int(static_cast< int >(wxSYS_HSCROLL_ARROW_X
)));
38389 SWIG_Python_SetConstant(d
, "SYS_HSCROLL_ARROW_Y",SWIG_From_int(static_cast< int >(wxSYS_HSCROLL_ARROW_Y
)));
38390 SWIG_Python_SetConstant(d
, "SYS_HTHUMB_X",SWIG_From_int(static_cast< int >(wxSYS_HTHUMB_X
)));
38391 SWIG_Python_SetConstant(d
, "SYS_ICON_X",SWIG_From_int(static_cast< int >(wxSYS_ICON_X
)));
38392 SWIG_Python_SetConstant(d
, "SYS_ICON_Y",SWIG_From_int(static_cast< int >(wxSYS_ICON_Y
)));
38393 SWIG_Python_SetConstant(d
, "SYS_ICONSPACING_X",SWIG_From_int(static_cast< int >(wxSYS_ICONSPACING_X
)));
38394 SWIG_Python_SetConstant(d
, "SYS_ICONSPACING_Y",SWIG_From_int(static_cast< int >(wxSYS_ICONSPACING_Y
)));
38395 SWIG_Python_SetConstant(d
, "SYS_WINDOWMIN_X",SWIG_From_int(static_cast< int >(wxSYS_WINDOWMIN_X
)));
38396 SWIG_Python_SetConstant(d
, "SYS_WINDOWMIN_Y",SWIG_From_int(static_cast< int >(wxSYS_WINDOWMIN_Y
)));
38397 SWIG_Python_SetConstant(d
, "SYS_SCREEN_X",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_X
)));
38398 SWIG_Python_SetConstant(d
, "SYS_SCREEN_Y",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_Y
)));
38399 SWIG_Python_SetConstant(d
, "SYS_FRAMESIZE_X",SWIG_From_int(static_cast< int >(wxSYS_FRAMESIZE_X
)));
38400 SWIG_Python_SetConstant(d
, "SYS_FRAMESIZE_Y",SWIG_From_int(static_cast< int >(wxSYS_FRAMESIZE_Y
)));
38401 SWIG_Python_SetConstant(d
, "SYS_SMALLICON_X",SWIG_From_int(static_cast< int >(wxSYS_SMALLICON_X
)));
38402 SWIG_Python_SetConstant(d
, "SYS_SMALLICON_Y",SWIG_From_int(static_cast< int >(wxSYS_SMALLICON_Y
)));
38403 SWIG_Python_SetConstant(d
, "SYS_HSCROLL_Y",SWIG_From_int(static_cast< int >(wxSYS_HSCROLL_Y
)));
38404 SWIG_Python_SetConstant(d
, "SYS_VSCROLL_X",SWIG_From_int(static_cast< int >(wxSYS_VSCROLL_X
)));
38405 SWIG_Python_SetConstant(d
, "SYS_VSCROLL_ARROW_X",SWIG_From_int(static_cast< int >(wxSYS_VSCROLL_ARROW_X
)));
38406 SWIG_Python_SetConstant(d
, "SYS_VSCROLL_ARROW_Y",SWIG_From_int(static_cast< int >(wxSYS_VSCROLL_ARROW_Y
)));
38407 SWIG_Python_SetConstant(d
, "SYS_VTHUMB_Y",SWIG_From_int(static_cast< int >(wxSYS_VTHUMB_Y
)));
38408 SWIG_Python_SetConstant(d
, "SYS_CAPTION_Y",SWIG_From_int(static_cast< int >(wxSYS_CAPTION_Y
)));
38409 SWIG_Python_SetConstant(d
, "SYS_MENU_Y",SWIG_From_int(static_cast< int >(wxSYS_MENU_Y
)));
38410 SWIG_Python_SetConstant(d
, "SYS_NETWORK_PRESENT",SWIG_From_int(static_cast< int >(wxSYS_NETWORK_PRESENT
)));
38411 SWIG_Python_SetConstant(d
, "SYS_PENWINDOWS_PRESENT",SWIG_From_int(static_cast< int >(wxSYS_PENWINDOWS_PRESENT
)));
38412 SWIG_Python_SetConstant(d
, "SYS_SHOW_SOUNDS",SWIG_From_int(static_cast< int >(wxSYS_SHOW_SOUNDS
)));
38413 SWIG_Python_SetConstant(d
, "SYS_SWAP_BUTTONS",SWIG_From_int(static_cast< int >(wxSYS_SWAP_BUTTONS
)));
38414 SWIG_Python_SetConstant(d
, "SYS_CAN_DRAW_FRAME_DECORATIONS",SWIG_From_int(static_cast< int >(wxSYS_CAN_DRAW_FRAME_DECORATIONS
)));
38415 SWIG_Python_SetConstant(d
, "SYS_CAN_ICONIZE_FRAME",SWIG_From_int(static_cast< int >(wxSYS_CAN_ICONIZE_FRAME
)));
38416 SWIG_Python_SetConstant(d
, "SYS_TABLET_PRESENT",SWIG_From_int(static_cast< int >(wxSYS_TABLET_PRESENT
)));
38417 SWIG_Python_SetConstant(d
, "SYS_SCREEN_NONE",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_NONE
)));
38418 SWIG_Python_SetConstant(d
, "SYS_SCREEN_TINY",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_TINY
)));
38419 SWIG_Python_SetConstant(d
, "SYS_SCREEN_PDA",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_PDA
)));
38420 SWIG_Python_SetConstant(d
, "SYS_SCREEN_SMALL",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_SMALL
)));
38421 SWIG_Python_SetConstant(d
, "SYS_SCREEN_DESKTOP",SWIG_From_int(static_cast< int >(wxSYS_SCREEN_DESKTOP
)));
38422 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
38423 SWIG_addvarlink(SWIG_globals(),(char*)"WINDOW_DEFAULT_VARIANT",WINDOW_DEFAULT_VARIANT_get
, WINDOW_DEFAULT_VARIANT_set
);
38424 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorPromptStr",FileSelectorPromptStr_get
, FileSelectorPromptStr_set
);
38425 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorDefaultWildcardStr",FileSelectorDefaultWildcardStr_get
, FileSelectorDefaultWildcardStr_set
);
38426 SWIG_addvarlink(SWIG_globals(),(char*)"DirSelectorPromptStr",DirSelectorPromptStr_get
, DirSelectorPromptStr_set
);
38427 SWIG_Python_SetConstant(d
, "SHUTDOWN_POWEROFF",SWIG_From_int(static_cast< int >(wxSHUTDOWN_POWEROFF
)));
38428 SWIG_Python_SetConstant(d
, "SHUTDOWN_REBOOT",SWIG_From_int(static_cast< int >(wxSHUTDOWN_REBOOT
)));
38429 SWIG_Python_SetConstant(d
, "TIMER_CONTINUOUS",SWIG_From_int(static_cast< int >(wxTIMER_CONTINUOUS
)));
38430 SWIG_Python_SetConstant(d
, "TIMER_ONE_SHOT",SWIG_From_int(static_cast< int >(wxTIMER_ONE_SHOT
)));
38431 PyDict_SetItemString(d
, "wxEVT_TIMER", PyInt_FromLong(wxEVT_TIMER
));
38433 wxPyPtrTypeMap_Add("wxTimer", "wxPyTimer");
38435 SWIG_Python_SetConstant(d
, "LOG_FatalError",SWIG_From_int(static_cast< int >(wxLOG_FatalError
)));
38436 SWIG_Python_SetConstant(d
, "LOG_Error",SWIG_From_int(static_cast< int >(wxLOG_Error
)));
38437 SWIG_Python_SetConstant(d
, "LOG_Warning",SWIG_From_int(static_cast< int >(wxLOG_Warning
)));
38438 SWIG_Python_SetConstant(d
, "LOG_Message",SWIG_From_int(static_cast< int >(wxLOG_Message
)));
38439 SWIG_Python_SetConstant(d
, "LOG_Status",SWIG_From_int(static_cast< int >(wxLOG_Status
)));
38440 SWIG_Python_SetConstant(d
, "LOG_Info",SWIG_From_int(static_cast< int >(wxLOG_Info
)));
38441 SWIG_Python_SetConstant(d
, "LOG_Debug",SWIG_From_int(static_cast< int >(wxLOG_Debug
)));
38442 SWIG_Python_SetConstant(d
, "LOG_Trace",SWIG_From_int(static_cast< int >(wxLOG_Trace
)));
38443 SWIG_Python_SetConstant(d
, "LOG_Progress",SWIG_From_int(static_cast< int >(wxLOG_Progress
)));
38444 SWIG_Python_SetConstant(d
, "LOG_User",SWIG_From_int(static_cast< int >(wxLOG_User
)));
38445 SWIG_Python_SetConstant(d
, "LOG_Max",SWIG_From_int(static_cast< int >(wxLOG_Max
)));
38446 SWIG_Python_SetConstant(d
, "TRACE_MemAlloc",SWIG_FromCharPtr("memalloc"));
38447 SWIG_Python_SetConstant(d
, "TRACE_Messages",SWIG_FromCharPtr("messages"));
38448 SWIG_Python_SetConstant(d
, "TRACE_ResAlloc",SWIG_FromCharPtr("resalloc"));
38449 SWIG_Python_SetConstant(d
, "TRACE_RefCount",SWIG_FromCharPtr("refcount"));
38450 SWIG_Python_SetConstant(d
, "TRACE_OleCalls",SWIG_FromCharPtr("ole"));
38451 SWIG_Python_SetConstant(d
, "TraceMemAlloc",SWIG_From_int(static_cast< int >(0x0001)));
38452 SWIG_Python_SetConstant(d
, "TraceMessages",SWIG_From_int(static_cast< int >(0x0002)));
38453 SWIG_Python_SetConstant(d
, "TraceResAlloc",SWIG_From_int(static_cast< int >(0x0004)));
38454 SWIG_Python_SetConstant(d
, "TraceRefCount",SWIG_From_int(static_cast< int >(0x0008)));
38455 SWIG_Python_SetConstant(d
, "TraceOleCalls",SWIG_From_int(static_cast< int >(0x0100)));
38456 SWIG_Python_SetConstant(d
, "PROCESS_DEFAULT",SWIG_From_int(static_cast< int >(wxPROCESS_DEFAULT
)));
38457 SWIG_Python_SetConstant(d
, "PROCESS_REDIRECT",SWIG_From_int(static_cast< int >(wxPROCESS_REDIRECT
)));
38458 SWIG_Python_SetConstant(d
, "KILL_OK",SWIG_From_int(static_cast< int >(wxKILL_OK
)));
38459 SWIG_Python_SetConstant(d
, "KILL_BAD_SIGNAL",SWIG_From_int(static_cast< int >(wxKILL_BAD_SIGNAL
)));
38460 SWIG_Python_SetConstant(d
, "KILL_ACCESS_DENIED",SWIG_From_int(static_cast< int >(wxKILL_ACCESS_DENIED
)));
38461 SWIG_Python_SetConstant(d
, "KILL_NO_PROCESS",SWIG_From_int(static_cast< int >(wxKILL_NO_PROCESS
)));
38462 SWIG_Python_SetConstant(d
, "KILL_ERROR",SWIG_From_int(static_cast< int >(wxKILL_ERROR
)));
38463 SWIG_Python_SetConstant(d
, "KILL_NOCHILDREN",SWIG_From_int(static_cast< int >(wxKILL_NOCHILDREN
)));
38464 SWIG_Python_SetConstant(d
, "KILL_CHILDREN",SWIG_From_int(static_cast< int >(wxKILL_CHILDREN
)));
38465 SWIG_Python_SetConstant(d
, "SIGNONE",SWIG_From_int(static_cast< int >(wxSIGNONE
)));
38466 SWIG_Python_SetConstant(d
, "SIGHUP",SWIG_From_int(static_cast< int >(wxSIGHUP
)));
38467 SWIG_Python_SetConstant(d
, "SIGINT",SWIG_From_int(static_cast< int >(wxSIGINT
)));
38468 SWIG_Python_SetConstant(d
, "SIGQUIT",SWIG_From_int(static_cast< int >(wxSIGQUIT
)));
38469 SWIG_Python_SetConstant(d
, "SIGILL",SWIG_From_int(static_cast< int >(wxSIGILL
)));
38470 SWIG_Python_SetConstant(d
, "SIGTRAP",SWIG_From_int(static_cast< int >(wxSIGTRAP
)));
38471 SWIG_Python_SetConstant(d
, "SIGABRT",SWIG_From_int(static_cast< int >(wxSIGABRT
)));
38472 SWIG_Python_SetConstant(d
, "SIGIOT",SWIG_From_int(static_cast< int >(wxSIGIOT
)));
38473 SWIG_Python_SetConstant(d
, "SIGEMT",SWIG_From_int(static_cast< int >(wxSIGEMT
)));
38474 SWIG_Python_SetConstant(d
, "SIGFPE",SWIG_From_int(static_cast< int >(wxSIGFPE
)));
38475 SWIG_Python_SetConstant(d
, "SIGKILL",SWIG_From_int(static_cast< int >(wxSIGKILL
)));
38476 SWIG_Python_SetConstant(d
, "SIGBUS",SWIG_From_int(static_cast< int >(wxSIGBUS
)));
38477 SWIG_Python_SetConstant(d
, "SIGSEGV",SWIG_From_int(static_cast< int >(wxSIGSEGV
)));
38478 SWIG_Python_SetConstant(d
, "SIGSYS",SWIG_From_int(static_cast< int >(wxSIGSYS
)));
38479 SWIG_Python_SetConstant(d
, "SIGPIPE",SWIG_From_int(static_cast< int >(wxSIGPIPE
)));
38480 SWIG_Python_SetConstant(d
, "SIGALRM",SWIG_From_int(static_cast< int >(wxSIGALRM
)));
38481 SWIG_Python_SetConstant(d
, "SIGTERM",SWIG_From_int(static_cast< int >(wxSIGTERM
)));
38482 PyDict_SetItemString(d
, "wxEVT_END_PROCESS", PyInt_FromLong(wxEVT_END_PROCESS
));
38483 SWIG_Python_SetConstant(d
, "EXEC_ASYNC",SWIG_From_int(static_cast< int >(wxEXEC_ASYNC
)));
38484 SWIG_Python_SetConstant(d
, "EXEC_SYNC",SWIG_From_int(static_cast< int >(wxEXEC_SYNC
)));
38485 SWIG_Python_SetConstant(d
, "EXEC_NOHIDE",SWIG_From_int(static_cast< int >(wxEXEC_NOHIDE
)));
38486 SWIG_Python_SetConstant(d
, "EXEC_MAKE_GROUP_LEADER",SWIG_From_int(static_cast< int >(wxEXEC_MAKE_GROUP_LEADER
)));
38487 SWIG_Python_SetConstant(d
, "EXEC_NODISABLE",SWIG_From_int(static_cast< int >(wxEXEC_NODISABLE
)));
38489 wxPyPtrTypeMap_Add("wxProcess", "wxPyProcess");
38491 SWIG_Python_SetConstant(d
, "JOYSTICK1",SWIG_From_int(static_cast< int >(wxJOYSTICK1
)));
38492 SWIG_Python_SetConstant(d
, "JOYSTICK2",SWIG_From_int(static_cast< int >(wxJOYSTICK2
)));
38493 SWIG_Python_SetConstant(d
, "JOY_BUTTON_ANY",SWIG_From_int(static_cast< int >(wxJOY_BUTTON_ANY
)));
38494 SWIG_Python_SetConstant(d
, "JOY_BUTTON1",SWIG_From_int(static_cast< int >(wxJOY_BUTTON1
)));
38495 SWIG_Python_SetConstant(d
, "JOY_BUTTON2",SWIG_From_int(static_cast< int >(wxJOY_BUTTON2
)));
38496 SWIG_Python_SetConstant(d
, "JOY_BUTTON3",SWIG_From_int(static_cast< int >(wxJOY_BUTTON3
)));
38497 SWIG_Python_SetConstant(d
, "JOY_BUTTON4",SWIG_From_int(static_cast< int >(wxJOY_BUTTON4
)));
38498 PyDict_SetItemString(d
, "wxEVT_JOY_BUTTON_DOWN", PyInt_FromLong(wxEVT_JOY_BUTTON_DOWN
));
38499 PyDict_SetItemString(d
, "wxEVT_JOY_BUTTON_UP", PyInt_FromLong(wxEVT_JOY_BUTTON_UP
));
38500 PyDict_SetItemString(d
, "wxEVT_JOY_MOVE", PyInt_FromLong(wxEVT_JOY_MOVE
));
38501 PyDict_SetItemString(d
, "wxEVT_JOY_ZMOVE", PyInt_FromLong(wxEVT_JOY_ZMOVE
));
38502 SWIG_Python_SetConstant(d
, "SOUND_SYNC",SWIG_From_int(static_cast< int >(wxSOUND_SYNC
)));
38503 SWIG_Python_SetConstant(d
, "SOUND_ASYNC",SWIG_From_int(static_cast< int >(wxSOUND_ASYNC
)));
38504 SWIG_Python_SetConstant(d
, "SOUND_LOOP",SWIG_From_int(static_cast< int >(wxSOUND_LOOP
)));
38505 SWIG_Python_SetConstant(d
, "MAILCAP_STANDARD",SWIG_From_int(static_cast< int >(wxMAILCAP_STANDARD
)));
38506 SWIG_Python_SetConstant(d
, "MAILCAP_NETSCAPE",SWIG_From_int(static_cast< int >(wxMAILCAP_NETSCAPE
)));
38507 SWIG_Python_SetConstant(d
, "MAILCAP_KDE",SWIG_From_int(static_cast< int >(wxMAILCAP_KDE
)));
38508 SWIG_Python_SetConstant(d
, "MAILCAP_GNOME",SWIG_From_int(static_cast< int >(wxMAILCAP_GNOME
)));
38509 SWIG_Python_SetConstant(d
, "MAILCAP_ALL",SWIG_From_int(static_cast< int >(wxMAILCAP_ALL
)));
38510 SWIG_addvarlink(SWIG_globals(),(char*)"TheMimeTypesManager",TheMimeTypesManager_get
, TheMimeTypesManager_set
);
38511 SWIG_addvarlink(SWIG_globals(),(char*)"ART_TOOLBAR",ART_TOOLBAR_get
, ART_TOOLBAR_set
);
38512 SWIG_addvarlink(SWIG_globals(),(char*)"ART_MENU",ART_MENU_get
, ART_MENU_set
);
38513 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FRAME_ICON",ART_FRAME_ICON_get
, ART_FRAME_ICON_set
);
38514 SWIG_addvarlink(SWIG_globals(),(char*)"ART_CMN_DIALOG",ART_CMN_DIALOG_get
, ART_CMN_DIALOG_set
);
38515 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_BROWSER",ART_HELP_BROWSER_get
, ART_HELP_BROWSER_set
);
38516 SWIG_addvarlink(SWIG_globals(),(char*)"ART_MESSAGE_BOX",ART_MESSAGE_BOX_get
, ART_MESSAGE_BOX_set
);
38517 SWIG_addvarlink(SWIG_globals(),(char*)"ART_BUTTON",ART_BUTTON_get
, ART_BUTTON_set
);
38518 SWIG_addvarlink(SWIG_globals(),(char*)"ART_OTHER",ART_OTHER_get
, ART_OTHER_set
);
38519 SWIG_addvarlink(SWIG_globals(),(char*)"ART_ADD_BOOKMARK",ART_ADD_BOOKMARK_get
, ART_ADD_BOOKMARK_set
);
38520 SWIG_addvarlink(SWIG_globals(),(char*)"ART_DEL_BOOKMARK",ART_DEL_BOOKMARK_get
, ART_DEL_BOOKMARK_set
);
38521 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_SIDE_PANEL",ART_HELP_SIDE_PANEL_get
, ART_HELP_SIDE_PANEL_set
);
38522 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_SETTINGS",ART_HELP_SETTINGS_get
, ART_HELP_SETTINGS_set
);
38523 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_BOOK",ART_HELP_BOOK_get
, ART_HELP_BOOK_set
);
38524 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_FOLDER",ART_HELP_FOLDER_get
, ART_HELP_FOLDER_set
);
38525 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP_PAGE",ART_HELP_PAGE_get
, ART_HELP_PAGE_set
);
38526 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_BACK",ART_GO_BACK_get
, ART_GO_BACK_set
);
38527 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_FORWARD",ART_GO_FORWARD_get
, ART_GO_FORWARD_set
);
38528 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_UP",ART_GO_UP_get
, ART_GO_UP_set
);
38529 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_DOWN",ART_GO_DOWN_get
, ART_GO_DOWN_set
);
38530 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_TO_PARENT",ART_GO_TO_PARENT_get
, ART_GO_TO_PARENT_set
);
38531 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_HOME",ART_GO_HOME_get
, ART_GO_HOME_set
);
38532 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FILE_OPEN",ART_FILE_OPEN_get
, ART_FILE_OPEN_set
);
38533 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FILE_SAVE",ART_FILE_SAVE_get
, ART_FILE_SAVE_set
);
38534 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FILE_SAVE_AS",ART_FILE_SAVE_AS_get
, ART_FILE_SAVE_AS_set
);
38535 SWIG_addvarlink(SWIG_globals(),(char*)"ART_PRINT",ART_PRINT_get
, ART_PRINT_set
);
38536 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HELP",ART_HELP_get
, ART_HELP_set
);
38537 SWIG_addvarlink(SWIG_globals(),(char*)"ART_TIP",ART_TIP_get
, ART_TIP_set
);
38538 SWIG_addvarlink(SWIG_globals(),(char*)"ART_REPORT_VIEW",ART_REPORT_VIEW_get
, ART_REPORT_VIEW_set
);
38539 SWIG_addvarlink(SWIG_globals(),(char*)"ART_LIST_VIEW",ART_LIST_VIEW_get
, ART_LIST_VIEW_set
);
38540 SWIG_addvarlink(SWIG_globals(),(char*)"ART_NEW_DIR",ART_NEW_DIR_get
, ART_NEW_DIR_set
);
38541 SWIG_addvarlink(SWIG_globals(),(char*)"ART_HARDDISK",ART_HARDDISK_get
, ART_HARDDISK_set
);
38542 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FLOPPY",ART_FLOPPY_get
, ART_FLOPPY_set
);
38543 SWIG_addvarlink(SWIG_globals(),(char*)"ART_CDROM",ART_CDROM_get
, ART_CDROM_set
);
38544 SWIG_addvarlink(SWIG_globals(),(char*)"ART_REMOVABLE",ART_REMOVABLE_get
, ART_REMOVABLE_set
);
38545 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FOLDER",ART_FOLDER_get
, ART_FOLDER_set
);
38546 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FOLDER_OPEN",ART_FOLDER_OPEN_get
, ART_FOLDER_OPEN_set
);
38547 SWIG_addvarlink(SWIG_globals(),(char*)"ART_GO_DIR_UP",ART_GO_DIR_UP_get
, ART_GO_DIR_UP_set
);
38548 SWIG_addvarlink(SWIG_globals(),(char*)"ART_EXECUTABLE_FILE",ART_EXECUTABLE_FILE_get
, ART_EXECUTABLE_FILE_set
);
38549 SWIG_addvarlink(SWIG_globals(),(char*)"ART_NORMAL_FILE",ART_NORMAL_FILE_get
, ART_NORMAL_FILE_set
);
38550 SWIG_addvarlink(SWIG_globals(),(char*)"ART_TICK_MARK",ART_TICK_MARK_get
, ART_TICK_MARK_set
);
38551 SWIG_addvarlink(SWIG_globals(),(char*)"ART_CROSS_MARK",ART_CROSS_MARK_get
, ART_CROSS_MARK_set
);
38552 SWIG_addvarlink(SWIG_globals(),(char*)"ART_ERROR",ART_ERROR_get
, ART_ERROR_set
);
38553 SWIG_addvarlink(SWIG_globals(),(char*)"ART_QUESTION",ART_QUESTION_get
, ART_QUESTION_set
);
38554 SWIG_addvarlink(SWIG_globals(),(char*)"ART_WARNING",ART_WARNING_get
, ART_WARNING_set
);
38555 SWIG_addvarlink(SWIG_globals(),(char*)"ART_INFORMATION",ART_INFORMATION_get
, ART_INFORMATION_set
);
38556 SWIG_addvarlink(SWIG_globals(),(char*)"ART_MISSING_IMAGE",ART_MISSING_IMAGE_get
, ART_MISSING_IMAGE_set
);
38557 SWIG_addvarlink(SWIG_globals(),(char*)"ART_COPY",ART_COPY_get
, ART_COPY_set
);
38558 SWIG_addvarlink(SWIG_globals(),(char*)"ART_CUT",ART_CUT_get
, ART_CUT_set
);
38559 SWIG_addvarlink(SWIG_globals(),(char*)"ART_PASTE",ART_PASTE_get
, ART_PASTE_set
);
38560 SWIG_addvarlink(SWIG_globals(),(char*)"ART_DELETE",ART_DELETE_get
, ART_DELETE_set
);
38561 SWIG_addvarlink(SWIG_globals(),(char*)"ART_NEW",ART_NEW_get
, ART_NEW_set
);
38562 SWIG_addvarlink(SWIG_globals(),(char*)"ART_UNDO",ART_UNDO_get
, ART_UNDO_set
);
38563 SWIG_addvarlink(SWIG_globals(),(char*)"ART_REDO",ART_REDO_get
, ART_REDO_set
);
38564 SWIG_addvarlink(SWIG_globals(),(char*)"ART_QUIT",ART_QUIT_get
, ART_QUIT_set
);
38565 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FIND",ART_FIND_get
, ART_FIND_set
);
38566 SWIG_addvarlink(SWIG_globals(),(char*)"ART_FIND_AND_REPLACE",ART_FIND_AND_REPLACE_get
, ART_FIND_AND_REPLACE_set
);
38568 wxPyPtrTypeMap_Add("wxArtProvider", "wxPyArtProvider");
38570 SWIG_Python_SetConstant(d
, "CONFIG_USE_LOCAL_FILE",SWIG_From_int(static_cast< int >(wxCONFIG_USE_LOCAL_FILE
)));
38571 SWIG_Python_SetConstant(d
, "CONFIG_USE_GLOBAL_FILE",SWIG_From_int(static_cast< int >(wxCONFIG_USE_GLOBAL_FILE
)));
38572 SWIG_Python_SetConstant(d
, "CONFIG_USE_RELATIVE_PATH",SWIG_From_int(static_cast< int >(wxCONFIG_USE_RELATIVE_PATH
)));
38573 SWIG_Python_SetConstant(d
, "CONFIG_USE_NO_ESCAPE_CHARACTERS",SWIG_From_int(static_cast< int >(wxCONFIG_USE_NO_ESCAPE_CHARACTERS
)));
38574 SWIG_Python_SetConstant(d
, "ConfigBase_Type_Unknown",SWIG_From_int(static_cast< int >(wxConfigBase::Type_Unknown
)));
38575 SWIG_Python_SetConstant(d
, "ConfigBase_Type_String",SWIG_From_int(static_cast< int >(wxConfigBase::Type_String
)));
38576 SWIG_Python_SetConstant(d
, "ConfigBase_Type_Boolean",SWIG_From_int(static_cast< int >(wxConfigBase::Type_Boolean
)));
38577 SWIG_Python_SetConstant(d
, "ConfigBase_Type_Integer",SWIG_From_int(static_cast< int >(wxConfigBase::Type_Integer
)));
38578 SWIG_Python_SetConstant(d
, "ConfigBase_Type_Float",SWIG_From_int(static_cast< int >(wxConfigBase::Type_Float
)));
38579 SWIG_addvarlink(SWIG_globals(),(char*)"DefaultDateTimeFormat",DefaultDateTimeFormat_get
, DefaultDateTimeFormat_set
);
38580 SWIG_addvarlink(SWIG_globals(),(char*)"DefaultTimeSpanFormat",DefaultTimeSpanFormat_get
, DefaultTimeSpanFormat_set
);
38581 SWIG_Python_SetConstant(d
, "DateTime_Local",SWIG_From_int(static_cast< int >(wxDateTime::Local
)));
38582 SWIG_Python_SetConstant(d
, "DateTime_GMT_12",SWIG_From_int(static_cast< int >(wxDateTime::GMT_12
)));
38583 SWIG_Python_SetConstant(d
, "DateTime_GMT_11",SWIG_From_int(static_cast< int >(wxDateTime::GMT_11
)));
38584 SWIG_Python_SetConstant(d
, "DateTime_GMT_10",SWIG_From_int(static_cast< int >(wxDateTime::GMT_10
)));
38585 SWIG_Python_SetConstant(d
, "DateTime_GMT_9",SWIG_From_int(static_cast< int >(wxDateTime::GMT_9
)));
38586 SWIG_Python_SetConstant(d
, "DateTime_GMT_8",SWIG_From_int(static_cast< int >(wxDateTime::GMT_8
)));
38587 SWIG_Python_SetConstant(d
, "DateTime_GMT_7",SWIG_From_int(static_cast< int >(wxDateTime::GMT_7
)));
38588 SWIG_Python_SetConstant(d
, "DateTime_GMT_6",SWIG_From_int(static_cast< int >(wxDateTime::GMT_6
)));
38589 SWIG_Python_SetConstant(d
, "DateTime_GMT_5",SWIG_From_int(static_cast< int >(wxDateTime::GMT_5
)));
38590 SWIG_Python_SetConstant(d
, "DateTime_GMT_4",SWIG_From_int(static_cast< int >(wxDateTime::GMT_4
)));
38591 SWIG_Python_SetConstant(d
, "DateTime_GMT_3",SWIG_From_int(static_cast< int >(wxDateTime::GMT_3
)));
38592 SWIG_Python_SetConstant(d
, "DateTime_GMT_2",SWIG_From_int(static_cast< int >(wxDateTime::GMT_2
)));
38593 SWIG_Python_SetConstant(d
, "DateTime_GMT_1",SWIG_From_int(static_cast< int >(wxDateTime::GMT_1
)));
38594 SWIG_Python_SetConstant(d
, "DateTime_GMT0",SWIG_From_int(static_cast< int >(wxDateTime::GMT0
)));
38595 SWIG_Python_SetConstant(d
, "DateTime_GMT1",SWIG_From_int(static_cast< int >(wxDateTime::GMT1
)));
38596 SWIG_Python_SetConstant(d
, "DateTime_GMT2",SWIG_From_int(static_cast< int >(wxDateTime::GMT2
)));
38597 SWIG_Python_SetConstant(d
, "DateTime_GMT3",SWIG_From_int(static_cast< int >(wxDateTime::GMT3
)));
38598 SWIG_Python_SetConstant(d
, "DateTime_GMT4",SWIG_From_int(static_cast< int >(wxDateTime::GMT4
)));
38599 SWIG_Python_SetConstant(d
, "DateTime_GMT5",SWIG_From_int(static_cast< int >(wxDateTime::GMT5
)));
38600 SWIG_Python_SetConstant(d
, "DateTime_GMT6",SWIG_From_int(static_cast< int >(wxDateTime::GMT6
)));
38601 SWIG_Python_SetConstant(d
, "DateTime_GMT7",SWIG_From_int(static_cast< int >(wxDateTime::GMT7
)));
38602 SWIG_Python_SetConstant(d
, "DateTime_GMT8",SWIG_From_int(static_cast< int >(wxDateTime::GMT8
)));
38603 SWIG_Python_SetConstant(d
, "DateTime_GMT9",SWIG_From_int(static_cast< int >(wxDateTime::GMT9
)));
38604 SWIG_Python_SetConstant(d
, "DateTime_GMT10",SWIG_From_int(static_cast< int >(wxDateTime::GMT10
)));
38605 SWIG_Python_SetConstant(d
, "DateTime_GMT11",SWIG_From_int(static_cast< int >(wxDateTime::GMT11
)));
38606 SWIG_Python_SetConstant(d
, "DateTime_GMT12",SWIG_From_int(static_cast< int >(wxDateTime::GMT12
)));
38607 SWIG_Python_SetConstant(d
, "DateTime_WET",SWIG_From_int(static_cast< int >(wxDateTime::WET
)));
38608 SWIG_Python_SetConstant(d
, "DateTime_WEST",SWIG_From_int(static_cast< int >(wxDateTime::WEST
)));
38609 SWIG_Python_SetConstant(d
, "DateTime_CET",SWIG_From_int(static_cast< int >(wxDateTime::CET
)));
38610 SWIG_Python_SetConstant(d
, "DateTime_CEST",SWIG_From_int(static_cast< int >(wxDateTime::CEST
)));
38611 SWIG_Python_SetConstant(d
, "DateTime_EET",SWIG_From_int(static_cast< int >(wxDateTime::EET
)));
38612 SWIG_Python_SetConstant(d
, "DateTime_EEST",SWIG_From_int(static_cast< int >(wxDateTime::EEST
)));
38613 SWIG_Python_SetConstant(d
, "DateTime_MSK",SWIG_From_int(static_cast< int >(wxDateTime::MSK
)));
38614 SWIG_Python_SetConstant(d
, "DateTime_MSD",SWIG_From_int(static_cast< int >(wxDateTime::MSD
)));
38615 SWIG_Python_SetConstant(d
, "DateTime_AST",SWIG_From_int(static_cast< int >(wxDateTime::AST
)));
38616 SWIG_Python_SetConstant(d
, "DateTime_ADT",SWIG_From_int(static_cast< int >(wxDateTime::ADT
)));
38617 SWIG_Python_SetConstant(d
, "DateTime_EST",SWIG_From_int(static_cast< int >(wxDateTime::EST
)));
38618 SWIG_Python_SetConstant(d
, "DateTime_EDT",SWIG_From_int(static_cast< int >(wxDateTime::EDT
)));
38619 SWIG_Python_SetConstant(d
, "DateTime_CST",SWIG_From_int(static_cast< int >(wxDateTime::CST
)));
38620 SWIG_Python_SetConstant(d
, "DateTime_CDT",SWIG_From_int(static_cast< int >(wxDateTime::CDT
)));
38621 SWIG_Python_SetConstant(d
, "DateTime_MST",SWIG_From_int(static_cast< int >(wxDateTime::MST
)));
38622 SWIG_Python_SetConstant(d
, "DateTime_MDT",SWIG_From_int(static_cast< int >(wxDateTime::MDT
)));
38623 SWIG_Python_SetConstant(d
, "DateTime_PST",SWIG_From_int(static_cast< int >(wxDateTime::PST
)));
38624 SWIG_Python_SetConstant(d
, "DateTime_PDT",SWIG_From_int(static_cast< int >(wxDateTime::PDT
)));
38625 SWIG_Python_SetConstant(d
, "DateTime_HST",SWIG_From_int(static_cast< int >(wxDateTime::HST
)));
38626 SWIG_Python_SetConstant(d
, "DateTime_AKST",SWIG_From_int(static_cast< int >(wxDateTime::AKST
)));
38627 SWIG_Python_SetConstant(d
, "DateTime_AKDT",SWIG_From_int(static_cast< int >(wxDateTime::AKDT
)));
38628 SWIG_Python_SetConstant(d
, "DateTime_A_WST",SWIG_From_int(static_cast< int >(wxDateTime::A_WST
)));
38629 SWIG_Python_SetConstant(d
, "DateTime_A_CST",SWIG_From_int(static_cast< int >(wxDateTime::A_CST
)));
38630 SWIG_Python_SetConstant(d
, "DateTime_A_EST",SWIG_From_int(static_cast< int >(wxDateTime::A_EST
)));
38631 SWIG_Python_SetConstant(d
, "DateTime_A_ESST",SWIG_From_int(static_cast< int >(wxDateTime::A_ESST
)));
38632 SWIG_Python_SetConstant(d
, "DateTime_UTC",SWIG_From_int(static_cast< int >(wxDateTime::UTC
)));
38633 SWIG_Python_SetConstant(d
, "DateTime_Gregorian",SWIG_From_int(static_cast< int >(wxDateTime::Gregorian
)));
38634 SWIG_Python_SetConstant(d
, "DateTime_Julian",SWIG_From_int(static_cast< int >(wxDateTime::Julian
)));
38635 SWIG_Python_SetConstant(d
, "DateTime_Gr_Unknown",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Unknown
)));
38636 SWIG_Python_SetConstant(d
, "DateTime_Gr_Standard",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Standard
)));
38637 SWIG_Python_SetConstant(d
, "DateTime_Gr_Alaska",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Alaska
)));
38638 SWIG_Python_SetConstant(d
, "DateTime_Gr_Albania",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Albania
)));
38639 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria
)));
38640 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria_Brixen",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria_Brixen
)));
38641 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria_Salzburg",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria_Salzburg
)));
38642 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria_Tyrol",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria_Tyrol
)));
38643 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria_Carinthia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria_Carinthia
)));
38644 SWIG_Python_SetConstant(d
, "DateTime_Gr_Austria_Styria",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Austria_Styria
)));
38645 SWIG_Python_SetConstant(d
, "DateTime_Gr_Belgium",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Belgium
)));
38646 SWIG_Python_SetConstant(d
, "DateTime_Gr_Bulgaria",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Bulgaria
)));
38647 SWIG_Python_SetConstant(d
, "DateTime_Gr_Bulgaria_1",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Bulgaria_1
)));
38648 SWIG_Python_SetConstant(d
, "DateTime_Gr_Bulgaria_2",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Bulgaria_2
)));
38649 SWIG_Python_SetConstant(d
, "DateTime_Gr_Bulgaria_3",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Bulgaria_3
)));
38650 SWIG_Python_SetConstant(d
, "DateTime_Gr_Canada",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Canada
)));
38651 SWIG_Python_SetConstant(d
, "DateTime_Gr_China",SWIG_From_int(static_cast< int >(wxDateTime::Gr_China
)));
38652 SWIG_Python_SetConstant(d
, "DateTime_Gr_China_1",SWIG_From_int(static_cast< int >(wxDateTime::Gr_China_1
)));
38653 SWIG_Python_SetConstant(d
, "DateTime_Gr_China_2",SWIG_From_int(static_cast< int >(wxDateTime::Gr_China_2
)));
38654 SWIG_Python_SetConstant(d
, "DateTime_Gr_Czechoslovakia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Czechoslovakia
)));
38655 SWIG_Python_SetConstant(d
, "DateTime_Gr_Denmark",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Denmark
)));
38656 SWIG_Python_SetConstant(d
, "DateTime_Gr_Egypt",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Egypt
)));
38657 SWIG_Python_SetConstant(d
, "DateTime_Gr_Estonia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Estonia
)));
38658 SWIG_Python_SetConstant(d
, "DateTime_Gr_Finland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Finland
)));
38659 SWIG_Python_SetConstant(d
, "DateTime_Gr_France",SWIG_From_int(static_cast< int >(wxDateTime::Gr_France
)));
38660 SWIG_Python_SetConstant(d
, "DateTime_Gr_France_Alsace",SWIG_From_int(static_cast< int >(wxDateTime::Gr_France_Alsace
)));
38661 SWIG_Python_SetConstant(d
, "DateTime_Gr_France_Lorraine",SWIG_From_int(static_cast< int >(wxDateTime::Gr_France_Lorraine
)));
38662 SWIG_Python_SetConstant(d
, "DateTime_Gr_France_Strasbourg",SWIG_From_int(static_cast< int >(wxDateTime::Gr_France_Strasbourg
)));
38663 SWIG_Python_SetConstant(d
, "DateTime_Gr_Germany",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Germany
)));
38664 SWIG_Python_SetConstant(d
, "DateTime_Gr_Germany_Catholic",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Germany_Catholic
)));
38665 SWIG_Python_SetConstant(d
, "DateTime_Gr_Germany_Prussia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Germany_Prussia
)));
38666 SWIG_Python_SetConstant(d
, "DateTime_Gr_Germany_Protestant",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Germany_Protestant
)));
38667 SWIG_Python_SetConstant(d
, "DateTime_Gr_GreatBritain",SWIG_From_int(static_cast< int >(wxDateTime::Gr_GreatBritain
)));
38668 SWIG_Python_SetConstant(d
, "DateTime_Gr_Greece",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Greece
)));
38669 SWIG_Python_SetConstant(d
, "DateTime_Gr_Hungary",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Hungary
)));
38670 SWIG_Python_SetConstant(d
, "DateTime_Gr_Ireland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Ireland
)));
38671 SWIG_Python_SetConstant(d
, "DateTime_Gr_Italy",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Italy
)));
38672 SWIG_Python_SetConstant(d
, "DateTime_Gr_Japan",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Japan
)));
38673 SWIG_Python_SetConstant(d
, "DateTime_Gr_Japan_1",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Japan_1
)));
38674 SWIG_Python_SetConstant(d
, "DateTime_Gr_Japan_2",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Japan_2
)));
38675 SWIG_Python_SetConstant(d
, "DateTime_Gr_Japan_3",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Japan_3
)));
38676 SWIG_Python_SetConstant(d
, "DateTime_Gr_Latvia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Latvia
)));
38677 SWIG_Python_SetConstant(d
, "DateTime_Gr_Lithuania",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Lithuania
)));
38678 SWIG_Python_SetConstant(d
, "DateTime_Gr_Luxemburg",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Luxemburg
)));
38679 SWIG_Python_SetConstant(d
, "DateTime_Gr_Netherlands",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Netherlands
)));
38680 SWIG_Python_SetConstant(d
, "DateTime_Gr_Netherlands_Groningen",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Netherlands_Groningen
)));
38681 SWIG_Python_SetConstant(d
, "DateTime_Gr_Netherlands_Gelderland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Netherlands_Gelderland
)));
38682 SWIG_Python_SetConstant(d
, "DateTime_Gr_Netherlands_Utrecht",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Netherlands_Utrecht
)));
38683 SWIG_Python_SetConstant(d
, "DateTime_Gr_Netherlands_Friesland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Netherlands_Friesland
)));
38684 SWIG_Python_SetConstant(d
, "DateTime_Gr_Norway",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Norway
)));
38685 SWIG_Python_SetConstant(d
, "DateTime_Gr_Poland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Poland
)));
38686 SWIG_Python_SetConstant(d
, "DateTime_Gr_Portugal",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Portugal
)));
38687 SWIG_Python_SetConstant(d
, "DateTime_Gr_Romania",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Romania
)));
38688 SWIG_Python_SetConstant(d
, "DateTime_Gr_Russia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Russia
)));
38689 SWIG_Python_SetConstant(d
, "DateTime_Gr_Scotland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Scotland
)));
38690 SWIG_Python_SetConstant(d
, "DateTime_Gr_Spain",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Spain
)));
38691 SWIG_Python_SetConstant(d
, "DateTime_Gr_Sweden",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Sweden
)));
38692 SWIG_Python_SetConstant(d
, "DateTime_Gr_Switzerland",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Switzerland
)));
38693 SWIG_Python_SetConstant(d
, "DateTime_Gr_Switzerland_Catholic",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Switzerland_Catholic
)));
38694 SWIG_Python_SetConstant(d
, "DateTime_Gr_Switzerland_Protestant",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Switzerland_Protestant
)));
38695 SWIG_Python_SetConstant(d
, "DateTime_Gr_Turkey",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Turkey
)));
38696 SWIG_Python_SetConstant(d
, "DateTime_Gr_USA",SWIG_From_int(static_cast< int >(wxDateTime::Gr_USA
)));
38697 SWIG_Python_SetConstant(d
, "DateTime_Gr_Wales",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Wales
)));
38698 SWIG_Python_SetConstant(d
, "DateTime_Gr_Yugoslavia",SWIG_From_int(static_cast< int >(wxDateTime::Gr_Yugoslavia
)));
38699 SWIG_Python_SetConstant(d
, "DateTime_Country_Unknown",SWIG_From_int(static_cast< int >(wxDateTime::Country_Unknown
)));
38700 SWIG_Python_SetConstant(d
, "DateTime_Country_Default",SWIG_From_int(static_cast< int >(wxDateTime::Country_Default
)));
38701 SWIG_Python_SetConstant(d
, "DateTime_Country_WesternEurope_Start",SWIG_From_int(static_cast< int >(wxDateTime::Country_WesternEurope_Start
)));
38702 SWIG_Python_SetConstant(d
, "DateTime_Country_EEC",SWIG_From_int(static_cast< int >(wxDateTime::Country_EEC
)));
38703 SWIG_Python_SetConstant(d
, "DateTime_France",SWIG_From_int(static_cast< int >(wxDateTime::France
)));
38704 SWIG_Python_SetConstant(d
, "DateTime_Germany",SWIG_From_int(static_cast< int >(wxDateTime::Germany
)));
38705 SWIG_Python_SetConstant(d
, "DateTime_UK",SWIG_From_int(static_cast< int >(wxDateTime::UK
)));
38706 SWIG_Python_SetConstant(d
, "DateTime_Country_WesternEurope_End",SWIG_From_int(static_cast< int >(wxDateTime::Country_WesternEurope_End
)));
38707 SWIG_Python_SetConstant(d
, "DateTime_Russia",SWIG_From_int(static_cast< int >(wxDateTime::Russia
)));
38708 SWIG_Python_SetConstant(d
, "DateTime_USA",SWIG_From_int(static_cast< int >(wxDateTime::USA
)));
38709 SWIG_Python_SetConstant(d
, "DateTime_Jan",SWIG_From_int(static_cast< int >(wxDateTime::Jan
)));
38710 SWIG_Python_SetConstant(d
, "DateTime_Feb",SWIG_From_int(static_cast< int >(wxDateTime::Feb
)));
38711 SWIG_Python_SetConstant(d
, "DateTime_Mar",SWIG_From_int(static_cast< int >(wxDateTime::Mar
)));
38712 SWIG_Python_SetConstant(d
, "DateTime_Apr",SWIG_From_int(static_cast< int >(wxDateTime::Apr
)));
38713 SWIG_Python_SetConstant(d
, "DateTime_May",SWIG_From_int(static_cast< int >(wxDateTime::May
)));
38714 SWIG_Python_SetConstant(d
, "DateTime_Jun",SWIG_From_int(static_cast< int >(wxDateTime::Jun
)));
38715 SWIG_Python_SetConstant(d
, "DateTime_Jul",SWIG_From_int(static_cast< int >(wxDateTime::Jul
)));
38716 SWIG_Python_SetConstant(d
, "DateTime_Aug",SWIG_From_int(static_cast< int >(wxDateTime::Aug
)));
38717 SWIG_Python_SetConstant(d
, "DateTime_Sep",SWIG_From_int(static_cast< int >(wxDateTime::Sep
)));
38718 SWIG_Python_SetConstant(d
, "DateTime_Oct",SWIG_From_int(static_cast< int >(wxDateTime::Oct
)));
38719 SWIG_Python_SetConstant(d
, "DateTime_Nov",SWIG_From_int(static_cast< int >(wxDateTime::Nov
)));
38720 SWIG_Python_SetConstant(d
, "DateTime_Dec",SWIG_From_int(static_cast< int >(wxDateTime::Dec
)));
38721 SWIG_Python_SetConstant(d
, "DateTime_Inv_Month",SWIG_From_int(static_cast< int >(wxDateTime::Inv_Month
)));
38722 SWIG_Python_SetConstant(d
, "DateTime_Sun",SWIG_From_int(static_cast< int >(wxDateTime::Sun
)));
38723 SWIG_Python_SetConstant(d
, "DateTime_Mon",SWIG_From_int(static_cast< int >(wxDateTime::Mon
)));
38724 SWIG_Python_SetConstant(d
, "DateTime_Tue",SWIG_From_int(static_cast< int >(wxDateTime::Tue
)));
38725 SWIG_Python_SetConstant(d
, "DateTime_Wed",SWIG_From_int(static_cast< int >(wxDateTime::Wed
)));
38726 SWIG_Python_SetConstant(d
, "DateTime_Thu",SWIG_From_int(static_cast< int >(wxDateTime::Thu
)));
38727 SWIG_Python_SetConstant(d
, "DateTime_Fri",SWIG_From_int(static_cast< int >(wxDateTime::Fri
)));
38728 SWIG_Python_SetConstant(d
, "DateTime_Sat",SWIG_From_int(static_cast< int >(wxDateTime::Sat
)));
38729 SWIG_Python_SetConstant(d
, "DateTime_Inv_WeekDay",SWIG_From_int(static_cast< int >(wxDateTime::Inv_WeekDay
)));
38730 SWIG_Python_SetConstant(d
, "DateTime_Inv_Year",SWIG_From_int(static_cast< int >(wxDateTime::Inv_Year
)));
38731 SWIG_Python_SetConstant(d
, "DateTime_Name_Full",SWIG_From_int(static_cast< int >(wxDateTime::Name_Full
)));
38732 SWIG_Python_SetConstant(d
, "DateTime_Name_Abbr",SWIG_From_int(static_cast< int >(wxDateTime::Name_Abbr
)));
38733 SWIG_Python_SetConstant(d
, "DateTime_Default_First",SWIG_From_int(static_cast< int >(wxDateTime::Default_First
)));
38734 SWIG_Python_SetConstant(d
, "DateTime_Monday_First",SWIG_From_int(static_cast< int >(wxDateTime::Monday_First
)));
38735 SWIG_Python_SetConstant(d
, "DateTime_Sunday_First",SWIG_From_int(static_cast< int >(wxDateTime::Sunday_First
)));
38736 SWIG_addvarlink(SWIG_globals(),(char*)"DefaultDateTime",DefaultDateTime_get
, DefaultDateTime_set
);
38737 SWIG_Python_SetConstant(d
, "DF_INVALID",SWIG_From_int(static_cast< int >(wxDF_INVALID
)));
38738 SWIG_Python_SetConstant(d
, "DF_TEXT",SWIG_From_int(static_cast< int >(wxDF_TEXT
)));
38739 SWIG_Python_SetConstant(d
, "DF_BITMAP",SWIG_From_int(static_cast< int >(wxDF_BITMAP
)));
38740 SWIG_Python_SetConstant(d
, "DF_METAFILE",SWIG_From_int(static_cast< int >(wxDF_METAFILE
)));
38741 SWIG_Python_SetConstant(d
, "DF_SYLK",SWIG_From_int(static_cast< int >(wxDF_SYLK
)));
38742 SWIG_Python_SetConstant(d
, "DF_DIF",SWIG_From_int(static_cast< int >(wxDF_DIF
)));
38743 SWIG_Python_SetConstant(d
, "DF_TIFF",SWIG_From_int(static_cast< int >(wxDF_TIFF
)));
38744 SWIG_Python_SetConstant(d
, "DF_OEMTEXT",SWIG_From_int(static_cast< int >(wxDF_OEMTEXT
)));
38745 SWIG_Python_SetConstant(d
, "DF_DIB",SWIG_From_int(static_cast< int >(wxDF_DIB
)));
38746 SWIG_Python_SetConstant(d
, "DF_PALETTE",SWIG_From_int(static_cast< int >(wxDF_PALETTE
)));
38747 SWIG_Python_SetConstant(d
, "DF_PENDATA",SWIG_From_int(static_cast< int >(wxDF_PENDATA
)));
38748 SWIG_Python_SetConstant(d
, "DF_RIFF",SWIG_From_int(static_cast< int >(wxDF_RIFF
)));
38749 SWIG_Python_SetConstant(d
, "DF_WAVE",SWIG_From_int(static_cast< int >(wxDF_WAVE
)));
38750 SWIG_Python_SetConstant(d
, "DF_UNICODETEXT",SWIG_From_int(static_cast< int >(wxDF_UNICODETEXT
)));
38751 SWIG_Python_SetConstant(d
, "DF_ENHMETAFILE",SWIG_From_int(static_cast< int >(wxDF_ENHMETAFILE
)));
38752 SWIG_Python_SetConstant(d
, "DF_FILENAME",SWIG_From_int(static_cast< int >(wxDF_FILENAME
)));
38753 SWIG_Python_SetConstant(d
, "DF_LOCALE",SWIG_From_int(static_cast< int >(wxDF_LOCALE
)));
38754 SWIG_Python_SetConstant(d
, "DF_PRIVATE",SWIG_From_int(static_cast< int >(wxDF_PRIVATE
)));
38755 SWIG_Python_SetConstant(d
, "DF_HTML",SWIG_From_int(static_cast< int >(wxDF_HTML
)));
38756 SWIG_Python_SetConstant(d
, "DF_MAX",SWIG_From_int(static_cast< int >(wxDF_MAX
)));
38757 SWIG_addvarlink(SWIG_globals(),(char*)"FormatInvalid",FormatInvalid_get
, FormatInvalid_set
);
38758 SWIG_Python_SetConstant(d
, "DataObject_Get",SWIG_From_int(static_cast< int >(wxDataObject::Get
)));
38759 SWIG_Python_SetConstant(d
, "DataObject_Set",SWIG_From_int(static_cast< int >(wxDataObject::Set
)));
38760 SWIG_Python_SetConstant(d
, "DataObject_Both",SWIG_From_int(static_cast< int >(wxDataObject::Both
)));
38761 SWIG_Python_SetConstant(d
, "Drag_CopyOnly",SWIG_From_int(static_cast< int >(wxDrag_CopyOnly
)));
38762 SWIG_Python_SetConstant(d
, "Drag_AllowMove",SWIG_From_int(static_cast< int >(wxDrag_AllowMove
)));
38763 SWIG_Python_SetConstant(d
, "Drag_DefaultMove",SWIG_From_int(static_cast< int >(wxDrag_DefaultMove
)));
38764 SWIG_Python_SetConstant(d
, "DragError",SWIG_From_int(static_cast< int >(wxDragError
)));
38765 SWIG_Python_SetConstant(d
, "DragNone",SWIG_From_int(static_cast< int >(wxDragNone
)));
38766 SWIG_Python_SetConstant(d
, "DragCopy",SWIG_From_int(static_cast< int >(wxDragCopy
)));
38767 SWIG_Python_SetConstant(d
, "DragMove",SWIG_From_int(static_cast< int >(wxDragMove
)));
38768 SWIG_Python_SetConstant(d
, "DragLink",SWIG_From_int(static_cast< int >(wxDragLink
)));
38769 SWIG_Python_SetConstant(d
, "DragCancel",SWIG_From_int(static_cast< int >(wxDragCancel
)));
38771 wxPyPtrTypeMap_Add("wxDropSource", "wxPyDropSource");
38772 wxPyPtrTypeMap_Add("wxDropTarget", "wxPyDropTarget");
38773 wxPyPtrTypeMap_Add("wxTextDropTarget", "wxPyTextDropTarget");
38774 wxPyPtrTypeMap_Add("wxFileDropTarget", "wxPyFileDropTarget");
38776 SWIG_addvarlink(SWIG_globals(),(char*)"DefaultVideoMode",DefaultVideoMode_get
, DefaultVideoMode_set
);