1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 #if PY_VERSION_HEX < 0x02050000
989 typedef int Py_ssize_t
;
992 /* for raw pointers */
993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
994 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
996 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
997 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
998 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
999 #define swig_owntype int
1001 /* for raw packed data */
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1003 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1005 /* for class or struct pointers */
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1007 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1009 /* for C or C++ function pointers */
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1011 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1013 /* for C++ member pointers, ie, member methods */
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1015 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1020 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1021 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1022 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1024 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1025 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1026 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1027 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1028 #define SWIG_fail goto fail
1031 /* Runtime API implementation */
1033 /* Error manipulation */
1036 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1037 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1038 PyErr_SetObject(errtype
, obj
);
1040 SWIG_PYTHON_THREAD_END_BLOCK
;
1044 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1045 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1046 PyErr_SetString(errtype
, (char *) msg
);
1047 SWIG_PYTHON_THREAD_END_BLOCK
;
1050 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1052 /* Set a constant value */
1055 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1056 PyDict_SetItemString(d
, (char*) name
, obj
);
1060 /* Append a value to the result obj */
1062 SWIGINTERN PyObject
*
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1067 } else if (result
== Py_None
) {
1071 if (!PyList_Check(result
)) {
1072 PyObject
*o2
= result
;
1073 result
= PyList_New(1);
1074 PyList_SetItem(result
, 0, o2
);
1076 PyList_Append(result
,obj
);
1085 } else if (result
== Py_None
) {
1089 if (!PyTuple_Check(result
)) {
1091 result
= PyTuple_New(1);
1092 PyTuple_SET_ITEM(result
, 0, o2
);
1094 o3
= PyTuple_New(1);
1095 PyTuple_SET_ITEM(o3
, 0, obj
);
1097 result
= PySequence_Concat(o2
, o3
);
1105 /* Unpack the argument tuple */
1108 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1114 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1115 name
, (min
== max
? "" : "at least "), min
);
1119 if (!PyTuple_Check(args
)) {
1120 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1123 register int l
= PyTuple_GET_SIZE(args
);
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at least "), min
, l
);
1128 } else if (l
> max
) {
1129 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1130 name
, (min
== max
? "" : "at most "), max
, l
);
1134 for (i
= 0; i
< l
; ++i
) {
1135 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1137 for (; l
< max
; ++l
) {
1145 /* A functor is a function object with one single object argument */
1146 #if PY_VERSION_HEX >= 0x02020000
1147 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1149 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1153 Helper for static pointer initialization for both C and C++ code, for example
1154 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1157 #define SWIG_STATIC_POINTER(var) var
1159 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1162 /* -----------------------------------------------------------------------------
1163 * Pointer declarations
1164 * ----------------------------------------------------------------------------- */
1166 /* Flags for new pointer objects */
1167 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1168 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1170 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1179 /* How to access Py_None */
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1181 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1182 # ifndef SWIG_PYTHON_BUILD_NONE
1183 # define SWIG_PYTHON_BUILD_NONE
1188 #ifdef SWIG_PYTHON_BUILD_NONE
1191 # define Py_None SWIG_Py_None()
1193 SWIGRUNTIMEINLINE PyObject
*
1196 PyObject
*none
= Py_BuildValue("");
1200 SWIGRUNTIME PyObject
*
1203 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1208 /* The python void return value */
1210 SWIGRUNTIMEINLINE PyObject
*
1213 PyObject
*none
= Py_None
;
1218 /* PySwigClientData */
1229 SWIGRUNTIMEINLINE
int
1230 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1232 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1233 return data
? data
->implicitconv
: 0;
1236 SWIGRUNTIMEINLINE PyObject
*
1237 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1238 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1239 PyObject
*klass
= data
? data
->klass
: 0;
1240 return (klass
? klass
: PyExc_RuntimeError
);
1244 SWIGRUNTIME PySwigClientData
*
1245 PySwigClientData_New(PyObject
* obj
)
1250 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1251 /* the klass element */
1253 Py_INCREF(data
->klass
);
1254 /* the newraw method and newargs arguments used to create a new raw instance */
1255 if (PyClass_Check(obj
)) {
1257 data
->newargs
= obj
;
1260 #if (PY_VERSION_HEX < 0x02020000)
1263 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1266 Py_INCREF(data
->newraw
);
1267 data
->newargs
= PyTuple_New(1);
1268 PyTuple_SetItem(data
->newargs
, 0, obj
);
1270 data
->newargs
= obj
;
1272 Py_INCREF(data
->newargs
);
1274 /* the destroy method, aka as the C++ delete method */
1275 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1276 if (PyErr_Occurred()) {
1280 if (data
->destroy
) {
1282 Py_INCREF(data
->destroy
);
1283 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1285 data
->delargs
= !(flags
& (METH_O
));
1292 data
->implicitconv
= 0;
1298 PySwigClientData_Del(PySwigClientData
* data
)
1300 Py_XDECREF(data
->newraw
);
1301 Py_XDECREF(data
->newargs
);
1302 Py_XDECREF(data
->destroy
);
1305 /* =============== PySwigObject =====================*/
1315 SWIGRUNTIME PyObject
*
1316 PySwigObject_long(PySwigObject
*v
)
1318 return PyLong_FromVoidPtr(v
->ptr
);
1321 SWIGRUNTIME PyObject
*
1322 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1324 PyObject
*res
= NULL
;
1325 PyObject
*args
= PyTuple_New(1);
1327 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1328 PyObject
*ofmt
= PyString_FromString(fmt
);
1330 res
= PyString_Format(ofmt
,args
);
1339 SWIGRUNTIME PyObject
*
1340 PySwigObject_oct(PySwigObject
*v
)
1342 return PySwigObject_format("%o",v
);
1345 SWIGRUNTIME PyObject
*
1346 PySwigObject_hex(PySwigObject
*v
)
1348 return PySwigObject_format("%x",v
);
1351 SWIGRUNTIME PyObject
*
1353 PySwigObject_repr(PySwigObject
*v
)
1355 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1358 const char *name
= SWIG_TypePrettyName(v
->ty
);
1359 PyObject
*hex
= PySwigObject_hex(v
);
1360 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1364 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1366 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1368 PyString_ConcatAndDel(&repr
,nrep
);
1374 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1377 PyObject
*repr
= PySwigObject_repr(v
);
1379 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1382 fputs(PyString_AsString(repr
), fp
);
1390 SWIGRUNTIME PyObject
*
1391 PySwigObject_str(PySwigObject
*v
)
1393 char result
[SWIG_BUFFER_SIZE
];
1394 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1395 PyString_FromString(result
) : 0;
1399 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1403 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1408 SWIGRUNTIME PyTypeObject
*
1409 PySwigObject_type(void) {
1410 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1414 SWIGRUNTIMEINLINE
int
1415 PySwigObject_Check(PyObject
*op
) {
1416 return ((op
)->ob_type
== PySwigObject_type())
1417 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1420 SWIGRUNTIME PyObject
*
1421 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1424 PySwigObject_dealloc(PyObject
*v
)
1426 PySwigObject
*sobj
= (PySwigObject
*) v
;
1427 PyObject
*next
= sobj
->next
;
1429 swig_type_info
*ty
= sobj
->ty
;
1430 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1431 PyObject
*destroy
= data
? data
->destroy
: 0;
1433 /* destroy is always a VARARGS method */
1435 if (data
->delargs
) {
1436 /* we need to create a temporal object to carry the destroy operation */
1437 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1438 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1441 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1442 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1443 res
= ((*meth
)(mself
, v
));
1447 const char *name
= SWIG_TypePrettyName(ty
);
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1449 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1457 SWIGRUNTIME PyObject
*
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1460 PySwigObject
*sobj
= (PySwigObject
*) v
;
1463 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1466 if (!PySwigObject_Check(next
)) {
1471 return SWIG_Py_Void();
1474 SWIGRUNTIME PyObject
*
1476 PySwigObject_next(PyObject
* v
)
1478 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1481 PySwigObject
*sobj
= (PySwigObject
*) v
;
1483 Py_INCREF(sobj
->next
);
1486 return SWIG_Py_Void();
1490 SWIGINTERN PyObject
*
1492 PySwigObject_disown(PyObject
*v
)
1494 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1497 PySwigObject
*sobj
= (PySwigObject
*)v
;
1499 return SWIG_Py_Void();
1502 SWIGINTERN PyObject
*
1504 PySwigObject_acquire(PyObject
*v
)
1506 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1509 PySwigObject
*sobj
= (PySwigObject
*)v
;
1510 sobj
->own
= SWIG_POINTER_OWN
;
1511 return SWIG_Py_Void();
1514 SWIGINTERN PyObject
*
1515 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1518 #if (PY_VERSION_HEX < 0x02020000)
1519 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1521 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1528 PySwigObject
*sobj
= (PySwigObject
*)v
;
1529 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1532 if (PyObject_IsTrue(val
)) {
1533 PySwigObject_acquire(v
);
1535 PySwigObject_disown(v
);
1538 if (PyObject_IsTrue(val
)) {
1539 PySwigObject_acquire(v
,args
);
1541 PySwigObject_disown(v
,args
);
1551 swigobject_methods
[] = {
1552 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1553 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1554 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1555 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1556 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1557 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1562 swigobject_methods
[] = {
1563 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1564 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1565 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1566 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1567 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1568 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1573 #if PY_VERSION_HEX < 0x02020000
1574 SWIGINTERN PyObject
*
1575 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1577 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1581 SWIGRUNTIME PyTypeObject
*
1582 _PySwigObject_type(void) {
1583 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1585 static PyNumberMethods PySwigObject_as_number
= {
1586 (binaryfunc
)0, /*nb_add*/
1587 (binaryfunc
)0, /*nb_subtract*/
1588 (binaryfunc
)0, /*nb_multiply*/
1589 (binaryfunc
)0, /*nb_divide*/
1590 (binaryfunc
)0, /*nb_remainder*/
1591 (binaryfunc
)0, /*nb_divmod*/
1592 (ternaryfunc
)0,/*nb_power*/
1593 (unaryfunc
)0, /*nb_negative*/
1594 (unaryfunc
)0, /*nb_positive*/
1595 (unaryfunc
)0, /*nb_absolute*/
1596 (inquiry
)0, /*nb_nonzero*/
1603 (coercion
)0, /*nb_coerce*/
1604 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1605 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1606 (unaryfunc
)0, /*nb_float*/
1607 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1608 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1609 #if PY_VERSION_HEX >= 0x02020000
1610 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1611 #elif PY_VERSION_HEX >= 0x02000000
1612 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1616 static PyTypeObject pyswigobject_type
;
1617 static int type_init
= 0;
1619 const PyTypeObject tmp
1621 PyObject_HEAD_INIT(NULL
)
1623 (char *)"PySwigObject", /* tp_name */
1624 sizeof(PySwigObject
), /* tp_basicsize */
1625 0, /* tp_itemsize */
1626 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1627 (printfunc
)PySwigObject_print
, /* tp_print */
1628 #if PY_VERSION_HEX < 0x02020000
1629 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1631 (getattrfunc
)0, /* tp_getattr */
1633 (setattrfunc
)0, /* tp_setattr */
1634 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1635 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1636 &PySwigObject_as_number
, /* tp_as_number */
1637 0, /* tp_as_sequence */
1638 0, /* tp_as_mapping */
1639 (hashfunc
)0, /* tp_hash */
1640 (ternaryfunc
)0, /* tp_call */
1641 (reprfunc
)PySwigObject_str
, /* tp_str */
1642 PyObject_GenericGetAttr
, /* tp_getattro */
1643 0, /* tp_setattro */
1644 0, /* tp_as_buffer */
1645 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1646 swigobject_doc
, /* tp_doc */
1647 0, /* tp_traverse */
1649 0, /* tp_richcompare */
1650 0, /* tp_weaklistoffset */
1651 #if PY_VERSION_HEX >= 0x02020000
1653 0, /* tp_iternext */
1654 swigobject_methods
, /* tp_methods */
1659 0, /* tp_descr_get */
1660 0, /* tp_descr_set */
1661 0, /* tp_dictoffset */
1670 0, /* tp_subclasses */
1671 0, /* tp_weaklist */
1673 #if PY_VERSION_HEX >= 0x02030000
1677 0,0,0,0 /* tp_alloc -> tp_next */
1680 pyswigobject_type
= tmp
;
1681 pyswigobject_type
.ob_type
= &PyType_Type
;
1684 return &pyswigobject_type
;
1687 SWIGRUNTIME PyObject
*
1688 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1690 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1697 return (PyObject
*)sobj
;
1700 /* -----------------------------------------------------------------------------
1701 * Implements a simple Swig Packed type, and use it instead of string
1702 * ----------------------------------------------------------------------------- */
1712 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1714 char result
[SWIG_BUFFER_SIZE
];
1715 fputs("<Swig Packed ", fp
);
1716 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1720 fputs(v
->ty
->name
,fp
);
1725 SWIGRUNTIME PyObject
*
1726 PySwigPacked_repr(PySwigPacked
*v
)
1728 char result
[SWIG_BUFFER_SIZE
];
1729 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1730 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1732 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1736 SWIGRUNTIME PyObject
*
1737 PySwigPacked_str(PySwigPacked
*v
)
1739 char result
[SWIG_BUFFER_SIZE
];
1740 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1741 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1743 return PyString_FromString(v
->ty
->name
);
1748 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1752 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1753 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1758 SWIGRUNTIME PyTypeObject
*
1759 PySwigPacked_type(void) {
1760 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1764 SWIGRUNTIMEINLINE
int
1765 PySwigPacked_Check(PyObject
*op
) {
1766 return ((op
)->ob_type
== _PySwigPacked_type())
1767 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1771 PySwigPacked_dealloc(PyObject
*v
)
1773 if (PySwigPacked_Check(v
)) {
1774 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1780 SWIGRUNTIME PyTypeObject
*
1781 _PySwigPacked_type(void) {
1782 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1783 static PyTypeObject pyswigpacked_type
;
1784 static int type_init
= 0;
1786 const PyTypeObject tmp
1788 PyObject_HEAD_INIT(NULL
)
1790 (char *)"PySwigPacked", /* tp_name */
1791 sizeof(PySwigPacked
), /* tp_basicsize */
1792 0, /* tp_itemsize */
1793 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1794 (printfunc
)PySwigPacked_print
, /* tp_print */
1795 (getattrfunc
)0, /* tp_getattr */
1796 (setattrfunc
)0, /* tp_setattr */
1797 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1798 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1799 0, /* tp_as_number */
1800 0, /* tp_as_sequence */
1801 0, /* tp_as_mapping */
1802 (hashfunc
)0, /* tp_hash */
1803 (ternaryfunc
)0, /* tp_call */
1804 (reprfunc
)PySwigPacked_str
, /* tp_str */
1805 PyObject_GenericGetAttr
, /* tp_getattro */
1806 0, /* tp_setattro */
1807 0, /* tp_as_buffer */
1808 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1809 swigpacked_doc
, /* tp_doc */
1810 0, /* tp_traverse */
1812 0, /* tp_richcompare */
1813 0, /* tp_weaklistoffset */
1814 #if PY_VERSION_HEX >= 0x02020000
1816 0, /* tp_iternext */
1822 0, /* tp_descr_get */
1823 0, /* tp_descr_set */
1824 0, /* tp_dictoffset */
1833 0, /* tp_subclasses */
1834 0, /* tp_weaklist */
1836 #if PY_VERSION_HEX >= 0x02030000
1840 0,0,0,0 /* tp_alloc -> tp_next */
1843 pyswigpacked_type
= tmp
;
1844 pyswigpacked_type
.ob_type
= &PyType_Type
;
1847 return &pyswigpacked_type
;
1850 SWIGRUNTIME PyObject
*
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1853 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1855 void *pack
= malloc(size
);
1857 memcpy(pack
, ptr
, size
);
1862 PyObject_DEL((PyObject
*) sobj
);
1866 return (PyObject
*) sobj
;
1869 SWIGRUNTIME swig_type_info
*
1870 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1872 if (PySwigPacked_Check(obj
)) {
1873 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1874 if (sobj
->size
!= size
) return 0;
1875 memcpy(ptr
, sobj
->pack
, size
);
1882 /* -----------------------------------------------------------------------------
1883 * pointers/data manipulation
1884 * ----------------------------------------------------------------------------- */
1886 SWIGRUNTIMEINLINE PyObject
*
1889 return PyString_FromString("this");
1892 SWIGRUNTIME PyObject
*
1895 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1901 SWIGRUNTIME PySwigObject
*
1902 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1904 if (PySwigObject_Check(pyobj
)) {
1905 return (PySwigObject
*) pyobj
;
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1909 if (PyInstance_Check(pyobj
)) {
1910 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1912 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1913 if (dictptr
!= NULL
) {
1914 PyObject
*dict
= *dictptr
;
1915 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1917 #ifdef PyWeakref_CheckProxy
1918 if (PyWeakref_CheckProxy(pyobj
)) {
1919 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1920 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1923 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1927 if (PyErr_Occurred()) PyErr_Clear();
1933 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1937 if (PyErr_Occurred()) PyErr_Clear();
1941 if (obj
&& !PySwigObject_Check(obj
)) {
1942 /* a PyObject is called 'this', try to get the 'real this'
1943 PySwigObject from it */
1944 return SWIG_Python_GetSwigThis(obj
);
1946 return (PySwigObject
*)obj
;
1950 /* Acquire a pointer value */
1953 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1955 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1957 int oldown
= sobj
->own
;
1965 /* Convert a pointer value */
1968 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1969 if (!obj
) return SWIG_ERROR
;
1970 if (obj
== Py_None
) {
1974 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1976 void *vptr
= sobj
->ptr
;
1978 swig_type_info
*to
= sobj
->ty
;
1980 /* no type cast needed */
1981 if (ptr
) *ptr
= vptr
;
1984 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1986 sobj
= (PySwigObject
*)sobj
->next
;
1988 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1993 if (ptr
) *ptr
= vptr
;
1998 if (own
) *own
= sobj
->own
;
1999 if (flags
& SWIG_POINTER_DISOWN
) {
2004 int res
= SWIG_ERROR
;
2005 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2006 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2007 if (data
&& !data
->implicitconv
) {
2008 PyObject
*klass
= data
->klass
;
2011 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2012 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2013 data
->implicitconv
= 0;
2014 if (PyErr_Occurred()) {
2019 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2022 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2023 if (SWIG_IsOK(res
)) {
2026 /* transfer the ownership to 'ptr' */
2028 res
= SWIG_AddCast(res
);
2029 res
= SWIG_AddNewMask(res
);
2031 res
= SWIG_AddCast(res
);
2045 /* Convert a function ptr value */
2048 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2049 if (!PyCFunction_Check(obj
)) {
2050 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2054 /* here we get the method pointer for callbacks */
2055 const char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2056 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2058 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2059 if (!desc
) return SWIG_ERROR
;
2062 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2063 if (!tc
) return SWIG_ERROR
;
2064 *ptr
= SWIG_TypeCast(tc
,vptr
);
2072 /* Convert a packed value value */
2075 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2076 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2077 if (!to
) return SWIG_ERROR
;
2080 /* check type cast? */
2081 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2082 if (!tc
) return SWIG_ERROR
;
2088 /* -----------------------------------------------------------------------------
2089 * Create a new pointer object
2090 * ----------------------------------------------------------------------------- */
2093 Create a new instance object, whitout calling __init__, and set the
2097 SWIGRUNTIME PyObject
*
2098 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2100 #if (PY_VERSION_HEX >= 0x02020000)
2102 PyObject
*newraw
= data
->newraw
;
2104 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2107 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2108 if (dictptr
!= NULL
) {
2109 PyObject
*dict
= *dictptr
;
2111 dict
= PyDict_New();
2113 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2117 PyObject
*key
= SWIG_This();
2118 PyObject_SetAttr(inst
, key
, swig_this
);
2122 PyObject
*dict
= PyDict_New();
2123 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2124 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2129 #if (PY_VERSION_HEX >= 0x02010000)
2131 PyObject
*dict
= PyDict_New();
2132 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2133 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2135 return (PyObject
*) inst
;
2137 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2141 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2142 Py_INCREF(inst
->in_class
);
2143 inst
->in_dict
= PyDict_New();
2144 if (inst
->in_dict
== NULL
) {
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2149 inst
->in_weakreflist
= NULL
;
2151 #ifdef Py_TPFLAGS_GC
2152 PyObject_GC_Init(inst
);
2154 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2155 return (PyObject
*) inst
;
2161 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2165 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2166 if (dictptr
!= NULL
) {
2169 dict
= PyDict_New();
2172 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2176 dict
= PyObject_GetAttrString(inst
, "__dict__");
2177 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2182 SWIGINTERN PyObject
*
2183 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2185 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2188 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2190 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2192 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2194 return SWIG_Py_Void();
2198 /* Create a new pointer object */
2200 SWIGRUNTIME PyObject
*
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2203 return SWIG_Py_Void();
2205 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2206 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2207 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2208 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2209 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2219 /* Create a new packed object */
2221 SWIGRUNTIMEINLINE PyObject
*
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2223 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2226 /* -----------------------------------------------------------------------------*
2228 * -----------------------------------------------------------------------------*/
2230 #ifdef SWIG_LINK_RUNTIME
2231 void *SWIG_ReturnGlobalTypeList(void *);
2234 SWIGRUNTIME swig_module_info
*
2235 SWIG_Python_GetModule(void) {
2236 static void *type_pointer
= (void *)0;
2237 /* first check if module already created */
2238 if (!type_pointer
) {
2239 #ifdef SWIG_LINK_RUNTIME
2240 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2242 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2243 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2244 if (PyErr_Occurred()) {
2246 type_pointer
= (void *)0;
2250 return (swig_module_info
*) type_pointer
;
2253 #if PY_MAJOR_VERSION < 2
2254 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2255 is copied out of Python/modsupport.c in python version 2.3.4 */
2257 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2260 if (!PyModule_Check(m
)) {
2261 PyErr_SetString(PyExc_TypeError
,
2262 "PyModule_AddObject() needs module as first arg");
2266 PyErr_SetString(PyExc_TypeError
,
2267 "PyModule_AddObject() needs non-NULL value");
2271 dict
= PyModule_GetDict(m
);
2273 /* Internal error -- modules must have a dict! */
2274 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2275 PyModule_GetName(m
));
2278 if (PyDict_SetItemString(dict
, name
, o
))
2286 SWIG_Python_DestroyModule(void *vptr
)
2288 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2289 swig_type_info
**types
= swig_module
->types
;
2291 for (i
=0; i
< swig_module
->size
; ++i
) {
2292 swig_type_info
*ty
= types
[i
];
2294 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2295 if (data
) PySwigClientData_Del(data
);
2298 Py_DECREF(SWIG_This());
2302 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2303 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2305 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2306 swig_empty_runtime_method_table
);
2307 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2308 if (pointer
&& module) {
2309 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2311 Py_XDECREF(pointer
);
2315 /* The python cached type query */
2316 SWIGRUNTIME PyObject
*
2317 SWIG_Python_TypeCache() {
2318 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2322 SWIGRUNTIME swig_type_info
*
2323 SWIG_Python_TypeQuery(const char *type
)
2325 PyObject
*cache
= SWIG_Python_TypeCache();
2326 PyObject
*key
= PyString_FromString(type
);
2327 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2328 swig_type_info
*descriptor
;
2330 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2332 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2333 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2335 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2336 PyDict_SetItem(cache
, key
, obj
);
2345 For backward compatibility only
2347 #define SWIG_POINTER_EXCEPTION 0
2348 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2349 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2354 if (PyErr_Occurred()) {
2356 PyObject
*value
= 0;
2357 PyObject
*traceback
= 0;
2358 PyErr_Fetch(&type
, &value
, &traceback
);
2360 PyObject
*old_str
= PyObject_Str(value
);
2364 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2366 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2377 SWIG_Python_ArgFail(int argnum
)
2379 if (PyErr_Occurred()) {
2380 /* add information about failing argument */
2382 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2383 return SWIG_Python_AddErrMesg(mesg
, 1);
2389 SWIGRUNTIMEINLINE
const char *
2390 PySwigObject_GetDesc(PyObject
*self
)
2392 PySwigObject
*v
= (PySwigObject
*)self
;
2393 swig_type_info
*ty
= v
? v
->ty
: 0;
2394 return ty
? ty
->str
: (char*)"";
2398 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2401 #if defined(SWIG_COBJECT_TYPES)
2402 if (obj
&& PySwigObject_Check(obj
)) {
2403 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2405 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2412 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2414 PyObject
*str
= PyObject_Str(obj
);
2415 const char *cstr
= str
? PyString_AsString(str
) : 0;
2417 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2420 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2427 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2429 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2434 /* Convert a pointer value, signal an exception on a type mismatch */
2436 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2438 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2440 if (flags
& SWIG_POINTER_EXCEPTION
) {
2441 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2442 SWIG_Python_ArgFail(argnum
);
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2464 /* -------- TYPES TABLE (BEGIN) -------- */
2466 #define SWIGTYPE_p_buffer swig_types[0]
2467 #define SWIGTYPE_p_char swig_types[1]
2468 #define SWIGTYPE_p_double swig_types[2]
2469 #define SWIGTYPE_p_form_ops_t swig_types[3]
2470 #define SWIGTYPE_p_int swig_types[4]
2471 #define SWIGTYPE_p_unsigned_char swig_types[5]
2472 #define SWIGTYPE_p_unsigned_int swig_types[6]
2473 #define SWIGTYPE_p_unsigned_long swig_types[7]
2474 #define SWIGTYPE_p_void swig_types[8]
2475 #define SWIGTYPE_p_wxANIHandler swig_types[9]
2476 #define SWIGTYPE_p_wxAcceleratorTable swig_types[10]
2477 #define SWIGTYPE_p_wxActivateEvent swig_types[11]
2478 #define SWIGTYPE_p_wxAlphaPixelData swig_types[12]
2479 #define SWIGTYPE_p_wxAlphaPixelData_Accessor swig_types[13]
2480 #define SWIGTYPE_p_wxAutoBufferedPaintDC swig_types[14]
2481 #define SWIGTYPE_p_wxBMPHandler swig_types[15]
2482 #define SWIGTYPE_p_wxBitmap swig_types[16]
2483 #define SWIGTYPE_p_wxBoxSizer swig_types[17]
2484 #define SWIGTYPE_p_wxBrush swig_types[18]
2485 #define SWIGTYPE_p_wxBrushList swig_types[19]
2486 #define SWIGTYPE_p_wxBufferedDC swig_types[20]
2487 #define SWIGTYPE_p_wxBufferedPaintDC swig_types[21]
2488 #define SWIGTYPE_p_wxCURHandler swig_types[22]
2489 #define SWIGTYPE_p_wxChar swig_types[23]
2490 #define SWIGTYPE_p_wxChildFocusEvent swig_types[24]
2491 #define SWIGTYPE_p_wxClientDC swig_types[25]
2492 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[26]
2493 #define SWIGTYPE_p_wxCloseEvent swig_types[27]
2494 #define SWIGTYPE_p_wxColor swig_types[28]
2495 #define SWIGTYPE_p_wxColour swig_types[29]
2496 #define SWIGTYPE_p_wxColourDatabase swig_types[30]
2497 #define SWIGTYPE_p_wxCommandEvent swig_types[31]
2498 #define SWIGTYPE_p_wxContextMenuEvent swig_types[32]
2499 #define SWIGTYPE_p_wxControl swig_types[33]
2500 #define SWIGTYPE_p_wxControlWithItems swig_types[34]
2501 #define SWIGTYPE_p_wxCursor swig_types[35]
2502 #define SWIGTYPE_p_wxDC swig_types[36]
2503 #define SWIGTYPE_p_wxDCOverlay swig_types[37]
2504 #define SWIGTYPE_p_wxDash swig_types[38]
2505 #define SWIGTYPE_p_wxDateEvent swig_types[39]
2506 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[40]
2507 #define SWIGTYPE_p_wxDropFilesEvent swig_types[41]
2508 #define SWIGTYPE_p_wxDuplexMode swig_types[42]
2509 #define SWIGTYPE_p_wxEffects swig_types[43]
2510 #define SWIGTYPE_p_wxEncodingConverter swig_types[44]
2511 #define SWIGTYPE_p_wxEraseEvent swig_types[45]
2512 #define SWIGTYPE_p_wxEvent swig_types[46]
2513 #define SWIGTYPE_p_wxEvtHandler swig_types[47]
2514 #define SWIGTYPE_p_wxFSFile swig_types[48]
2515 #define SWIGTYPE_p_wxFileSystem swig_types[49]
2516 #define SWIGTYPE_p_wxFlexGridSizer swig_types[50]
2517 #define SWIGTYPE_p_wxFocusEvent swig_types[51]
2518 #define SWIGTYPE_p_wxFont swig_types[52]
2519 #define SWIGTYPE_p_wxFontList swig_types[53]
2520 #define SWIGTYPE_p_wxFontMapper swig_types[54]
2521 #define SWIGTYPE_p_wxGBSizerItem swig_types[55]
2522 #define SWIGTYPE_p_wxGCDC swig_types[56]
2523 #define SWIGTYPE_p_wxGDIObjListBase swig_types[57]
2524 #define SWIGTYPE_p_wxGDIObject swig_types[58]
2525 #define SWIGTYPE_p_wxGIFHandler swig_types[59]
2526 #define SWIGTYPE_p_wxGraphicsContext swig_types[60]
2527 #define SWIGTYPE_p_wxGraphicsPath swig_types[61]
2528 #define SWIGTYPE_p_wxGridBagSizer swig_types[62]
2529 #define SWIGTYPE_p_wxGridSizer swig_types[63]
2530 #define SWIGTYPE_p_wxHeaderButtonParams swig_types[64]
2531 #define SWIGTYPE_p_wxICOHandler swig_types[65]
2532 #define SWIGTYPE_p_wxIcon swig_types[66]
2533 #define SWIGTYPE_p_wxIconBundle swig_types[67]
2534 #define SWIGTYPE_p_wxIconLocation swig_types[68]
2535 #define SWIGTYPE_p_wxIconizeEvent swig_types[69]
2536 #define SWIGTYPE_p_wxIdleEvent swig_types[70]
2537 #define SWIGTYPE_p_wxImage swig_types[71]
2538 #define SWIGTYPE_p_wxImageHandler swig_types[72]
2539 #define SWIGTYPE_p_wxImageList swig_types[73]
2540 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[74]
2541 #define SWIGTYPE_p_wxInitDialogEvent swig_types[75]
2542 #define SWIGTYPE_p_wxJPEGHandler swig_types[76]
2543 #define SWIGTYPE_p_wxKeyEvent swig_types[77]
2544 #define SWIGTYPE_p_wxLanguageInfo swig_types[78]
2545 #define SWIGTYPE_p_wxLayoutConstraints swig_types[79]
2546 #define SWIGTYPE_p_wxLocale swig_types[80]
2547 #define SWIGTYPE_p_wxMask swig_types[81]
2548 #define SWIGTYPE_p_wxMaximizeEvent swig_types[82]
2549 #define SWIGTYPE_p_wxMemoryDC swig_types[83]
2550 #define SWIGTYPE_p_wxMenu swig_types[84]
2551 #define SWIGTYPE_p_wxMenuBar swig_types[85]
2552 #define SWIGTYPE_p_wxMenuEvent swig_types[86]
2553 #define SWIGTYPE_p_wxMenuItem swig_types[87]
2554 #define SWIGTYPE_p_wxMetaFile swig_types[88]
2555 #define SWIGTYPE_p_wxMetaFileDC swig_types[89]
2556 #define SWIGTYPE_p_wxMirrorDC swig_types[90]
2557 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[91]
2558 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[92]
2559 #define SWIGTYPE_p_wxMouseEvent swig_types[93]
2560 #define SWIGTYPE_p_wxMoveEvent swig_types[94]
2561 #define SWIGTYPE_p_wxNativeEncodingInfo swig_types[95]
2562 #define SWIGTYPE_p_wxNativeFontInfo swig_types[96]
2563 #define SWIGTYPE_p_wxNativePixelData swig_types[97]
2564 #define SWIGTYPE_p_wxNativePixelData_Accessor swig_types[98]
2565 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[99]
2566 #define SWIGTYPE_p_wxNcPaintEvent swig_types[100]
2567 #define SWIGTYPE_p_wxNotifyEvent swig_types[101]
2568 #define SWIGTYPE_p_wxObject swig_types[102]
2569 #define SWIGTYPE_p_wxOverlay swig_types[103]
2570 #define SWIGTYPE_p_wxPCXHandler swig_types[104]
2571 #define SWIGTYPE_p_wxPNGHandler swig_types[105]
2572 #define SWIGTYPE_p_wxPNMHandler swig_types[106]
2573 #define SWIGTYPE_p_wxPaintDC swig_types[107]
2574 #define SWIGTYPE_p_wxPaintEvent swig_types[108]
2575 #define SWIGTYPE_p_wxPalette swig_types[109]
2576 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[110]
2577 #define SWIGTYPE_p_wxPaperSize swig_types[111]
2578 #define SWIGTYPE_p_wxPen swig_types[112]
2579 #define SWIGTYPE_p_wxPenList swig_types[113]
2580 #define SWIGTYPE_p_wxPixelDataBase swig_types[114]
2581 #define SWIGTYPE_p_wxPoint swig_types[115]
2582 #define SWIGTYPE_p_wxPoint2D swig_types[116]
2583 #define SWIGTYPE_p_wxPostScriptDC swig_types[117]
2584 #define SWIGTYPE_p_wxPrintData swig_types[118]
2585 #define SWIGTYPE_p_wxPrinterDC swig_types[119]
2586 #define SWIGTYPE_p_wxPseudoDC swig_types[120]
2587 #define SWIGTYPE_p_wxPyApp swig_types[121]
2588 #define SWIGTYPE_p_wxPyCommandEvent swig_types[122]
2589 #define SWIGTYPE_p_wxPyEvent swig_types[123]
2590 #define SWIGTYPE_p_wxPyFontEnumerator swig_types[124]
2591 #define SWIGTYPE_p_wxPyImageHandler swig_types[125]
2592 #define SWIGTYPE_p_wxPyLocale swig_types[126]
2593 #define SWIGTYPE_p_wxPySizer swig_types[127]
2594 #define SWIGTYPE_p_wxPyValidator swig_types[128]
2595 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[129]
2596 #define SWIGTYPE_p_wxRect swig_types[130]
2597 #define SWIGTYPE_p_wxRegion swig_types[131]
2598 #define SWIGTYPE_p_wxRegionIterator swig_types[132]
2599 #define SWIGTYPE_p_wxRendererNative swig_types[133]
2600 #define SWIGTYPE_p_wxRendererVersion swig_types[134]
2601 #define SWIGTYPE_p_wxScreenDC swig_types[135]
2602 #define SWIGTYPE_p_wxScrollEvent swig_types[136]
2603 #define SWIGTYPE_p_wxScrollWinEvent swig_types[137]
2604 #define SWIGTYPE_p_wxSetCursorEvent swig_types[138]
2605 #define SWIGTYPE_p_wxShowEvent swig_types[139]
2606 #define SWIGTYPE_p_wxSize swig_types[140]
2607 #define SWIGTYPE_p_wxSizeEvent swig_types[141]
2608 #define SWIGTYPE_p_wxSizer swig_types[142]
2609 #define SWIGTYPE_p_wxSizerItem swig_types[143]
2610 #define SWIGTYPE_p_wxSplitterRenderParams swig_types[144]
2611 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[145]
2612 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[146]
2613 #define SWIGTYPE_p_wxStockGDI swig_types[147]
2614 #define SWIGTYPE_p_wxString swig_types[148]
2615 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[149]
2616 #define SWIGTYPE_p_wxTIFFHandler swig_types[150]
2617 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[151]
2618 #define SWIGTYPE_p_wxValidator swig_types[152]
2619 #define SWIGTYPE_p_wxWindow swig_types[153]
2620 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[154]
2621 #define SWIGTYPE_p_wxWindowDC swig_types[155]
2622 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[156]
2623 #define SWIGTYPE_p_wxXPMHandler swig_types[157]
2624 static swig_type_info
*swig_types
[159];
2625 static swig_module_info swig_module
= {swig_types
, 158, 0, 0, 0, 0};
2626 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2627 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2629 /* -------- TYPES TABLE (END) -------- */
2631 #if (PY_VERSION_HEX <= 0x02000000)
2632 # if !defined(SWIG_PYTHON_CLASSIC)
2633 # error "This python version requires to use swig with the '-classic' option"
2636 #if (PY_VERSION_HEX <= 0x02020000)
2637 # error "This python version requires to use swig with the '-nomodern' option"
2639 #if (PY_VERSION_HEX <= 0x02020000)
2640 # error "This python version requires to use swig with the '-nomodernargs' option"
2643 # error "This python version requires to use swig with the '-nofastunpack' option"
2646 /*-----------------------------------------------
2647 @(target):= _gdi_.so
2648 ------------------------------------------------*/
2649 #define SWIG_init init_gdi_
2651 #define SWIG_name "_gdi_"
2653 #define SWIGVERSION 0x010329
2656 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2657 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2660 #include <stdexcept>
2664 class PyObject_ptr
{
2669 PyObject_ptr() :_obj(0)
2673 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2678 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2680 if (initial_ref
) Py_XINCREF(_obj
);
2683 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2685 Py_XINCREF(item
._obj
);
2696 operator PyObject
*() const
2701 PyObject
*operator->() const
2710 struct PyObject_var
: PyObject_ptr
{
2711 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2713 PyObject_var
& operator = (PyObject
* obj
)
2723 #include "wx/wxPython/wxPython.h"
2724 #include "wx/wxPython/pyclasses.h"
2727 static const wxString
wxPyEmptyString(wxEmptyString
);
2729 #define SWIG_From_long PyInt_FromLong
2732 SWIGINTERNINLINE PyObject
*
2733 SWIG_From_int (int value
)
2735 return SWIG_From_long (value
);
2741 # define LLONG_MIN LONG_LONG_MIN
2744 # define LLONG_MAX LONG_LONG_MAX
2747 # define ULLONG_MAX ULONG_LONG_MAX
2752 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2754 if (PyNumber_Check(obj
)) {
2755 if (val
) *val
= PyInt_AsLong(obj
);
2758 return SWIG_TypeError
;
2763 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2766 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2767 return SWIG_TypeError
;
2770 *val
= (unsigned long)v
;
2776 SWIG_AsVal_unsigned_SS_char (PyObject
* obj
, unsigned char *val
)
2779 int res
= SWIG_AsVal_unsigned_SS_long (obj
, &v
);
2780 if (SWIG_IsOK(res
)) {
2781 if ((v
> UCHAR_MAX
)) {
2782 return SWIG_OverflowError
;
2784 if (val
) *val
= static_cast< unsigned char >(v
);
2791 SWIGINTERNINLINE PyObject
*
2792 SWIG_From_unsigned_SS_long (unsigned long value
)
2794 return (value
> LONG_MAX
) ?
2795 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2799 SWIGINTERNINLINE PyObject
*
2800 SWIG_From_unsigned_SS_char (unsigned char value
)
2802 return SWIG_From_unsigned_SS_long (value
);
2805 SWIGINTERN
bool wxColour___eq__(wxColour
*self
,PyObject
*other
){
2806 wxColour temp
, *obj
= &temp
;
2807 if ( other
== Py_None
) return false;
2808 if ( ! wxColour_helper(other
, &obj
) ) {
2812 return self
->operator==(*obj
);
2814 SWIGINTERN
bool wxColour___ne__(wxColour
*self
,PyObject
*other
){
2815 wxColour temp
, *obj
= &temp
;
2816 if ( other
== Py_None
) return true;
2817 if ( ! wxColour_helper(other
, &obj
)) {
2821 return self
->operator!=(*obj
);
2825 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2827 if (obj
== Py_True
) {
2828 if (val
) *val
= true;
2830 } else if (obj
== Py_False
) {
2831 if (val
) *val
= false;
2835 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2836 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2841 SWIGINTERN PyObject
*wxColour_Get(wxColour
*self
,bool includeAlpha
=false){
2842 PyObject
* rv
= PyTuple_New(includeAlpha
? 4 : 3);
2846 int alpha
= wxALPHA_OPAQUE
;
2849 green
= self
->Green();
2850 blue
= self
->Blue();
2851 alpha
= self
->Alpha();
2853 PyTuple_SetItem(rv
, 0, PyInt_FromLong(red
));
2854 PyTuple_SetItem(rv
, 1, PyInt_FromLong(green
));
2855 PyTuple_SetItem(rv
, 2, PyInt_FromLong(blue
));
2857 PyTuple_SetItem(rv
, 3, PyInt_FromLong(alpha
));
2860 SWIGINTERN
unsigned long wxColour_GetRGB(wxColour
*self
){
2861 return self
->Red() | (self
->Green() << 8) | (self
->Blue() << 16);
2865 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2868 int res
= SWIG_AsVal_long (obj
, &v
);
2869 if (SWIG_IsOK(res
)) {
2870 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2871 return SWIG_OverflowError
;
2873 if (val
) *val
= static_cast< int >(v
);
2879 SWIGINTERN PyObject
*wxPen_GetDashes(wxPen
*self
){
2881 int count
= self
->GetDashes(&dashes
);
2882 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2883 PyObject
* retval
= PyList_New(0);
2884 for (int x
=0; x
<count
; x
++) {
2885 PyObject
* pyint
= PyInt_FromLong(dashes
[x
]);
2886 PyList_Append(retval
, pyint
);
2889 wxPyEndBlockThreads(blocked
);
2892 SWIGINTERN
void wxPen__SetDashes(wxPen
*self
,PyObject
*_self
,PyObject
*pyDashes
){
2893 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2894 int size
= PyList_Size(pyDashes
);
2895 wxDash
* dashes
= (wxDash
*)byte_LIST_helper(pyDashes
);
2897 // black magic warning! The array of wxDashes needs to exist as
2898 // long as the pen does because wxPen does not copy the array. So
2899 // stick a copy in a Python string object and attach it to _self,
2900 // and then call SetDashes with a pointer to that array. Then
2901 // when the Python pen object is destroyed the array will be
2903 PyObject
* strDashes
= PyString_FromStringAndSize((char*)dashes
, size
*sizeof(wxDash
));
2904 PyObject_SetAttrString(_self
, "_dashes", strDashes
);
2906 self
->SetDashes(size
, (wxDash
*)PyString_AS_STRING(strDashes
));
2908 Py_DECREF(strDashes
);
2909 wxPyEndBlockThreads(blocked
);
2911 SWIGINTERN
bool wxPen___eq__(wxPen
*self
,wxPen
const *other
){ return other
? (*self
== *other
) : false; }
2912 SWIGINTERN
bool wxPen___ne__(wxPen
*self
,wxPen
const *other
){ return other
? (*self
!= *other
) : true; }
2914 SWIGINTERNINLINE PyObject
*
2915 SWIG_From_short (short value
)
2917 return SWIG_From_long (value
);
2922 SWIG_AsVal_short (PyObject
* obj
, short *val
)
2925 int res
= SWIG_AsVal_long (obj
, &v
);
2926 if (SWIG_IsOK(res
)) {
2927 if ((v
< SHRT_MIN
|| v
> SHRT_MAX
)) {
2928 return SWIG_OverflowError
;
2930 if (val
) *val
= static_cast< short >(v
);
2937 #include <wx/rawbmp.h>
2940 #include <wx/image.h>
2942 static char** ConvertListOfStrings(PyObject
* listOfStrings
) {
2943 char** cArray
= NULL
;
2946 if (!PyList_Check(listOfStrings
)) {
2947 PyErr_SetString(PyExc_TypeError
, "Expected a list of strings.");
2950 count
= PyList_Size(listOfStrings
);
2951 cArray
= new char*[count
];
2953 for(int x
=0; x
<count
; x
++) {
2954 // TODO: Need some validation and error checking here
2955 cArray
[x
] = PyString_AsString(PyList_GET_ITEM(listOfStrings
, x
));
2961 SWIGINTERN wxBitmap
*new_wxBitmap(PyObject
*listOfStrings
){
2962 char** cArray
= NULL
;
2965 cArray
= ConvertListOfStrings(listOfStrings
);
2968 bmp
= new wxBitmap(cArray
);
2972 SWIGINTERN wxBitmap
*new_wxBitmap(PyObject
*bits
,int width
,int height
,int depth
=1){
2975 PyString_AsStringAndSize(bits
, &buf
, &length
);
2976 return new wxBitmap(buf
, width
, height
, depth
);
2978 SWIGINTERN wxSize
wxBitmap_GetSize(wxBitmap
*self
){
2979 wxSize
size(self
->GetWidth(), self
->GetHeight());
2982 SWIGINTERN
void wxBitmap_SetMaskColour(wxBitmap
*self
,wxColour
const &colour
){
2983 wxMask
*mask
= new wxMask(*self
, colour
);
2984 self
->SetMask(mask
);
2986 SWIGINTERN
void wxBitmap_SetSize(wxBitmap
*self
,wxSize
const &size
){
2987 self
->SetWidth(size
.x
);
2988 self
->SetHeight(size
.y
);
2990 SWIGINTERN
bool wxBitmap___eq__(wxBitmap
*self
,wxBitmap
const *other
){ return other
? (*self
== *other
) : false; }
2991 SWIGINTERN
bool wxBitmap___ne__(wxBitmap
*self
,wxBitmap
const *other
){ return other
? (*self
!= *other
) : true; }
2993 // See http://tinyurl.com/e5adr for what premultiplying alpha means. It
2994 // appears to me that the other platforms are already doing it, so I'll just
2995 // automatically do it for wxMSW here.
2997 #define wxPy_premultiply(p, a) ((p) * (a) / 0xff)
2998 #define wxPy_unpremultiply(p, a) ((a) ? ((p) * 0xff / (a)) : (p))
3000 #define wxPy_premultiply(p, a) (p)
3001 #define wxPy_unpremultiply(p, a) (p)
3005 wxBitmap
* _BitmapFromBufferAlpha(int width
, int height
,
3006 buffer data
, int DATASIZE
,
3007 buffer alpha
, int ALPHASIZE
)
3009 if (DATASIZE
!= width
*height
*3) {
3010 wxPyErr_SetString(PyExc_ValueError
, "Invalid data buffer size.");
3014 if (ALPHASIZE
!= width
*height
) {
3015 wxPyErr_SetString(PyExc_ValueError
, "Invalid alpha buffer size.");
3019 wxBitmap
* bmp
= new wxBitmap(width
, height
, 32);
3020 wxAlphaPixelData
pixData(*bmp
, wxPoint(0,0), wxSize(width
,height
));
3022 // raise an exception...
3023 wxPyErr_SetString(PyExc_RuntimeError
,
3024 "Failed to gain raw access to bitmap data.");
3029 wxAlphaPixelData::Iterator
p(pixData
);
3030 for (int y
=0; y
<height
; y
++) {
3031 wxAlphaPixelData::Iterator rowStart
= p
;
3032 for (int x
=0; x
<width
; x
++) {
3033 byte a
= *(alpha
++);
3034 p
.Red() = wxPy_premultiply(*(data
++), a
);
3035 p
.Green() = wxPy_premultiply(*(data
++), a
);
3036 p
.Blue() = wxPy_premultiply(*(data
++), a
);
3041 p
.OffsetY(pixData
, 1);
3046 wxBitmap
* _BitmapFromBuffer(int width
, int height
, buffer data
, int DATASIZE
)
3048 if (DATASIZE
!= width
*height
*3) {
3049 wxPyErr_SetString(PyExc_ValueError
, "Invalid data buffer size.");
3053 wxBitmap
* bmp
= new wxBitmap(width
, height
, 24);
3054 wxNativePixelData
pixData(*bmp
, wxPoint(0,0), wxSize(width
,height
));
3056 // raise an exception...
3057 wxPyErr_SetString(PyExc_RuntimeError
,
3058 "Failed to gain raw access to bitmap data.");
3062 wxNativePixelData::Iterator
p(pixData
);
3063 for (int y
=0; y
<height
; y
++) {
3064 wxNativePixelData::Iterator rowStart
= p
;
3065 for (int x
=0; x
<width
; x
++) {
3066 p
.Red() = *(data
++);
3067 p
.Green() = *(data
++);
3068 p
.Blue() = *(data
++);
3072 p
.OffsetY(pixData
, 1);
3078 wxBitmap
* _BitmapFromBufferRGBA(int width
, int height
, buffer data
, int DATASIZE
)
3080 if (DATASIZE
!= width
*height
*4) {
3081 wxPyErr_SetString(PyExc_ValueError
, "Invalid data buffer size.");
3085 wxBitmap
* bmp
= new wxBitmap(width
, height
, 32);
3086 wxAlphaPixelData
pixData(*bmp
, wxPoint(0,0), wxSize(width
,height
));
3088 // raise an exception...
3089 wxPyErr_SetString(PyExc_RuntimeError
,
3090 "Failed to gain raw access to bitmap data.");
3095 wxAlphaPixelData::Iterator
p(pixData
);
3096 for (int y
=0; y
<height
; y
++) {
3097 wxAlphaPixelData::Iterator rowStart
= p
;
3098 for (int x
=0; x
<width
; x
++) {
3100 p
.Red() = wxPy_premultiply(*(data
++), a
);
3101 p
.Green() = wxPy_premultiply(*(data
++), a
);
3102 p
.Blue() = wxPy_premultiply(*(data
++), a
);
3103 p
.Alpha() = a
; data
++;
3107 p
.OffsetY(pixData
, 1);
3113 typedef wxNativePixelData::Iterator wxNativePixelData_Accessor
;
3115 SWIGINTERN
bool wxNativePixelData___nonzero__(wxNativePixelData
*self
){ return self
->operator bool(); }
3116 SWIGINTERN
void wxNativePixelData_Accessor_nextPixel(wxNativePixelData_Accessor
*self
){ ++(*self
); }
3117 SWIGINTERN
void wxNativePixelData_Accessor_Set(wxNativePixelData_Accessor
*self
,byte red
,byte green
,byte blue
){
3119 self
->Green() = green
;
3120 self
->Blue() = blue
;
3122 SWIGINTERN PyObject
*wxNativePixelData_Accessor_Get(wxNativePixelData_Accessor
*self
){
3123 PyObject
* rv
= PyTuple_New(3);
3124 PyTuple_SetItem(rv
, 0, PyInt_FromLong(self
->Red()));
3125 PyTuple_SetItem(rv
, 1, PyInt_FromLong(self
->Green()));
3126 PyTuple_SetItem(rv
, 2, PyInt_FromLong(self
->Blue()));
3130 typedef wxAlphaPixelData::Iterator wxAlphaPixelData_Accessor
;
3132 SWIGINTERN
bool wxAlphaPixelData___nonzero__(wxAlphaPixelData
*self
){ return self
->operator bool(); }
3133 SWIGINTERN
void wxAlphaPixelData_Accessor_nextPixel(wxAlphaPixelData_Accessor
*self
){ ++(*self
); }
3134 SWIGINTERN
void wxAlphaPixelData_Accessor_Set(wxAlphaPixelData_Accessor
*self
,byte red
,byte green
,byte blue
,byte alpha
){
3135 self
->Red() = wxPy_premultiply(red
, alpha
);
3136 self
->Green() = wxPy_premultiply(green
, alpha
);
3137 self
->Blue() = wxPy_premultiply(blue
, alpha
);
3138 self
->Alpha() = alpha
;
3140 SWIGINTERN PyObject
*wxAlphaPixelData_Accessor_Get(wxAlphaPixelData_Accessor
*self
){
3141 PyObject
* rv
= PyTuple_New(4);
3142 int red
= self
->Red();
3143 int green
= self
->Green();
3144 int blue
= self
->Blue();
3145 int alpha
= self
->Alpha();
3147 PyTuple_SetItem(rv
, 0, PyInt_FromLong( wxPy_unpremultiply(red
, alpha
) ));
3148 PyTuple_SetItem(rv
, 1, PyInt_FromLong( wxPy_unpremultiply(green
, alpha
) ));
3149 PyTuple_SetItem(rv
, 2, PyInt_FromLong( wxPy_unpremultiply(blue
, alpha
) ));
3150 PyTuple_SetItem(rv
, 3, PyInt_FromLong( alpha
));
3153 SWIGINTERN wxMask
*new_wxMask(wxBitmap
const &bitmap
,wxColour
const &colour
=wxNullColour
){
3154 if ( !colour
.IsOk() )
3155 return new wxMask(bitmap
, *wxBLACK
);
3157 return new wxMask(bitmap
, colour
);
3160 #include <wx/iconbndl.h>
3162 SWIGINTERN wxIcon
*new_wxIcon(wxBitmap
const &bmp
){
3163 wxIcon
* icon
= new wxIcon();
3164 icon
->CopyFromBitmap(bmp
);
3167 SWIGINTERN wxIcon
*new_wxIcon(PyObject
*listOfStrings
){
3168 char** cArray
= NULL
;
3171 cArray
= ConvertListOfStrings(listOfStrings
);
3174 icon
= new wxIcon(cArray
);
3178 SWIGINTERN wxIconLocation
*new_wxIconLocation(wxString
const *filename
=&wxPyEmptyString
,int num
=0){
3182 return new wxIconLocation(*filename
);
3185 SWIGINTERN
void wxIconLocation_SetIndex(wxIconLocation
*self
,int num
){
3192 SWIGINTERN
int wxIconLocation_GetIndex(wxIconLocation
*self
){
3199 SWIGINTERN wxCursor
*new_wxCursor(wxString
const &cursorName
,long type
,int hotSpotX
=0,int hotSpotY
=0){
3201 wxImage
img(cursorName
, type
);
3202 img
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
, hotSpotX
);
3203 img
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
, hotSpotY
);
3204 return new wxCursor(img
);
3206 return new wxCursor(cursorName
, type
, hotSpotX
, hotSpotY
);
3211 SWIGINTERN
void wxRegionIterator_Next(wxRegionIterator
*self
){
3214 SWIGINTERN
bool wxRegionIterator___nonzero__(wxRegionIterator
*self
){
3215 return self
->operator bool();
3218 #include <wx/fontutil.h>
3219 #include <wx/fontmap.h>
3220 #include <wx/fontenum.h>
3222 SWIGINTERN wxString
wxNativeFontInfo___str__(wxNativeFontInfo
*self
){
3223 return self
->ToString();
3226 wxNativeEncodingInfo
* wxGetNativeFontEncoding(wxFontEncoding encoding
) {
3227 static wxNativeEncodingInfo info
;
3228 if ( wxGetNativeFontEncoding(encoding
, &info
) )
3235 SWIGINTERNINLINE PyObject
*
3236 SWIG_From_size_t (size_t value
)
3238 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
3242 SWIGINTERNINLINE
int
3243 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
3246 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
3247 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
3251 SWIGINTERN PyObject
*wxFontMapper_GetAltForEncoding(wxFontMapper
*self
,wxFontEncoding encoding
,wxString
const &facename
=wxPyEmptyString
,bool interactive
=true){
3252 wxFontEncoding alt_enc
;
3253 if (self
->GetAltForEncoding(encoding
, &alt_enc
, facename
, interactive
))
3254 return PyInt_FromLong(alt_enc
);
3260 SWIGINTERN wxFont
*new_wxFont(wxString
const &info
){
3261 wxNativeFontInfo nfi
;
3262 nfi
.FromString(info
);
3263 return new wxFont(nfi
);
3265 SWIGINTERN wxFont
*new_wxFont(int pointSize
,wxFontFamily family
,int flags
=wxFONTFLAG_DEFAULT
,wxString
const &face
=wxPyEmptyString
,wxFontEncoding encoding
=wxFONTENCODING_DEFAULT
){
3266 return wxFont::New(pointSize
, family
, flags
, face
, encoding
);
3268 SWIGINTERN wxFont
*new_wxFont(wxSize
const &pixelSize
,int family
,int style
,int weight
,bool underlined
=false,wxString
const &face
=wxEmptyString
,wxFontEncoding encoding
=wxFONTENCODING_DEFAULT
){
3269 return wxFontBase::New(pixelSize
, family
,
3270 style
, weight
, underlined
,
3273 SWIGINTERN wxFont
*new_wxFont(wxSize
const &pixelSize
,wxFontFamily family
,int flags
=wxFONTFLAG_DEFAULT
,wxString
const &face
=wxEmptyString
,wxFontEncoding encoding
=wxFONTENCODING_DEFAULT
){
3274 return wxFontBase::New(pixelSize
, family
, flags
, face
, encoding
);
3276 SWIGINTERN
bool wxFont___eq__(wxFont
*self
,wxFont
const *other
){ return other
? (*self
== *other
) : false; }
3277 SWIGINTERN
bool wxFont___ne__(wxFont
*self
,wxFont
const *other
){ return other
? (*self
!= *other
) : true; }
3279 class wxPyFontEnumerator
: public wxFontEnumerator
{
3281 wxPyFontEnumerator() {}
3282 ~wxPyFontEnumerator() {}
3284 DEC_PYCALLBACK_BOOL_STRING(OnFacename
);
3285 DEC_PYCALLBACK_BOOL_STRINGSTRING(OnFontEncoding
);
3290 IMP_PYCALLBACK_BOOL_STRING(wxPyFontEnumerator
, wxFontEnumerator
, OnFacename
);
3291 IMP_PYCALLBACK_BOOL_STRINGSTRING(wxPyFontEnumerator
, wxFontEnumerator
, OnFontEncoding
);
3294 SWIGINTERN PyObject
*wxPyFontEnumerator_GetEncodings(){
3296 wxArrayString arr
= wxFontEnumerator::GetEncodings();
3297 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3298 ret
= wxArrayString2PyList_helper(arr
);
3299 wxPyEndBlockThreads(blocked
);
3302 SWIGINTERN PyObject
*wxPyFontEnumerator_GetFacenames(){
3304 wxArrayString arr
= wxFontEnumerator::GetFacenames();
3305 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3306 ret
= wxArrayString2PyList_helper(arr
);
3307 wxPyEndBlockThreads(blocked
);
3313 SWIGINTERN wxLocale
*new_wxLocale(int language
=-1,int flags
=wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
){
3316 loc
= new wxLocale();
3318 loc
= new wxLocale(language
, flags
);
3319 // Python before 2.4 needs to have LC_NUMERIC set to "C" in order
3320 // for the floating point conversions and such to work right.
3321 #if PY_VERSION_HEX < 0x02040000
3322 setlocale(LC_NUMERIC
, "C");
3326 SWIGINTERN
bool wxLocale_Init1(wxLocale
*self
,wxString
const &szName
,wxString
const &szShort
=wxPyEmptyString
,wxString
const &szLocale
=wxPyEmptyString
,bool bLoadDefault
=true,bool bConvertEncoding
=false){
3327 bool rc
= self
->Init(szName
, szShort
, szLocale
, bLoadDefault
, bConvertEncoding
);
3328 // Python before 2.4 needs to have LC_NUMERIC set to "C" in order
3329 // for the floating point conversions and such to work right.
3330 #if PY_VERSION_HEX < 0x02040000
3331 setlocale(LC_NUMERIC
, "C");
3335 SWIGINTERN
bool wxLocale_Init2(wxLocale
*self
,int language
=wxLANGUAGE_DEFAULT
,int flags
=wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
){
3336 bool rc
= self
->Init(language
, flags
);
3337 // Python before 2.4 needs to have LC_NUMERIC set to "C" in order
3338 // for the floating point conversions and such to work right.
3339 #if PY_VERSION_HEX < 0x02040000
3340 setlocale(LC_NUMERIC
, "C");
3345 class wxPyLocale
: public wxLocale
3350 wxPyLocale(const wxChar
*szName
, // name (for messages)
3351 const wxChar
*szShort
= (const wxChar
*) NULL
, // dir prefix (for msg files)
3352 const wxChar
*szLocale
= (const wxChar
*) NULL
, // locale (for setlocale)
3353 bool bLoadDefault
= true, // preload wxstd.mo?
3354 bool bConvertEncoding
= false); // convert Win<->Unix if necessary?
3356 wxPyLocale(int language
, // wxLanguage id or custom language
3357 int flags
= wxLOCALE_LOAD_DEFAULT
| wxLOCALE_CONV_ENCODING
);
3361 virtual const wxChar
*GetString(const wxChar
*szOrigString
,
3362 const wxChar
*szDomain
= NULL
) const;
3363 virtual const wxChar
*GetString(const wxChar
*szOrigString
,
3364 const wxChar
*szOrigString2
, size_t n
,
3365 const wxChar
*szDomain
= NULL
) const;
3367 virtual wxChar
*GetSingularString(const wxChar
*szOrigString
,
3368 const wxChar
*szDomain
= NULL
) const;
3369 virtual wxChar
*GetPluralString(const wxChar
*szOrigString
,
3370 const wxChar
*szOrigString2
, size_t n
,
3371 const wxChar
*szDomain
= NULL
) const;
3375 DECLARE_NO_COPY_CLASS(wxPyLocale
)
3378 wxPyLocale::wxPyLocale() : wxLocale()
3382 wxPyLocale::wxPyLocale(const wxChar
*szName
, // name (for messages)
3383 const wxChar
*szShort
, // dir prefix (for msg files)
3384 const wxChar
*szLocale
, // locale (for setlocale)
3385 bool bLoadDefault
, // preload wxstd.mo?
3386 bool bConvertEncoding
) // convert Win<->Unix if necessary?
3387 : wxLocale(szName
, szShort
, szLocale
, bLoadDefault
, bConvertEncoding
)
3391 wxPyLocale::wxPyLocale(int language
, // wxLanguage id or custom language
3392 int flags
) : wxLocale(language
, flags
)
3396 wxPyLocale::~wxPyLocale()
3400 const wxChar
*wxPyLocale::GetString(const wxChar
*szOrigString
,
3401 const wxChar
*szDomain
) const
3403 wxChar
*str
= GetSingularString(szOrigString
, szDomain
);
3404 return (str
!= NULL
) ? str
: wxLocale::GetString(szOrigString
, szDomain
);
3407 const wxChar
*wxPyLocale::GetString(const wxChar
*szOrigString
,
3408 const wxChar
*szOrigString2
, size_t n
,
3409 const wxChar
*szDomain
) const
3411 wxChar
*str
= GetPluralString(szOrigString
, szOrigString2
, n
, szDomain
);
3412 return (str
!= NULL
) ? str
: wxLocale::GetString(szOrigString
, szOrigString2
, n
, szDomain
);
3415 wxChar
*wxPyLocale::GetSingularString(const wxChar
*szOrigString
,
3416 const wxChar
*szDomain
) const
3419 static wxString str
;
3420 str
= _T("error in translation"); // when the first if condition is true but the second if condition is not we do not want to return the previously queried string.
3421 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3422 if((found
=wxPyCBH_findCallback(m_myInst
, "GetSingularString"))) {
3423 PyObject
* param1
= wx2PyString(szOrigString
);
3424 PyObject
* param2
= wx2PyString(szDomain
);
3425 PyObject
* ret
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OO)", param1
, param2
));
3429 str
= Py2wxString(ret
);
3433 wxPyEndBlockThreads(blocked
);
3434 return (found
? (wxChar
*)str
.c_str() : NULL
);
3437 wxChar
*wxPyLocale::GetPluralString(const wxChar
*szOrigString
,
3438 const wxChar
*szOrigString2
, size_t n
,
3439 const wxChar
*szDomain
) const
3442 static wxString str
;
3443 str
= _T("error in translation"); // when the first if condition is true but the second if condition is not we do not want to return the previously queried string.
3444 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3445 if((found
=wxPyCBH_findCallback(m_myInst
, "GetPluralString"))) {
3446 PyObject
* param1
= wx2PyString(szOrigString
);
3447 PyObject
* param2
= wx2PyString(szOrigString2
);
3448 PyObject
* param4
= wx2PyString(szDomain
);
3449 PyObject
* ret
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOiO)", param1
, param2
, (int)n
, param4
));
3454 str
= Py2wxString(ret
);
3458 wxPyEndBlockThreads(blocked
);
3459 return (found
? (wxChar
*)str
.c_str() : NULL
);
3462 SWIGINTERN wxPyLocale
*new_wxPyLocale(int language
=-1,int flags
=wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
){
3465 loc
= new wxPyLocale();
3467 loc
= new wxPyLocale(language
, flags
);
3468 // Python before 2.4 needs to have LC_NUMERIC set to "C" in order
3469 // for the floating point conversions and such to work right.
3470 #if PY_VERSION_HEX < 0x02040000
3471 setlocale(LC_NUMERIC
, "C");
3476 #include "wx/wxPython/pydrawxxx.h"
3478 SWIGINTERN wxColour
wxDC_GetPixel(wxDC
*self
,int x
,int y
){
3480 self
->GetPixel(x
, y
, &col
);
3483 SWIGINTERN wxColour
wxDC_GetPixelPoint(wxDC
*self
,wxPoint
const &pt
){
3485 self
->GetPixel(pt
, &col
);
3490 SWIG_AsVal_double (PyObject
*obj
, double* val
)
3492 if (PyNumber_Check(obj
)) {
3493 if (val
) *val
= PyFloat_AsDouble(obj
);
3496 return SWIG_TypeError
;
3499 SWIGINTERN wxRect
wxDC_DrawImageLabel(wxDC
*self
,wxString
const &text
,wxBitmap
const &image
,wxRect
const &rect
,int alignment
=wxALIGN_LEFT
|wxALIGN_TOP
,int indexAccel
=-1){
3501 self
->DrawLabel(text
, image
, rect
, alignment
, indexAccel
, &rv
);
3504 SWIGINTERN wxRect
wxDC_GetClippingRect(wxDC
*self
){
3506 self
->GetClippingBox(rect
);
3509 SWIGINTERN wxArrayInt
wxDC_GetPartialTextExtents(wxDC
*self
,wxString
const &text
){
3511 self
->GetPartialTextExtents(text
, widths
);
3515 #define SWIG_From_double PyFloat_FromDouble
3517 SWIGINTERN
void wxDC_SetLogicalOriginPoint(wxDC
*self
,wxPoint
const &point
){
3518 self
->SetLogicalOrigin(point
.x
, point
.y
);
3520 SWIGINTERN
void wxDC_SetDeviceOriginPoint(wxDC
*self
,wxPoint
const &point
){
3521 self
->SetDeviceOrigin(point
.x
, point
.y
);
3523 SWIGINTERN
void wxDC_CalcBoundingBoxPoint(wxDC
*self
,wxPoint
const &point
){
3524 self
->CalcBoundingBox(point
.x
, point
.y
);
3526 SWIGINTERN PyObject
*wxDC__DrawPointList(wxDC
*self
,PyObject
*pyCoords
,PyObject
*pyPens
,PyObject
*pyBrushes
){
3527 return wxPyDrawXXXList(*self
, wxPyDrawXXXPoint
, pyCoords
, pyPens
, pyBrushes
);
3529 SWIGINTERN PyObject
*wxDC__DrawLineList(wxDC
*self
,PyObject
*pyCoords
,PyObject
*pyPens
,PyObject
*pyBrushes
){
3530 return wxPyDrawXXXList(*self
, wxPyDrawXXXLine
, pyCoords
, pyPens
, pyBrushes
);
3532 SWIGINTERN PyObject
*wxDC__DrawRectangleList(wxDC
*self
,PyObject
*pyCoords
,PyObject
*pyPens
,PyObject
*pyBrushes
){
3533 return wxPyDrawXXXList(*self
, wxPyDrawXXXRectangle
, pyCoords
, pyPens
, pyBrushes
);
3535 SWIGINTERN PyObject
*wxDC__DrawEllipseList(wxDC
*self
,PyObject
*pyCoords
,PyObject
*pyPens
,PyObject
*pyBrushes
){
3536 return wxPyDrawXXXList(*self
, wxPyDrawXXXEllipse
, pyCoords
, pyPens
, pyBrushes
);
3538 SWIGINTERN PyObject
*wxDC__DrawPolygonList(wxDC
*self
,PyObject
*pyCoords
,PyObject
*pyPens
,PyObject
*pyBrushes
){
3539 return wxPyDrawXXXList(*self
, wxPyDrawXXXPolygon
, pyCoords
, pyPens
, pyBrushes
);
3541 SWIGINTERN PyObject
*wxDC__DrawTextList(wxDC
*self
,PyObject
*textList
,PyObject
*pyPoints
,PyObject
*foregroundList
,PyObject
*backgroundList
){
3542 return wxPyDrawTextList(*self
, textList
, pyPoints
, foregroundList
, backgroundList
);
3545 static void wxDC_GetBoundingBox(wxDC
* dc
, int* x1
, int* y1
, int* x2
, int* y2
) {
3553 #include <wx/dcbuffer.h>
3556 #include <wx/dcps.h>
3559 #include <wx/metafile.h>
3562 #include <wx/graphics.h>
3565 #if !wxUSE_GRAPHICS_CONTEXT
3566 // C++ stub classes for platforms that don't have wxGraphicsContext yet.
3568 class wxGraphicsPath
3572 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3573 PyErr_SetString(PyExc_NotImplementedError
,
3574 "wxGraphicsPath is not available on this platform.");
3575 wxPyEndBlockThreads(blocked
);
3577 virtual ~wxGraphicsPath() {}
3579 void MoveToPoint( wxDouble
, wxDouble
) {}
3580 void AddLineToPoint( wxDouble
, wxDouble
) {}
3581 void AddCurveToPoint( wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3582 void CloseSubpath() {}
3583 void GetCurrentPoint( wxDouble
&, wxDouble
&) {}
3584 void AddArc( wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
, bool ) {}
3586 void AddQuadCurveToPoint( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3587 void AddRectangle( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3588 void AddCircle( wxDouble
, wxDouble
, wxDouble
) {}
3589 void AddArcToPoint( wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3591 wxPoint2DDouble
GetCurrentPoint() { return wxPoint2DDouble(0,0); }
3592 void MoveToPoint( const wxPoint2DDouble
& ) {}
3593 void AddLineToPoint( const wxPoint2DDouble
&) {}
3594 void AddCurveToPoint( const wxPoint2DDouble
&, const wxPoint2DDouble
&, const wxPoint2DDouble
&) {}
3595 void AddArc( const wxPoint2DDouble
&, wxDouble
, wxDouble
, wxDouble
, bool) {}
3599 class wxGraphicsContext
3602 wxGraphicsContext() {
3603 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3604 PyErr_SetString(PyExc_NotImplementedError
,
3605 "wxGraphicsContext is not available on this platform.");
3606 wxPyEndBlockThreads(blocked
);
3608 virtual ~wxGraphicsContext() {}
3610 static wxGraphicsContext
* Create( const wxWindowDC
&) {
3611 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3612 PyErr_SetString(PyExc_NotImplementedError
,
3613 "wxGraphicsPath is not available on this platform.");
3614 wxPyEndBlockThreads(blocked
);
3618 static wxGraphicsContext
* CreateFromNative( void * ) {
3619 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3620 PyErr_SetString(PyExc_NotImplementedError
,
3621 "wxGraphicsContext is not available on this platform.");
3622 wxPyEndBlockThreads(blocked
);
3626 wxGraphicsPath
* CreatePath() { return NULL
; }
3629 void Clip( const wxRegion
& ) {}
3630 void Clip( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3632 void * GetNativeContext() { return NULL
; }
3633 void Translate( wxDouble
, wxDouble
) {}
3634 void Scale( wxDouble
, wxDouble
) {}
3635 void Rotate( wxDouble
) {}
3636 void SetPen( const wxPen
& ) {}
3637 void SetBrush( const wxBrush
& ) {}
3638 void SetLinearGradientBrush( wxDouble
, wxDouble
, wxDouble
, wxDouble
,
3639 const wxColour
&, const wxColour
&) {}
3640 void SetRadialGradientBrush( wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
,
3641 const wxColour
&, const wxColour
&) {}
3642 void SetFont( const wxFont
& ) {}
3643 void SetTextColour( const wxColour
& ) {}
3644 void StrokePath( const wxGraphicsPath
* ) {}
3645 void FillPath( const wxGraphicsPath
*, int ) {}
3646 void DrawPath( const wxGraphicsPath
*, int ) {}
3647 void DrawText( const wxString
&, wxDouble
, wxDouble
) {}
3648 void DrawText( const wxString
&, wxDouble
, wxDouble
, wxDouble
) {}
3649 void GetTextExtent( const wxString
&, wxDouble
*, wxDouble
*,
3650 wxDouble
*, wxDouble
* ) const {}
3651 void GetPartialTextExtents(const wxString
& , wxArrayDouble
& ) const {}
3652 void DrawBitmap( const wxBitmap
&, wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3653 void DrawIcon( const wxIcon
&, wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3654 void StrokeLine( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3655 void StrokeLines( size_t , const wxPoint2DDouble
*) {}
3656 void StrokeLines( size_t , const wxPoint2DDouble
*, const wxPoint2DDouble
*) {}
3657 void DrawLines( size_t , const wxPoint2DDouble
*, int ) {}
3658 void DrawRectangle( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3659 void DrawEllipse( wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3660 void DrawRoundedRectangle( wxDouble
, wxDouble
, wxDouble
, wxDouble
, wxDouble
) {}
3664 class wxGCDC
: public wxWindowDC
3667 wxGCDC(const wxWindowDC
&) {
3668 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3669 PyErr_SetString(PyExc_NotImplementedError
,
3670 "wxGCDC is not available on this platform.");
3671 wxPyEndBlockThreads(blocked
);
3675 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3676 PyErr_SetString(PyExc_NotImplementedError
,
3677 "wxGCDC is not available on this platform.");
3678 wxPyEndBlockThreads(blocked
);
3681 virtual ~wxGCDC() {}
3683 wxGraphicsContext
* GetGraphicsContext() { return NULL
; }
3684 void SetGraphicsContext( wxGraphicsContext
* ) {}
3689 SWIGINTERN PyObject
*wxGraphicsContext_GetTextExtent(wxGraphicsContext
*self
,wxString
const &text
){
3690 wxDouble width
= 0.0,
3692 self
->GetTextExtent(text
, &width
, &height
, NULL
, NULL
);
3693 // thread wrapers are turned off for this .i file, so no need to acquire GIL...
3694 PyObject
* rv
= PyTuple_New(2);
3695 PyTuple_SET_ITEM(rv
, 0, PyFloat_FromDouble(width
));
3696 PyTuple_SET_ITEM(rv
, 1, PyFloat_FromDouble(height
));
3699 SWIGINTERN wxArrayDouble
wxGraphicsContext_GetPartialTextExtents(wxGraphicsContext
*self
,wxString
const &text
){
3700 wxArrayDouble widths
;
3701 self
->GetPartialTextExtents(text
, widths
);
3704 SWIGINTERN
void wxGraphicsContext_StrokeLineSegements(wxGraphicsContext
*self
,PyObject
*beginPoints
,PyObject
*endPoints
){
3705 size_t c1
, c2
, count
;
3706 wxPoint2D
* beginP
= wxPoint2D_LIST_helper(beginPoints
, &c1
);
3707 wxPoint2D
* endP
= wxPoint2D_LIST_helper(endPoints
, &c2
);
3709 if ( beginP
!= NULL
&& endP
!= NULL
)
3711 count
= wxMin(c1
, c2
);
3712 self
->StrokeLines(count
, beginP
, endP
);
3718 #include "wx/dcgraph.h"
3721 #include <wx/overlay.h>
3725 SWIGINTERN
void wxColourDatabase_Append(wxColourDatabase
*self
,wxString
const &name
,int red
,int green
,int blue
){
3726 self
->AddColour(name
, wxColour(red
, green
, blue
));
3729 wxFontList
* _wxPyInitTheFontList() { return wxTheFontList
; }
3730 wxPenList
* _wxPyInitThePenList() { return wxThePenList
; }
3731 wxBrushList
* _wxPyInitTheBrushList() { return wxTheBrushList
; }
3732 wxColourDatabase
* _wxPyInitTheColourDatabase() { return wxTheColourDatabase
; }
3735 #include <wx/effects.h>
3738 #include "wx/renderer.h"
3741 SWIGINTERNINLINE PyObject
*
3742 SWIG_From_bool (bool value
)
3744 return PyBool_FromLong(value
? 1 : 0);
3748 #include "wx/wxPython/pseudodc.h"
3750 SWIGINTERN wxRect
wxPseudoDC_GetIdBounds(wxPseudoDC
*self
,int id
){
3752 self
->GetIdBounds(id
, rect
);
3758 SWIGINTERN PyObject
*_wrap_new_GDIObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3759 PyObject
*resultobj
= 0;
3760 wxGDIObject
*result
= 0 ;
3762 if (!SWIG_Python_UnpackTuple(args
,"new_GDIObject",0,0,0)) SWIG_fail
;
3764 if (!wxPyCheckForApp()) SWIG_fail
;
3765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3766 result
= (wxGDIObject
*)new wxGDIObject();
3767 wxPyEndAllowThreads(__tstate
);
3768 if (PyErr_Occurred()) SWIG_fail
;
3770 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGDIObject
, SWIG_POINTER_NEW
| 0 );
3777 SWIGINTERN PyObject
*_wrap_delete_GDIObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3778 PyObject
*resultobj
= 0;
3779 wxGDIObject
*arg1
= (wxGDIObject
*) 0 ;
3782 PyObject
*swig_obj
[1] ;
3784 if (!args
) SWIG_fail
;
3786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGDIObject
, SWIG_POINTER_DISOWN
| 0 );
3787 if (!SWIG_IsOK(res1
)) {
3788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_GDIObject" "', expected argument " "1"" of type '" "wxGDIObject *""'");
3790 arg1
= reinterpret_cast< wxGDIObject
* >(argp1
);
3792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3795 wxPyEndAllowThreads(__tstate
);
3796 if (PyErr_Occurred()) SWIG_fail
;
3798 resultobj
= SWIG_Py_Void();
3805 SWIGINTERN PyObject
*_wrap_GDIObject_IsNull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3806 PyObject
*resultobj
= 0;
3807 wxGDIObject
*arg1
= (wxGDIObject
*) 0 ;
3811 PyObject
*swig_obj
[1] ;
3813 if (!args
) SWIG_fail
;
3815 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGDIObject
, 0 | 0 );
3816 if (!SWIG_IsOK(res1
)) {
3817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GDIObject_IsNull" "', expected argument " "1"" of type '" "wxGDIObject *""'");
3819 arg1
= reinterpret_cast< wxGDIObject
* >(argp1
);
3821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3822 result
= (bool)(arg1
)->IsNull();
3823 wxPyEndAllowThreads(__tstate
);
3824 if (PyErr_Occurred()) SWIG_fail
;
3827 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3835 SWIGINTERN PyObject
*GDIObject_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3837 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
3838 SWIG_TypeNewClientData(SWIGTYPE_p_wxGDIObject
, SWIG_NewClientData(obj
));
3839 return SWIG_Py_Void();
3842 SWIGINTERN PyObject
*GDIObject_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3843 return SWIG_Python_InitShadowInstance(args
);
3846 SWIGINTERN PyObject
*_wrap_new_Colour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3847 PyObject
*resultobj
= 0;
3848 byte arg1
= (byte
) 0 ;
3849 byte arg2
= (byte
) 0 ;
3850 byte arg3
= (byte
) 0 ;
3851 byte arg4
= (byte
) wxALPHA_OPAQUE
;
3852 wxColour
*result
= 0 ;
3853 unsigned char val1
;
3855 unsigned char val2
;
3857 unsigned char val3
;
3859 unsigned char val4
;
3861 PyObject
* obj0
= 0 ;
3862 PyObject
* obj1
= 0 ;
3863 PyObject
* obj2
= 0 ;
3864 PyObject
* obj3
= 0 ;
3865 char * kwnames
[] = {
3866 (char *) "red",(char *) "green",(char *) "blue",(char *) "alpha", NULL
3869 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_Colour",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
3871 ecode1
= SWIG_AsVal_unsigned_SS_char(obj0
, &val1
);
3872 if (!SWIG_IsOK(ecode1
)) {
3873 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Colour" "', expected argument " "1"" of type '" "byte""'");
3875 arg1
= static_cast< byte
>(val1
);
3878 ecode2
= SWIG_AsVal_unsigned_SS_char(obj1
, &val2
);
3879 if (!SWIG_IsOK(ecode2
)) {
3880 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Colour" "', expected argument " "2"" of type '" "byte""'");
3882 arg2
= static_cast< byte
>(val2
);
3885 ecode3
= SWIG_AsVal_unsigned_SS_char(obj2
, &val3
);
3886 if (!SWIG_IsOK(ecode3
)) {
3887 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Colour" "', expected argument " "3"" of type '" "byte""'");
3889 arg3
= static_cast< byte
>(val3
);
3892 ecode4
= SWIG_AsVal_unsigned_SS_char(obj3
, &val4
);
3893 if (!SWIG_IsOK(ecode4
)) {
3894 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_Colour" "', expected argument " "4"" of type '" "byte""'");
3896 arg4
= static_cast< byte
>(val4
);
3899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3900 result
= (wxColour
*)new wxColour(arg1
,arg2
,arg3
,arg4
);
3901 wxPyEndAllowThreads(__tstate
);
3902 if (PyErr_Occurred()) SWIG_fail
;
3904 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, SWIG_POINTER_NEW
| 0 );
3911 SWIGINTERN PyObject
*_wrap_new_NamedColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3912 PyObject
*resultobj
= 0;
3913 wxString
*arg1
= 0 ;
3914 wxColour
*result
= 0 ;
3915 bool temp1
= false ;
3916 PyObject
* obj0
= 0 ;
3917 char * kwnames
[] = {
3918 (char *) "colorName", NULL
3921 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_NamedColour",kwnames
,&obj0
)) SWIG_fail
;
3923 arg1
= wxString_in_helper(obj0
);
3924 if (arg1
== NULL
) SWIG_fail
;
3928 if (!wxPyCheckForApp()) SWIG_fail
;
3929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3930 result
= (wxColour
*)new wxColour((wxString
const &)*arg1
);
3931 wxPyEndAllowThreads(__tstate
);
3932 if (PyErr_Occurred()) SWIG_fail
;
3934 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
3949 SWIGINTERN PyObject
*_wrap_new_ColourRGB(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3950 PyObject
*resultobj
= 0;
3951 unsigned long arg1
;
3952 wxColour
*result
= 0 ;
3953 unsigned long val1
;
3955 PyObject
* obj0
= 0 ;
3956 char * kwnames
[] = {
3957 (char *) "colRGB", NULL
3960 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_ColourRGB",kwnames
,&obj0
)) SWIG_fail
;
3961 ecode1
= SWIG_AsVal_unsigned_SS_long(obj0
, &val1
);
3962 if (!SWIG_IsOK(ecode1
)) {
3963 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_ColourRGB" "', expected argument " "1"" of type '" "unsigned long""'");
3965 arg1
= static_cast< unsigned long >(val1
);
3967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3968 result
= (wxColour
*)new wxColour(arg1
);
3969 wxPyEndAllowThreads(__tstate
);
3970 if (PyErr_Occurred()) SWIG_fail
;
3972 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
3979 SWIGINTERN PyObject
*_wrap_delete_Colour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3980 PyObject
*resultobj
= 0;
3981 wxColour
*arg1
= (wxColour
*) 0 ;
3984 PyObject
*swig_obj
[1] ;
3986 if (!args
) SWIG_fail
;
3988 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, SWIG_POINTER_DISOWN
| 0 );
3989 if (!SWIG_IsOK(res1
)) {
3990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Colour" "', expected argument " "1"" of type '" "wxColour *""'");
3992 arg1
= reinterpret_cast< wxColour
* >(argp1
);
3994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3997 wxPyEndAllowThreads(__tstate
);
3998 if (PyErr_Occurred()) SWIG_fail
;
4000 resultobj
= SWIG_Py_Void();
4007 SWIGINTERN PyObject
*_wrap_Colour_Red(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4008 PyObject
*resultobj
= 0;
4009 wxColour
*arg1
= (wxColour
*) 0 ;
4013 PyObject
*swig_obj
[1] ;
4015 if (!args
) SWIG_fail
;
4017 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4018 if (!SWIG_IsOK(res1
)) {
4019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Red" "', expected argument " "1"" of type '" "wxColour *""'");
4021 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4024 result
= (byte
)(arg1
)->Red();
4025 wxPyEndAllowThreads(__tstate
);
4026 if (PyErr_Occurred()) SWIG_fail
;
4028 resultobj
= SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result
));
4035 SWIGINTERN PyObject
*_wrap_Colour_Green(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4036 PyObject
*resultobj
= 0;
4037 wxColour
*arg1
= (wxColour
*) 0 ;
4041 PyObject
*swig_obj
[1] ;
4043 if (!args
) SWIG_fail
;
4045 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4046 if (!SWIG_IsOK(res1
)) {
4047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Green" "', expected argument " "1"" of type '" "wxColour *""'");
4049 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4052 result
= (byte
)(arg1
)->Green();
4053 wxPyEndAllowThreads(__tstate
);
4054 if (PyErr_Occurred()) SWIG_fail
;
4056 resultobj
= SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result
));
4063 SWIGINTERN PyObject
*_wrap_Colour_Blue(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4064 PyObject
*resultobj
= 0;
4065 wxColour
*arg1
= (wxColour
*) 0 ;
4069 PyObject
*swig_obj
[1] ;
4071 if (!args
) SWIG_fail
;
4073 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4074 if (!SWIG_IsOK(res1
)) {
4075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Blue" "', expected argument " "1"" of type '" "wxColour *""'");
4077 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4080 result
= (byte
)(arg1
)->Blue();
4081 wxPyEndAllowThreads(__tstate
);
4082 if (PyErr_Occurred()) SWIG_fail
;
4084 resultobj
= SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result
));
4091 SWIGINTERN PyObject
*_wrap_Colour_Alpha(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4092 PyObject
*resultobj
= 0;
4093 wxColour
*arg1
= (wxColour
*) 0 ;
4097 PyObject
*swig_obj
[1] ;
4099 if (!args
) SWIG_fail
;
4101 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4102 if (!SWIG_IsOK(res1
)) {
4103 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Alpha" "', expected argument " "1"" of type '" "wxColour *""'");
4105 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4108 result
= (byte
)(arg1
)->Alpha();
4109 wxPyEndAllowThreads(__tstate
);
4110 if (PyErr_Occurred()) SWIG_fail
;
4112 resultobj
= SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result
));
4119 SWIGINTERN PyObject
*_wrap_Colour_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4120 PyObject
*resultobj
= 0;
4121 wxColour
*arg1
= (wxColour
*) 0 ;
4125 PyObject
*swig_obj
[1] ;
4127 if (!args
) SWIG_fail
;
4129 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4130 if (!SWIG_IsOK(res1
)) {
4131 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_IsOk" "', expected argument " "1"" of type '" "wxColour *""'");
4133 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4136 result
= (bool)(arg1
)->IsOk();
4137 wxPyEndAllowThreads(__tstate
);
4138 if (PyErr_Occurred()) SWIG_fail
;
4141 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4149 SWIGINTERN PyObject
*_wrap_Colour_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4150 PyObject
*resultobj
= 0;
4151 wxColour
*arg1
= (wxColour
*) 0 ;
4155 byte arg5
= (byte
) wxALPHA_OPAQUE
;
4158 unsigned char val2
;
4160 unsigned char val3
;
4162 unsigned char val4
;
4164 unsigned char val5
;
4166 PyObject
* obj0
= 0 ;
4167 PyObject
* obj1
= 0 ;
4168 PyObject
* obj2
= 0 ;
4169 PyObject
* obj3
= 0 ;
4170 PyObject
* obj4
= 0 ;
4171 char * kwnames
[] = {
4172 (char *) "self",(char *) "red",(char *) "green",(char *) "blue",(char *) "alpha", NULL
4175 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:Colour_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
4176 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4177 if (!SWIG_IsOK(res1
)) {
4178 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Set" "', expected argument " "1"" of type '" "wxColour *""'");
4180 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4181 ecode2
= SWIG_AsVal_unsigned_SS_char(obj1
, &val2
);
4182 if (!SWIG_IsOK(ecode2
)) {
4183 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Colour_Set" "', expected argument " "2"" of type '" "byte""'");
4185 arg2
= static_cast< byte
>(val2
);
4186 ecode3
= SWIG_AsVal_unsigned_SS_char(obj2
, &val3
);
4187 if (!SWIG_IsOK(ecode3
)) {
4188 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Colour_Set" "', expected argument " "3"" of type '" "byte""'");
4190 arg3
= static_cast< byte
>(val3
);
4191 ecode4
= SWIG_AsVal_unsigned_SS_char(obj3
, &val4
);
4192 if (!SWIG_IsOK(ecode4
)) {
4193 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Colour_Set" "', expected argument " "4"" of type '" "byte""'");
4195 arg4
= static_cast< byte
>(val4
);
4197 ecode5
= SWIG_AsVal_unsigned_SS_char(obj4
, &val5
);
4198 if (!SWIG_IsOK(ecode5
)) {
4199 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Colour_Set" "', expected argument " "5"" of type '" "byte""'");
4201 arg5
= static_cast< byte
>(val5
);
4204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4205 (arg1
)->Set(arg2
,arg3
,arg4
,arg5
);
4206 wxPyEndAllowThreads(__tstate
);
4207 if (PyErr_Occurred()) SWIG_fail
;
4209 resultobj
= SWIG_Py_Void();
4216 SWIGINTERN PyObject
*_wrap_Colour_SetRGB(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4217 PyObject
*resultobj
= 0;
4218 wxColour
*arg1
= (wxColour
*) 0 ;
4219 unsigned long arg2
;
4222 unsigned long val2
;
4224 PyObject
* obj0
= 0 ;
4225 PyObject
* obj1
= 0 ;
4226 char * kwnames
[] = {
4227 (char *) "self",(char *) "colRGB", NULL
4230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Colour_SetRGB",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4232 if (!SWIG_IsOK(res1
)) {
4233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_SetRGB" "', expected argument " "1"" of type '" "wxColour *""'");
4235 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4236 ecode2
= SWIG_AsVal_unsigned_SS_long(obj1
, &val2
);
4237 if (!SWIG_IsOK(ecode2
)) {
4238 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Colour_SetRGB" "', expected argument " "2"" of type '" "unsigned long""'");
4240 arg2
= static_cast< unsigned long >(val2
);
4242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4244 wxPyEndAllowThreads(__tstate
);
4245 if (PyErr_Occurred()) SWIG_fail
;
4247 resultobj
= SWIG_Py_Void();
4254 SWIGINTERN PyObject
*_wrap_Colour_SetFromName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4255 PyObject
*resultobj
= 0;
4256 wxColour
*arg1
= (wxColour
*) 0 ;
4257 wxString
*arg2
= 0 ;
4260 bool temp2
= false ;
4261 PyObject
* obj0
= 0 ;
4262 PyObject
* obj1
= 0 ;
4263 char * kwnames
[] = {
4264 (char *) "self",(char *) "colourName", NULL
4267 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Colour_SetFromName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4268 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4269 if (!SWIG_IsOK(res1
)) {
4270 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_SetFromName" "', expected argument " "1"" of type '" "wxColour *""'");
4272 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4274 arg2
= wxString_in_helper(obj1
);
4275 if (arg2
== NULL
) SWIG_fail
;
4279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4280 (arg1
)->Set((wxString
const &)*arg2
);
4281 wxPyEndAllowThreads(__tstate
);
4282 if (PyErr_Occurred()) SWIG_fail
;
4284 resultobj
= SWIG_Py_Void();
4299 SWIGINTERN PyObject
*_wrap_Colour_GetAsString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4300 PyObject
*resultobj
= 0;
4301 wxColour
*arg1
= (wxColour
*) 0 ;
4302 long arg2
= (long) wxC2S_NAME
|wxC2S_CSS_SYNTAX
;
4308 PyObject
* obj0
= 0 ;
4309 PyObject
* obj1
= 0 ;
4310 char * kwnames
[] = {
4311 (char *) "self",(char *) "flags", NULL
4314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Colour_GetAsString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4315 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4316 if (!SWIG_IsOK(res1
)) {
4317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_GetAsString" "', expected argument " "1"" of type '" "wxColour const *""'");
4319 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4321 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
4322 if (!SWIG_IsOK(ecode2
)) {
4323 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Colour_GetAsString" "', expected argument " "2"" of type '" "long""'");
4325 arg2
= static_cast< long >(val2
);
4328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4329 result
= ((wxColour
const *)arg1
)->GetAsString(arg2
);
4330 wxPyEndAllowThreads(__tstate
);
4331 if (PyErr_Occurred()) SWIG_fail
;
4335 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4337 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4346 SWIGINTERN PyObject
*_wrap_Colour_GetPixel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4347 PyObject
*resultobj
= 0;
4348 wxColour
*arg1
= (wxColour
*) 0 ;
4352 PyObject
*swig_obj
[1] ;
4354 if (!args
) SWIG_fail
;
4356 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4357 if (!SWIG_IsOK(res1
)) {
4358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_GetPixel" "', expected argument " "1"" of type '" "wxColour const *""'");
4360 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4363 result
= (long)((wxColour
const *)arg1
)->GetPixel();
4364 wxPyEndAllowThreads(__tstate
);
4365 if (PyErr_Occurred()) SWIG_fail
;
4367 resultobj
= SWIG_From_long(static_cast< long >(result
));
4374 SWIGINTERN PyObject
*_wrap_Colour___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4375 PyObject
*resultobj
= 0;
4376 wxColour
*arg1
= (wxColour
*) 0 ;
4377 PyObject
*arg2
= (PyObject
*) 0 ;
4381 PyObject
* obj0
= 0 ;
4382 PyObject
* obj1
= 0 ;
4383 char * kwnames
[] = {
4384 (char *) "self",(char *) "other", NULL
4387 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Colour___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4388 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4389 if (!SWIG_IsOK(res1
)) {
4390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour___eq__" "', expected argument " "1"" of type '" "wxColour *""'");
4392 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4395 result
= (bool)wxColour___eq__(arg1
,arg2
);
4396 if (PyErr_Occurred()) SWIG_fail
;
4399 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4407 SWIGINTERN PyObject
*_wrap_Colour___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4408 PyObject
*resultobj
= 0;
4409 wxColour
*arg1
= (wxColour
*) 0 ;
4410 PyObject
*arg2
= (PyObject
*) 0 ;
4414 PyObject
* obj0
= 0 ;
4415 PyObject
* obj1
= 0 ;
4416 char * kwnames
[] = {
4417 (char *) "self",(char *) "other", NULL
4420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Colour___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4422 if (!SWIG_IsOK(res1
)) {
4423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour___ne__" "', expected argument " "1"" of type '" "wxColour *""'");
4425 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4428 result
= (bool)wxColour___ne__(arg1
,arg2
);
4429 if (PyErr_Occurred()) SWIG_fail
;
4432 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4440 SWIGINTERN PyObject
*_wrap_Colour_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4441 PyObject
*resultobj
= 0;
4442 wxColour
*arg1
= (wxColour
*) 0 ;
4443 bool arg2
= (bool) false ;
4444 PyObject
*result
= 0 ;
4449 PyObject
* obj0
= 0 ;
4450 PyObject
* obj1
= 0 ;
4451 char * kwnames
[] = {
4452 (char *) "self",(char *) "includeAlpha", NULL
4455 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Colour_Get",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4456 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4457 if (!SWIG_IsOK(res1
)) {
4458 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_Get" "', expected argument " "1"" of type '" "wxColour *""'");
4460 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4462 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4463 if (!SWIG_IsOK(ecode2
)) {
4464 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Colour_Get" "', expected argument " "2"" of type '" "bool""'");
4466 arg2
= static_cast< bool >(val2
);
4469 result
= (PyObject
*)wxColour_Get(arg1
,arg2
);
4470 if (PyErr_Occurred()) SWIG_fail
;
4479 SWIGINTERN PyObject
*_wrap_Colour_GetRGB(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4480 PyObject
*resultobj
= 0;
4481 wxColour
*arg1
= (wxColour
*) 0 ;
4482 unsigned long result
;
4485 PyObject
*swig_obj
[1] ;
4487 if (!args
) SWIG_fail
;
4489 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColour
, 0 | 0 );
4490 if (!SWIG_IsOK(res1
)) {
4491 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Colour_GetRGB" "', expected argument " "1"" of type '" "wxColour *""'");
4493 arg1
= reinterpret_cast< wxColour
* >(argp1
);
4495 result
= (unsigned long)wxColour_GetRGB(arg1
);
4496 if (PyErr_Occurred()) SWIG_fail
;
4498 resultobj
= SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result
));
4505 SWIGINTERN PyObject
*Colour_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4507 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4508 SWIG_TypeNewClientData(SWIGTYPE_p_wxColour
, SWIG_NewClientData(obj
));
4509 return SWIG_Py_Void();
4512 SWIGINTERN PyObject
*Colour_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4513 return SWIG_Python_InitShadowInstance(args
);
4516 SWIGINTERN PyObject
*_wrap_new_Palette(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4517 PyObject
*resultobj
= 0;
4519 unsigned char *arg2
= (unsigned char *) 0 ;
4520 unsigned char *arg3
= (unsigned char *) 0 ;
4521 unsigned char *arg4
= (unsigned char *) 0 ;
4522 wxPalette
*result
= 0 ;
4531 PyObject
* obj0
= 0 ;
4532 PyObject
* obj1
= 0 ;
4533 PyObject
* obj2
= 0 ;
4534 PyObject
* obj3
= 0 ;
4535 char * kwnames
[] = {
4536 (char *) "n",(char *) "red",(char *) "green",(char *) "blue", NULL
4539 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_Palette",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
4540 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
4541 if (!SWIG_IsOK(ecode1
)) {
4542 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Palette" "', expected argument " "1"" of type '" "int""'");
4544 arg1
= static_cast< int >(val1
);
4545 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_unsigned_char
, 0 | 0 );
4546 if (!SWIG_IsOK(res2
)) {
4547 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_Palette" "', expected argument " "2"" of type '" "unsigned char const *""'");
4549 arg2
= reinterpret_cast< unsigned char * >(argp2
);
4550 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_unsigned_char
, 0 | 0 );
4551 if (!SWIG_IsOK(res3
)) {
4552 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_Palette" "', expected argument " "3"" of type '" "unsigned char const *""'");
4554 arg3
= reinterpret_cast< unsigned char * >(argp3
);
4555 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_unsigned_char
, 0 | 0 );
4556 if (!SWIG_IsOK(res4
)) {
4557 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_Palette" "', expected argument " "4"" of type '" "unsigned char const *""'");
4559 arg4
= reinterpret_cast< unsigned char * >(argp4
);
4561 if (!wxPyCheckForApp()) SWIG_fail
;
4562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4563 result
= (wxPalette
*)new wxPalette(arg1
,(unsigned char const *)arg2
,(unsigned char const *)arg3
,(unsigned char const *)arg4
);
4564 wxPyEndAllowThreads(__tstate
);
4565 if (PyErr_Occurred()) SWIG_fail
;
4567 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPalette
, SWIG_POINTER_NEW
| 0 );
4574 SWIGINTERN PyObject
*_wrap_delete_Palette(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4575 PyObject
*resultobj
= 0;
4576 wxPalette
*arg1
= (wxPalette
*) 0 ;
4579 PyObject
*swig_obj
[1] ;
4581 if (!args
) SWIG_fail
;
4583 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPalette
, SWIG_POINTER_DISOWN
| 0 );
4584 if (!SWIG_IsOK(res1
)) {
4585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Palette" "', expected argument " "1"" of type '" "wxPalette *""'");
4587 arg1
= reinterpret_cast< wxPalette
* >(argp1
);
4589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4592 wxPyEndAllowThreads(__tstate
);
4593 if (PyErr_Occurred()) SWIG_fail
;
4595 resultobj
= SWIG_Py_Void();
4602 SWIGINTERN PyObject
*_wrap_Palette_GetPixel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4603 PyObject
*resultobj
= 0;
4604 wxPalette
*arg1
= (wxPalette
*) 0 ;
4611 unsigned char val2
;
4613 unsigned char val3
;
4615 unsigned char val4
;
4617 PyObject
* obj0
= 0 ;
4618 PyObject
* obj1
= 0 ;
4619 PyObject
* obj2
= 0 ;
4620 PyObject
* obj3
= 0 ;
4621 char * kwnames
[] = {
4622 (char *) "self",(char *) "red",(char *) "green",(char *) "blue", NULL
4625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:Palette_GetPixel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
4626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPalette
, 0 | 0 );
4627 if (!SWIG_IsOK(res1
)) {
4628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Palette_GetPixel" "', expected argument " "1"" of type '" "wxPalette *""'");
4630 arg1
= reinterpret_cast< wxPalette
* >(argp1
);
4631 ecode2
= SWIG_AsVal_unsigned_SS_char(obj1
, &val2
);
4632 if (!SWIG_IsOK(ecode2
)) {
4633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Palette_GetPixel" "', expected argument " "2"" of type '" "byte""'");
4635 arg2
= static_cast< byte
>(val2
);
4636 ecode3
= SWIG_AsVal_unsigned_SS_char(obj2
, &val3
);
4637 if (!SWIG_IsOK(ecode3
)) {
4638 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Palette_GetPixel" "', expected argument " "3"" of type '" "byte""'");
4640 arg3
= static_cast< byte
>(val3
);
4641 ecode4
= SWIG_AsVal_unsigned_SS_char(obj3
, &val4
);
4642 if (!SWIG_IsOK(ecode4
)) {
4643 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Palette_GetPixel" "', expected argument " "4"" of type '" "byte""'");
4645 arg4
= static_cast< byte
>(val4
);
4647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4648 result
= (int)(arg1
)->GetPixel(arg2
,arg3
,arg4
);
4649 wxPyEndAllowThreads(__tstate
);
4650 if (PyErr_Occurred()) SWIG_fail
;
4652 resultobj
= SWIG_From_int(static_cast< int >(result
));
4659 SWIGINTERN PyObject
*_wrap_Palette_GetRGB(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4660 PyObject
*resultobj
= 0;
4661 wxPalette
*arg1
= (wxPalette
*) 0 ;
4663 byte
*arg3
= (byte
*) 0 ;
4664 byte
*arg4
= (byte
*) 0 ;
4665 byte
*arg5
= (byte
*) 0 ;
4672 int res3
= SWIG_TMPOBJ
;
4674 int res4
= SWIG_TMPOBJ
;
4676 int res5
= SWIG_TMPOBJ
;
4677 PyObject
* obj0
= 0 ;
4678 PyObject
* obj1
= 0 ;
4679 char * kwnames
[] = {
4680 (char *) "self",(char *) "pixel", NULL
4686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Palette_GetRGB",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPalette
, 0 | 0 );
4688 if (!SWIG_IsOK(res1
)) {
4689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Palette_GetRGB" "', expected argument " "1"" of type '" "wxPalette *""'");
4691 arg1
= reinterpret_cast< wxPalette
* >(argp1
);
4692 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4693 if (!SWIG_IsOK(ecode2
)) {
4694 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Palette_GetRGB" "', expected argument " "2"" of type '" "int""'");
4696 arg2
= static_cast< int >(val2
);
4698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4699 result
= (bool)(arg1
)->GetRGB(arg2
,arg3
,arg4
,arg5
);
4700 wxPyEndAllowThreads(__tstate
);
4701 if (PyErr_Occurred()) SWIG_fail
;
4704 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4706 if (SWIG_IsTmpObj(res3
)) {
4707 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_unsigned_SS_char((*arg3
)));
4709 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4710 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_unsigned_char
, new_flags
));
4712 if (SWIG_IsTmpObj(res4
)) {
4713 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_unsigned_SS_char((*arg4
)));
4715 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4716 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_unsigned_char
, new_flags
));
4718 if (SWIG_IsTmpObj(res5
)) {
4719 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_unsigned_SS_char((*arg5
)));
4721 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4722 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_unsigned_char
, new_flags
));
4730 SWIGINTERN PyObject
*_wrap_Palette_GetColoursCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4731 PyObject
*resultobj
= 0;
4732 wxPalette
*arg1
= (wxPalette
*) 0 ;
4736 PyObject
*swig_obj
[1] ;
4738 if (!args
) SWIG_fail
;
4740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPalette
, 0 | 0 );
4741 if (!SWIG_IsOK(res1
)) {
4742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Palette_GetColoursCount" "', expected argument " "1"" of type '" "wxPalette const *""'");
4744 arg1
= reinterpret_cast< wxPalette
* >(argp1
);
4746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4747 result
= (int)((wxPalette
const *)arg1
)->GetColoursCount();
4748 wxPyEndAllowThreads(__tstate
);
4749 if (PyErr_Occurred()) SWIG_fail
;
4751 resultobj
= SWIG_From_int(static_cast< int >(result
));
4758 SWIGINTERN PyObject
*_wrap_Palette_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4759 PyObject
*resultobj
= 0;
4760 wxPalette
*arg1
= (wxPalette
*) 0 ;
4764 PyObject
*swig_obj
[1] ;
4766 if (!args
) SWIG_fail
;
4768 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPalette
, 0 | 0 );
4769 if (!SWIG_IsOK(res1
)) {
4770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Palette_IsOk" "', expected argument " "1"" of type '" "wxPalette *""'");
4772 arg1
= reinterpret_cast< wxPalette
* >(argp1
);
4774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4775 result
= (bool)(arg1
)->IsOk();
4776 wxPyEndAllowThreads(__tstate
);
4777 if (PyErr_Occurred()) SWIG_fail
;
4780 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4788 SWIGINTERN PyObject
*Palette_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4790 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4791 SWIG_TypeNewClientData(SWIGTYPE_p_wxPalette
, SWIG_NewClientData(obj
));
4792 return SWIG_Py_Void();
4795 SWIGINTERN PyObject
*Palette_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4796 return SWIG_Python_InitShadowInstance(args
);
4799 SWIGINTERN PyObject
*_wrap_new_Pen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4800 PyObject
*resultobj
= 0;
4801 wxColour
*arg1
= 0 ;
4802 int arg2
= (int) 1 ;
4803 int arg3
= (int) wxSOLID
;
4810 PyObject
* obj0
= 0 ;
4811 PyObject
* obj1
= 0 ;
4812 PyObject
* obj2
= 0 ;
4813 char * kwnames
[] = {
4814 (char *) "colour",(char *) "width",(char *) "style", NULL
4817 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:new_Pen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4820 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
4823 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4824 if (!SWIG_IsOK(ecode2
)) {
4825 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Pen" "', expected argument " "2"" of type '" "int""'");
4827 arg2
= static_cast< int >(val2
);
4830 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4831 if (!SWIG_IsOK(ecode3
)) {
4832 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Pen" "', expected argument " "3"" of type '" "int""'");
4834 arg3
= static_cast< int >(val3
);
4837 if (!wxPyCheckForApp()) SWIG_fail
;
4838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4839 result
= (wxPen
*)new wxPen(*arg1
,arg2
,arg3
);
4840 wxPyEndAllowThreads(__tstate
);
4841 if (PyErr_Occurred()) SWIG_fail
;
4843 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPen
, SWIG_POINTER_NEW
| 0 );
4850 SWIGINTERN PyObject
*_wrap_delete_Pen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4851 PyObject
*resultobj
= 0;
4852 wxPen
*arg1
= (wxPen
*) 0 ;
4855 PyObject
*swig_obj
[1] ;
4857 if (!args
) SWIG_fail
;
4859 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, SWIG_POINTER_DISOWN
| 0 );
4860 if (!SWIG_IsOK(res1
)) {
4861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Pen" "', expected argument " "1"" of type '" "wxPen *""'");
4863 arg1
= reinterpret_cast< wxPen
* >(argp1
);
4865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4868 wxPyEndAllowThreads(__tstate
);
4869 if (PyErr_Occurred()) SWIG_fail
;
4871 resultobj
= SWIG_Py_Void();
4878 SWIGINTERN PyObject
*_wrap_Pen_GetCap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4879 PyObject
*resultobj
= 0;
4880 wxPen
*arg1
= (wxPen
*) 0 ;
4884 PyObject
*swig_obj
[1] ;
4886 if (!args
) SWIG_fail
;
4888 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
4889 if (!SWIG_IsOK(res1
)) {
4890 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetCap" "', expected argument " "1"" of type '" "wxPen *""'");
4892 arg1
= reinterpret_cast< wxPen
* >(argp1
);
4894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4895 result
= (int)(arg1
)->GetCap();
4896 wxPyEndAllowThreads(__tstate
);
4897 if (PyErr_Occurred()) SWIG_fail
;
4899 resultobj
= SWIG_From_int(static_cast< int >(result
));
4906 SWIGINTERN PyObject
*_wrap_Pen_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4907 PyObject
*resultobj
= 0;
4908 wxPen
*arg1
= (wxPen
*) 0 ;
4912 PyObject
*swig_obj
[1] ;
4914 if (!args
) SWIG_fail
;
4916 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
4917 if (!SWIG_IsOK(res1
)) {
4918 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetColour" "', expected argument " "1"" of type '" "wxPen *""'");
4920 arg1
= reinterpret_cast< wxPen
* >(argp1
);
4922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4923 result
= (arg1
)->GetColour();
4924 wxPyEndAllowThreads(__tstate
);
4925 if (PyErr_Occurred()) SWIG_fail
;
4927 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
4934 SWIGINTERN PyObject
*_wrap_Pen_GetJoin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4935 PyObject
*resultobj
= 0;
4936 wxPen
*arg1
= (wxPen
*) 0 ;
4940 PyObject
*swig_obj
[1] ;
4942 if (!args
) SWIG_fail
;
4944 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
4945 if (!SWIG_IsOK(res1
)) {
4946 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetJoin" "', expected argument " "1"" of type '" "wxPen *""'");
4948 arg1
= reinterpret_cast< wxPen
* >(argp1
);
4950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4951 result
= (int)(arg1
)->GetJoin();
4952 wxPyEndAllowThreads(__tstate
);
4953 if (PyErr_Occurred()) SWIG_fail
;
4955 resultobj
= SWIG_From_int(static_cast< int >(result
));
4962 SWIGINTERN PyObject
*_wrap_Pen_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4963 PyObject
*resultobj
= 0;
4964 wxPen
*arg1
= (wxPen
*) 0 ;
4968 PyObject
*swig_obj
[1] ;
4970 if (!args
) SWIG_fail
;
4972 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
4973 if (!SWIG_IsOK(res1
)) {
4974 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetStyle" "', expected argument " "1"" of type '" "wxPen *""'");
4976 arg1
= reinterpret_cast< wxPen
* >(argp1
);
4978 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4979 result
= (int)(arg1
)->GetStyle();
4980 wxPyEndAllowThreads(__tstate
);
4981 if (PyErr_Occurred()) SWIG_fail
;
4983 resultobj
= SWIG_From_int(static_cast< int >(result
));
4990 SWIGINTERN PyObject
*_wrap_Pen_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4991 PyObject
*resultobj
= 0;
4992 wxPen
*arg1
= (wxPen
*) 0 ;
4996 PyObject
*swig_obj
[1] ;
4998 if (!args
) SWIG_fail
;
5000 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5001 if (!SWIG_IsOK(res1
)) {
5002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetWidth" "', expected argument " "1"" of type '" "wxPen *""'");
5004 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5007 result
= (int)(arg1
)->GetWidth();
5008 wxPyEndAllowThreads(__tstate
);
5009 if (PyErr_Occurred()) SWIG_fail
;
5011 resultobj
= SWIG_From_int(static_cast< int >(result
));
5018 SWIGINTERN PyObject
*_wrap_Pen_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5019 PyObject
*resultobj
= 0;
5020 wxPen
*arg1
= (wxPen
*) 0 ;
5024 PyObject
*swig_obj
[1] ;
5026 if (!args
) SWIG_fail
;
5028 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5029 if (!SWIG_IsOK(res1
)) {
5030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_IsOk" "', expected argument " "1"" of type '" "wxPen *""'");
5032 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5035 result
= (bool)(arg1
)->IsOk();
5036 wxPyEndAllowThreads(__tstate
);
5037 if (PyErr_Occurred()) SWIG_fail
;
5040 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5048 SWIGINTERN PyObject
*_wrap_Pen_SetCap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5049 PyObject
*resultobj
= 0;
5050 wxPen
*arg1
= (wxPen
*) 0 ;
5056 PyObject
* obj0
= 0 ;
5057 PyObject
* obj1
= 0 ;
5058 char * kwnames
[] = {
5059 (char *) "self",(char *) "cap_style", NULL
5062 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetCap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5063 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5064 if (!SWIG_IsOK(res1
)) {
5065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetCap" "', expected argument " "1"" of type '" "wxPen *""'");
5067 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5068 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5069 if (!SWIG_IsOK(ecode2
)) {
5070 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Pen_SetCap" "', expected argument " "2"" of type '" "int""'");
5072 arg2
= static_cast< int >(val2
);
5074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5075 (arg1
)->SetCap(arg2
);
5076 wxPyEndAllowThreads(__tstate
);
5077 if (PyErr_Occurred()) SWIG_fail
;
5079 resultobj
= SWIG_Py_Void();
5086 SWIGINTERN PyObject
*_wrap_Pen_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5087 PyObject
*resultobj
= 0;
5088 wxPen
*arg1
= (wxPen
*) 0 ;
5089 wxColour
*arg2
= 0 ;
5093 PyObject
* obj0
= 0 ;
5094 PyObject
* obj1
= 0 ;
5095 char * kwnames
[] = {
5096 (char *) "self",(char *) "colour", NULL
5099 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5100 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5101 if (!SWIG_IsOK(res1
)) {
5102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetColour" "', expected argument " "1"" of type '" "wxPen *""'");
5104 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5107 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
5110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5111 (arg1
)->SetColour(*arg2
);
5112 wxPyEndAllowThreads(__tstate
);
5113 if (PyErr_Occurred()) SWIG_fail
;
5115 resultobj
= SWIG_Py_Void();
5122 SWIGINTERN PyObject
*_wrap_Pen_SetJoin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5123 PyObject
*resultobj
= 0;
5124 wxPen
*arg1
= (wxPen
*) 0 ;
5130 PyObject
* obj0
= 0 ;
5131 PyObject
* obj1
= 0 ;
5132 char * kwnames
[] = {
5133 (char *) "self",(char *) "join_style", NULL
5136 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetJoin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5137 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5138 if (!SWIG_IsOK(res1
)) {
5139 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetJoin" "', expected argument " "1"" of type '" "wxPen *""'");
5141 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5142 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5143 if (!SWIG_IsOK(ecode2
)) {
5144 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Pen_SetJoin" "', expected argument " "2"" of type '" "int""'");
5146 arg2
= static_cast< int >(val2
);
5148 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5149 (arg1
)->SetJoin(arg2
);
5150 wxPyEndAllowThreads(__tstate
);
5151 if (PyErr_Occurred()) SWIG_fail
;
5153 resultobj
= SWIG_Py_Void();
5160 SWIGINTERN PyObject
*_wrap_Pen_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5161 PyObject
*resultobj
= 0;
5162 wxPen
*arg1
= (wxPen
*) 0 ;
5168 PyObject
* obj0
= 0 ;
5169 PyObject
* obj1
= 0 ;
5170 char * kwnames
[] = {
5171 (char *) "self",(char *) "style", NULL
5174 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5175 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5176 if (!SWIG_IsOK(res1
)) {
5177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetStyle" "', expected argument " "1"" of type '" "wxPen *""'");
5179 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5180 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5181 if (!SWIG_IsOK(ecode2
)) {
5182 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Pen_SetStyle" "', expected argument " "2"" of type '" "int""'");
5184 arg2
= static_cast< int >(val2
);
5186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5187 (arg1
)->SetStyle(arg2
);
5188 wxPyEndAllowThreads(__tstate
);
5189 if (PyErr_Occurred()) SWIG_fail
;
5191 resultobj
= SWIG_Py_Void();
5198 SWIGINTERN PyObject
*_wrap_Pen_SetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5199 PyObject
*resultobj
= 0;
5200 wxPen
*arg1
= (wxPen
*) 0 ;
5206 PyObject
* obj0
= 0 ;
5207 PyObject
* obj1
= 0 ;
5208 char * kwnames
[] = {
5209 (char *) "self",(char *) "width", NULL
5212 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5213 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5214 if (!SWIG_IsOK(res1
)) {
5215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetWidth" "', expected argument " "1"" of type '" "wxPen *""'");
5217 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5218 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5219 if (!SWIG_IsOK(ecode2
)) {
5220 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Pen_SetWidth" "', expected argument " "2"" of type '" "int""'");
5222 arg2
= static_cast< int >(val2
);
5224 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5225 (arg1
)->SetWidth(arg2
);
5226 wxPyEndAllowThreads(__tstate
);
5227 if (PyErr_Occurred()) SWIG_fail
;
5229 resultobj
= SWIG_Py_Void();
5236 SWIGINTERN PyObject
*_wrap_Pen_SetDashes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5237 PyObject
*resultobj
= 0;
5238 wxPen
*arg1
= (wxPen
*) 0 ;
5240 wxDash
*arg3
= (wxDash
*) 0 ;
5243 PyObject
* obj0
= 0 ;
5244 PyObject
* obj1
= 0 ;
5245 char * kwnames
[] = {
5246 (char *) "self",(char *) "dashes", NULL
5249 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen_SetDashes",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5250 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5251 if (!SWIG_IsOK(res1
)) {
5252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_SetDashes" "', expected argument " "1"" of type '" "wxPen *""'");
5254 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5256 arg2
= PyList_Size(obj1
);
5257 arg3
= (wxDash
*)byte_LIST_helper(obj1
);
5258 if (arg3
== NULL
) SWIG_fail
;
5261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5262 (arg1
)->SetDashes(arg2
,arg3
);
5263 wxPyEndAllowThreads(__tstate
);
5264 if (PyErr_Occurred()) SWIG_fail
;
5266 resultobj
= SWIG_Py_Void();
5268 if (arg3
) delete [] arg3
;
5273 if (arg3
) delete [] arg3
;
5279 SWIGINTERN PyObject
*_wrap_Pen_GetDashes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5280 PyObject
*resultobj
= 0;
5281 wxPen
*arg1
= (wxPen
*) 0 ;
5282 PyObject
*result
= 0 ;
5285 PyObject
*swig_obj
[1] ;
5287 if (!args
) SWIG_fail
;
5289 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5290 if (!SWIG_IsOK(res1
)) {
5291 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen_GetDashes" "', expected argument " "1"" of type '" "wxPen *""'");
5293 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5295 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5296 result
= (PyObject
*)wxPen_GetDashes(arg1
);
5297 wxPyEndAllowThreads(__tstate
);
5298 if (PyErr_Occurred()) SWIG_fail
;
5307 SWIGINTERN PyObject
*_wrap_Pen__SetDashes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5308 PyObject
*resultobj
= 0;
5309 wxPen
*arg1
= (wxPen
*) 0 ;
5310 PyObject
*arg2
= (PyObject
*) 0 ;
5311 PyObject
*arg3
= (PyObject
*) 0 ;
5314 PyObject
* obj0
= 0 ;
5315 PyObject
* obj1
= 0 ;
5316 PyObject
* obj2
= 0 ;
5317 char * kwnames
[] = {
5318 (char *) "self",(char *) "_self",(char *) "pyDashes", NULL
5321 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Pen__SetDashes",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5322 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5323 if (!SWIG_IsOK(res1
)) {
5324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen__SetDashes" "', expected argument " "1"" of type '" "wxPen *""'");
5326 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5331 wxPen__SetDashes(arg1
,arg2
,arg3
);
5332 wxPyEndAllowThreads(__tstate
);
5333 if (PyErr_Occurred()) SWIG_fail
;
5335 resultobj
= SWIG_Py_Void();
5342 SWIGINTERN PyObject
*_wrap_Pen___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5343 PyObject
*resultobj
= 0;
5344 wxPen
*arg1
= (wxPen
*) 0 ;
5345 wxPen
*arg2
= (wxPen
*) 0 ;
5351 PyObject
* obj0
= 0 ;
5352 PyObject
* obj1
= 0 ;
5353 char * kwnames
[] = {
5354 (char *) "self",(char *) "other", NULL
5357 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5358 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5359 if (!SWIG_IsOK(res1
)) {
5360 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen___eq__" "', expected argument " "1"" of type '" "wxPen *""'");
5362 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5363 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPen
, 0 | 0 );
5364 if (!SWIG_IsOK(res2
)) {
5365 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Pen___eq__" "', expected argument " "2"" of type '" "wxPen const *""'");
5367 arg2
= reinterpret_cast< wxPen
* >(argp2
);
5369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5370 result
= (bool)wxPen___eq__(arg1
,(wxPen
const *)arg2
);
5371 wxPyEndAllowThreads(__tstate
);
5372 if (PyErr_Occurred()) SWIG_fail
;
5375 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5383 SWIGINTERN PyObject
*_wrap_Pen___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5384 PyObject
*resultobj
= 0;
5385 wxPen
*arg1
= (wxPen
*) 0 ;
5386 wxPen
*arg2
= (wxPen
*) 0 ;
5392 PyObject
* obj0
= 0 ;
5393 PyObject
* obj1
= 0 ;
5394 char * kwnames
[] = {
5395 (char *) "self",(char *) "other", NULL
5398 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Pen___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5399 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPen
, 0 | 0 );
5400 if (!SWIG_IsOK(res1
)) {
5401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Pen___ne__" "', expected argument " "1"" of type '" "wxPen *""'");
5403 arg1
= reinterpret_cast< wxPen
* >(argp1
);
5404 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPen
, 0 | 0 );
5405 if (!SWIG_IsOK(res2
)) {
5406 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Pen___ne__" "', expected argument " "2"" of type '" "wxPen const *""'");
5408 arg2
= reinterpret_cast< wxPen
* >(argp2
);
5410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5411 result
= (bool)wxPen___ne__(arg1
,(wxPen
const *)arg2
);
5412 wxPyEndAllowThreads(__tstate
);
5413 if (PyErr_Occurred()) SWIG_fail
;
5416 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5424 SWIGINTERN PyObject
*Pen_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5426 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5427 SWIG_TypeNewClientData(SWIGTYPE_p_wxPen
, SWIG_NewClientData(obj
));
5428 return SWIG_Py_Void();
5431 SWIGINTERN PyObject
*Pen_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5432 return SWIG_Python_InitShadowInstance(args
);
5435 SWIGINTERN PyObject
*_wrap_new_Brush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5436 PyObject
*resultobj
= 0;
5437 wxColour
*arg1
= 0 ;
5438 int arg2
= (int) wxSOLID
;
5439 wxBrush
*result
= 0 ;
5443 PyObject
* obj0
= 0 ;
5444 PyObject
* obj1
= 0 ;
5445 char * kwnames
[] = {
5446 (char *) "colour",(char *) "style", NULL
5449 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_Brush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5452 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
5455 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5456 if (!SWIG_IsOK(ecode2
)) {
5457 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Brush" "', expected argument " "2"" of type '" "int""'");
5459 arg2
= static_cast< int >(val2
);
5462 if (!wxPyCheckForApp()) SWIG_fail
;
5463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5464 result
= (wxBrush
*)new wxBrush((wxColour
const &)*arg1
,arg2
);
5465 wxPyEndAllowThreads(__tstate
);
5466 if (PyErr_Occurred()) SWIG_fail
;
5468 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBrush
, SWIG_POINTER_NEW
| 0 );
5475 SWIGINTERN PyObject
*_wrap_new_BrushFromBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5476 PyObject
*resultobj
= 0;
5477 wxBitmap
*arg1
= 0 ;
5478 wxBrush
*result
= 0 ;
5481 PyObject
* obj0
= 0 ;
5482 char * kwnames
[] = {
5483 (char *) "stippleBitmap", NULL
5486 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_BrushFromBitmap",kwnames
,&obj0
)) SWIG_fail
;
5487 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
5488 if (!SWIG_IsOK(res1
)) {
5489 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BrushFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
5492 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BrushFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
5494 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
5496 if (!wxPyCheckForApp()) SWIG_fail
;
5497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5498 result
= (wxBrush
*)new wxBrush((wxBitmap
const &)*arg1
);
5499 wxPyEndAllowThreads(__tstate
);
5500 if (PyErr_Occurred()) SWIG_fail
;
5502 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBrush
, SWIG_POINTER_OWN
| 0 );
5509 SWIGINTERN PyObject
*_wrap_delete_Brush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5510 PyObject
*resultobj
= 0;
5511 wxBrush
*arg1
= (wxBrush
*) 0 ;
5514 PyObject
*swig_obj
[1] ;
5516 if (!args
) SWIG_fail
;
5518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, SWIG_POINTER_DISOWN
| 0 );
5519 if (!SWIG_IsOK(res1
)) {
5520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Brush" "', expected argument " "1"" of type '" "wxBrush *""'");
5522 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5527 wxPyEndAllowThreads(__tstate
);
5528 if (PyErr_Occurred()) SWIG_fail
;
5530 resultobj
= SWIG_Py_Void();
5537 SWIGINTERN PyObject
*_wrap_Brush_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5538 PyObject
*resultobj
= 0;
5539 wxBrush
*arg1
= (wxBrush
*) 0 ;
5540 wxColour
*arg2
= 0 ;
5544 PyObject
* obj0
= 0 ;
5545 PyObject
* obj1
= 0 ;
5546 char * kwnames
[] = {
5547 (char *) "self",(char *) "col", NULL
5550 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Brush_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5551 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5552 if (!SWIG_IsOK(res1
)) {
5553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_SetColour" "', expected argument " "1"" of type '" "wxBrush *""'");
5555 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5558 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
5561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5562 (arg1
)->SetColour((wxColour
const &)*arg2
);
5563 wxPyEndAllowThreads(__tstate
);
5564 if (PyErr_Occurred()) SWIG_fail
;
5566 resultobj
= SWIG_Py_Void();
5573 SWIGINTERN PyObject
*_wrap_Brush_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5574 PyObject
*resultobj
= 0;
5575 wxBrush
*arg1
= (wxBrush
*) 0 ;
5581 PyObject
* obj0
= 0 ;
5582 PyObject
* obj1
= 0 ;
5583 char * kwnames
[] = {
5584 (char *) "self",(char *) "style", NULL
5587 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Brush_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5588 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5589 if (!SWIG_IsOK(res1
)) {
5590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_SetStyle" "', expected argument " "1"" of type '" "wxBrush *""'");
5592 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5593 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5594 if (!SWIG_IsOK(ecode2
)) {
5595 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Brush_SetStyle" "', expected argument " "2"" of type '" "int""'");
5597 arg2
= static_cast< int >(val2
);
5599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5600 (arg1
)->SetStyle(arg2
);
5601 wxPyEndAllowThreads(__tstate
);
5602 if (PyErr_Occurred()) SWIG_fail
;
5604 resultobj
= SWIG_Py_Void();
5611 SWIGINTERN PyObject
*_wrap_Brush_SetStipple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5612 PyObject
*resultobj
= 0;
5613 wxBrush
*arg1
= (wxBrush
*) 0 ;
5614 wxBitmap
*arg2
= 0 ;
5619 PyObject
* obj0
= 0 ;
5620 PyObject
* obj1
= 0 ;
5621 char * kwnames
[] = {
5622 (char *) "self",(char *) "stipple", NULL
5625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Brush_SetStipple",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5627 if (!SWIG_IsOK(res1
)) {
5628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_SetStipple" "', expected argument " "1"" of type '" "wxBrush *""'");
5630 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5631 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
5632 if (!SWIG_IsOK(res2
)) {
5633 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Brush_SetStipple" "', expected argument " "2"" of type '" "wxBitmap const &""'");
5636 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Brush_SetStipple" "', expected argument " "2"" of type '" "wxBitmap const &""'");
5638 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
5640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5641 (arg1
)->SetStipple((wxBitmap
const &)*arg2
);
5642 wxPyEndAllowThreads(__tstate
);
5643 if (PyErr_Occurred()) SWIG_fail
;
5645 resultobj
= SWIG_Py_Void();
5652 SWIGINTERN PyObject
*_wrap_Brush_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5653 PyObject
*resultobj
= 0;
5654 wxBrush
*arg1
= (wxBrush
*) 0 ;
5658 PyObject
*swig_obj
[1] ;
5660 if (!args
) SWIG_fail
;
5662 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5663 if (!SWIG_IsOK(res1
)) {
5664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_GetColour" "', expected argument " "1"" of type '" "wxBrush const *""'");
5666 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5669 result
= ((wxBrush
const *)arg1
)->GetColour();
5670 wxPyEndAllowThreads(__tstate
);
5671 if (PyErr_Occurred()) SWIG_fail
;
5673 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
5680 SWIGINTERN PyObject
*_wrap_Brush_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5681 PyObject
*resultobj
= 0;
5682 wxBrush
*arg1
= (wxBrush
*) 0 ;
5686 PyObject
*swig_obj
[1] ;
5688 if (!args
) SWIG_fail
;
5690 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5691 if (!SWIG_IsOK(res1
)) {
5692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_GetStyle" "', expected argument " "1"" of type '" "wxBrush const *""'");
5694 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5696 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5697 result
= (int)((wxBrush
const *)arg1
)->GetStyle();
5698 wxPyEndAllowThreads(__tstate
);
5699 if (PyErr_Occurred()) SWIG_fail
;
5701 resultobj
= SWIG_From_int(static_cast< int >(result
));
5708 SWIGINTERN PyObject
*_wrap_Brush_GetStipple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5709 PyObject
*resultobj
= 0;
5710 wxBrush
*arg1
= (wxBrush
*) 0 ;
5711 wxBitmap
*result
= 0 ;
5714 PyObject
*swig_obj
[1] ;
5716 if (!args
) SWIG_fail
;
5718 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5719 if (!SWIG_IsOK(res1
)) {
5720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_GetStipple" "', expected argument " "1"" of type '" "wxBrush const *""'");
5722 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5725 result
= (wxBitmap
*)((wxBrush
const *)arg1
)->GetStipple();
5726 wxPyEndAllowThreads(__tstate
);
5727 if (PyErr_Occurred()) SWIG_fail
;
5729 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
5736 SWIGINTERN PyObject
*_wrap_Brush_IsHatch(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5737 PyObject
*resultobj
= 0;
5738 wxBrush
*arg1
= (wxBrush
*) 0 ;
5742 PyObject
*swig_obj
[1] ;
5744 if (!args
) SWIG_fail
;
5746 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5747 if (!SWIG_IsOK(res1
)) {
5748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_IsHatch" "', expected argument " "1"" of type '" "wxBrush const *""'");
5750 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5753 result
= (bool)((wxBrush
const *)arg1
)->IsHatch();
5754 wxPyEndAllowThreads(__tstate
);
5755 if (PyErr_Occurred()) SWIG_fail
;
5758 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5766 SWIGINTERN PyObject
*_wrap_Brush_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5767 PyObject
*resultobj
= 0;
5768 wxBrush
*arg1
= (wxBrush
*) 0 ;
5772 PyObject
*swig_obj
[1] ;
5774 if (!args
) SWIG_fail
;
5776 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5777 if (!SWIG_IsOK(res1
)) {
5778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_IsOk" "', expected argument " "1"" of type '" "wxBrush *""'");
5780 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5783 result
= (bool)(arg1
)->IsOk();
5784 wxPyEndAllowThreads(__tstate
);
5785 if (PyErr_Occurred()) SWIG_fail
;
5788 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5796 SWIGINTERN PyObject
*_wrap_Brush_MacGetTheme(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5797 PyObject
*resultobj
= 0;
5798 wxBrush
*arg1
= (wxBrush
*) 0 ;
5802 PyObject
*swig_obj
[1] ;
5804 if (!args
) SWIG_fail
;
5806 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5807 if (!SWIG_IsOK(res1
)) {
5808 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_MacGetTheme" "', expected argument " "1"" of type '" "wxBrush *""'");
5810 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5813 result
= (short)(arg1
)->MacGetTheme();
5814 wxPyEndAllowThreads(__tstate
);
5815 if (PyErr_Occurred()) SWIG_fail
;
5817 resultobj
= SWIG_From_short(static_cast< short >(result
));
5824 SWIGINTERN PyObject
*_wrap_Brush_MacSetTheme(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5825 PyObject
*resultobj
= 0;
5826 wxBrush
*arg1
= (wxBrush
*) 0 ;
5832 PyObject
* obj0
= 0 ;
5833 PyObject
* obj1
= 0 ;
5834 char * kwnames
[] = {
5835 (char *) "self",(char *) "macThemeBrush", NULL
5838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Brush_MacSetTheme",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrush
, 0 | 0 );
5840 if (!SWIG_IsOK(res1
)) {
5841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Brush_MacSetTheme" "', expected argument " "1"" of type '" "wxBrush *""'");
5843 arg1
= reinterpret_cast< wxBrush
* >(argp1
);
5844 ecode2
= SWIG_AsVal_short(obj1
, &val2
);
5845 if (!SWIG_IsOK(ecode2
)) {
5846 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Brush_MacSetTheme" "', expected argument " "2"" of type '" "short""'");
5848 arg2
= static_cast< short >(val2
);
5850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5851 (arg1
)->MacSetTheme(arg2
);
5852 wxPyEndAllowThreads(__tstate
);
5853 if (PyErr_Occurred()) SWIG_fail
;
5855 resultobj
= SWIG_Py_Void();
5862 SWIGINTERN PyObject
*Brush_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5864 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5865 SWIG_TypeNewClientData(SWIGTYPE_p_wxBrush
, SWIG_NewClientData(obj
));
5866 return SWIG_Py_Void();
5869 SWIGINTERN PyObject
*Brush_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5870 return SWIG_Python_InitShadowInstance(args
);
5873 SWIGINTERN PyObject
*_wrap_new_Bitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5874 PyObject
*resultobj
= 0;
5875 wxString
*arg1
= 0 ;
5876 wxBitmapType arg2
= (wxBitmapType
) wxBITMAP_TYPE_ANY
;
5877 wxBitmap
*result
= 0 ;
5878 bool temp1
= false ;
5881 PyObject
* obj0
= 0 ;
5882 PyObject
* obj1
= 0 ;
5883 char * kwnames
[] = {
5884 (char *) "name",(char *) "type", NULL
5887 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_Bitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5889 arg1
= wxString_in_helper(obj0
);
5890 if (arg1
== NULL
) SWIG_fail
;
5894 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5895 if (!SWIG_IsOK(ecode2
)) {
5896 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Bitmap" "', expected argument " "2"" of type '" "wxBitmapType""'");
5898 arg2
= static_cast< wxBitmapType
>(val2
);
5901 if (!wxPyCheckForApp()) SWIG_fail
;
5902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5903 result
= (wxBitmap
*)new wxBitmap((wxString
const &)*arg1
,arg2
);
5904 wxPyEndAllowThreads(__tstate
);
5905 if (PyErr_Occurred()) SWIG_fail
;
5907 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_NEW
| 0 );
5922 SWIGINTERN PyObject
*_wrap_delete_Bitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5923 PyObject
*resultobj
= 0;
5924 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
5927 PyObject
*swig_obj
[1] ;
5929 if (!args
) SWIG_fail
;
5931 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, SWIG_POINTER_DISOWN
| 0 );
5932 if (!SWIG_IsOK(res1
)) {
5933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Bitmap" "', expected argument " "1"" of type '" "wxBitmap *""'");
5935 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
5939 if (PyErr_Occurred()) SWIG_fail
;
5941 resultobj
= SWIG_Py_Void();
5948 SWIGINTERN PyObject
*_wrap_new_EmptyBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5949 PyObject
*resultobj
= 0;
5952 int arg3
= (int) -1 ;
5953 wxBitmap
*result
= 0 ;
5960 PyObject
* obj0
= 0 ;
5961 PyObject
* obj1
= 0 ;
5962 PyObject
* obj2
= 0 ;
5963 char * kwnames
[] = {
5964 (char *) "width",(char *) "height",(char *) "depth", NULL
5967 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:new_EmptyBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5968 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
5969 if (!SWIG_IsOK(ecode1
)) {
5970 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_EmptyBitmap" "', expected argument " "1"" of type '" "int""'");
5972 arg1
= static_cast< int >(val1
);
5973 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5974 if (!SWIG_IsOK(ecode2
)) {
5975 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_EmptyBitmap" "', expected argument " "2"" of type '" "int""'");
5977 arg2
= static_cast< int >(val2
);
5979 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5980 if (!SWIG_IsOK(ecode3
)) {
5981 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_EmptyBitmap" "', expected argument " "3"" of type '" "int""'");
5983 arg3
= static_cast< int >(val3
);
5986 if (!wxPyCheckForApp()) SWIG_fail
;
5987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5988 result
= (wxBitmap
*)new wxBitmap(arg1
,arg2
,arg3
);
5989 wxPyEndAllowThreads(__tstate
);
5990 if (PyErr_Occurred()) SWIG_fail
;
5992 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
5999 SWIGINTERN PyObject
*_wrap_new_BitmapFromIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6000 PyObject
*resultobj
= 0;
6002 wxBitmap
*result
= 0 ;
6005 PyObject
* obj0
= 0 ;
6006 char * kwnames
[] = {
6007 (char *) "icon", NULL
6010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_BitmapFromIcon",kwnames
,&obj0
)) SWIG_fail
;
6011 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxIcon
, 0 | 0);
6012 if (!SWIG_IsOK(res1
)) {
6013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BitmapFromIcon" "', expected argument " "1"" of type '" "wxIcon const &""'");
6016 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BitmapFromIcon" "', expected argument " "1"" of type '" "wxIcon const &""'");
6018 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
6020 if (!wxPyCheckForApp()) SWIG_fail
;
6021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6022 result
= (wxBitmap
*)new wxBitmap((wxIcon
const &)*arg1
);
6023 wxPyEndAllowThreads(__tstate
);
6024 if (PyErr_Occurred()) SWIG_fail
;
6026 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6033 SWIGINTERN PyObject
*_wrap_new_BitmapFromImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6034 PyObject
*resultobj
= 0;
6036 int arg2
= (int) -1 ;
6037 wxBitmap
*result
= 0 ;
6042 PyObject
* obj0
= 0 ;
6043 PyObject
* obj1
= 0 ;
6044 char * kwnames
[] = {
6045 (char *) "image",(char *) "depth", NULL
6048 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_BitmapFromImage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6049 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxImage
, 0 | 0);
6050 if (!SWIG_IsOK(res1
)) {
6051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BitmapFromImage" "', expected argument " "1"" of type '" "wxImage const &""'");
6054 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BitmapFromImage" "', expected argument " "1"" of type '" "wxImage const &""'");
6056 arg1
= reinterpret_cast< wxImage
* >(argp1
);
6058 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6059 if (!SWIG_IsOK(ecode2
)) {
6060 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_BitmapFromImage" "', expected argument " "2"" of type '" "int""'");
6062 arg2
= static_cast< int >(val2
);
6065 if (!wxPyCheckForApp()) SWIG_fail
;
6066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6067 result
= (wxBitmap
*)new wxBitmap((wxImage
const &)*arg1
,arg2
);
6068 wxPyEndAllowThreads(__tstate
);
6069 if (PyErr_Occurred()) SWIG_fail
;
6071 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6078 SWIGINTERN PyObject
*_wrap_new_BitmapFromXPMData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6079 PyObject
*resultobj
= 0;
6080 PyObject
*arg1
= (PyObject
*) 0 ;
6081 wxBitmap
*result
= 0 ;
6082 PyObject
* obj0
= 0 ;
6083 char * kwnames
[] = {
6084 (char *) "listOfStrings", NULL
6087 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_BitmapFromXPMData",kwnames
,&obj0
)) SWIG_fail
;
6090 if (!wxPyCheckForApp()) SWIG_fail
;
6091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6092 result
= (wxBitmap
*)new_wxBitmap(arg1
);
6093 wxPyEndAllowThreads(__tstate
);
6094 if (PyErr_Occurred()) SWIG_fail
;
6096 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6103 SWIGINTERN PyObject
*_wrap_new_BitmapFromBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6104 PyObject
*resultobj
= 0;
6105 PyObject
*arg1
= (PyObject
*) 0 ;
6108 int arg4
= (int) 1 ;
6109 wxBitmap
*result
= 0 ;
6116 PyObject
* obj0
= 0 ;
6117 PyObject
* obj1
= 0 ;
6118 PyObject
* obj2
= 0 ;
6119 PyObject
* obj3
= 0 ;
6120 char * kwnames
[] = {
6121 (char *) "bits",(char *) "width",(char *) "height",(char *) "depth", NULL
6124 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_BitmapFromBits",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6126 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6127 if (!SWIG_IsOK(ecode2
)) {
6128 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_BitmapFromBits" "', expected argument " "2"" of type '" "int""'");
6130 arg2
= static_cast< int >(val2
);
6131 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6132 if (!SWIG_IsOK(ecode3
)) {
6133 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_BitmapFromBits" "', expected argument " "3"" of type '" "int""'");
6135 arg3
= static_cast< int >(val3
);
6137 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
6138 if (!SWIG_IsOK(ecode4
)) {
6139 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_BitmapFromBits" "', expected argument " "4"" of type '" "int""'");
6141 arg4
= static_cast< int >(val4
);
6144 if (!wxPyCheckForApp()) SWIG_fail
;
6145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6146 result
= (wxBitmap
*)new_wxBitmap(arg1
,arg2
,arg3
,arg4
);
6147 wxPyEndAllowThreads(__tstate
);
6148 if (PyErr_Occurred()) SWIG_fail
;
6150 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6157 SWIGINTERN PyObject
*_wrap_Bitmap_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6158 PyObject
*resultobj
= 0;
6159 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6163 PyObject
*swig_obj
[1] ;
6165 if (!args
) SWIG_fail
;
6167 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6168 if (!SWIG_IsOK(res1
)) {
6169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_IsOk" "', expected argument " "1"" of type '" "wxBitmap *""'");
6171 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6173 result
= (bool)(arg1
)->IsOk();
6174 if (PyErr_Occurred()) SWIG_fail
;
6177 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6185 SWIGINTERN PyObject
*_wrap_Bitmap_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6186 PyObject
*resultobj
= 0;
6187 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6191 PyObject
*swig_obj
[1] ;
6193 if (!args
) SWIG_fail
;
6195 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6196 if (!SWIG_IsOK(res1
)) {
6197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetWidth" "', expected argument " "1"" of type '" "wxBitmap *""'");
6199 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6201 result
= (int)(arg1
)->GetWidth();
6202 if (PyErr_Occurred()) SWIG_fail
;
6204 resultobj
= SWIG_From_int(static_cast< int >(result
));
6211 SWIGINTERN PyObject
*_wrap_Bitmap_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6212 PyObject
*resultobj
= 0;
6213 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6217 PyObject
*swig_obj
[1] ;
6219 if (!args
) SWIG_fail
;
6221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6222 if (!SWIG_IsOK(res1
)) {
6223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetHeight" "', expected argument " "1"" of type '" "wxBitmap *""'");
6225 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6227 result
= (int)(arg1
)->GetHeight();
6228 if (PyErr_Occurred()) SWIG_fail
;
6230 resultobj
= SWIG_From_int(static_cast< int >(result
));
6237 SWIGINTERN PyObject
*_wrap_Bitmap_GetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6238 PyObject
*resultobj
= 0;
6239 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6243 PyObject
*swig_obj
[1] ;
6245 if (!args
) SWIG_fail
;
6247 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6248 if (!SWIG_IsOK(res1
)) {
6249 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetDepth" "', expected argument " "1"" of type '" "wxBitmap *""'");
6251 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6253 result
= (int)(arg1
)->GetDepth();
6254 if (PyErr_Occurred()) SWIG_fail
;
6256 resultobj
= SWIG_From_int(static_cast< int >(result
));
6263 SWIGINTERN PyObject
*_wrap_Bitmap_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6264 PyObject
*resultobj
= 0;
6265 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6269 PyObject
*swig_obj
[1] ;
6271 if (!args
) SWIG_fail
;
6273 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6274 if (!SWIG_IsOK(res1
)) {
6275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetSize" "', expected argument " "1"" of type '" "wxBitmap *""'");
6277 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6279 result
= wxBitmap_GetSize(arg1
);
6280 if (PyErr_Occurred()) SWIG_fail
;
6282 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
6289 SWIGINTERN PyObject
*_wrap_Bitmap_ConvertToImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6290 PyObject
*resultobj
= 0;
6291 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6292 SwigValueWrapper
<wxImage
> result
;
6295 PyObject
*swig_obj
[1] ;
6297 if (!args
) SWIG_fail
;
6299 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6300 if (!SWIG_IsOK(res1
)) {
6301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_ConvertToImage" "', expected argument " "1"" of type '" "wxBitmap const *""'");
6303 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6305 result
= ((wxBitmap
const *)arg1
)->ConvertToImage();
6306 if (PyErr_Occurred()) SWIG_fail
;
6308 resultobj
= SWIG_NewPointerObj((new wxImage(static_cast< const wxImage
& >(result
))), SWIGTYPE_p_wxImage
, SWIG_POINTER_OWN
| 0 );
6315 SWIGINTERN PyObject
*_wrap_Bitmap_GetMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6316 PyObject
*resultobj
= 0;
6317 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6318 wxMask
*result
= 0 ;
6321 PyObject
*swig_obj
[1] ;
6323 if (!args
) SWIG_fail
;
6325 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6326 if (!SWIG_IsOK(res1
)) {
6327 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetMask" "', expected argument " "1"" of type '" "wxBitmap const *""'");
6329 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6331 result
= (wxMask
*)((wxBitmap
const *)arg1
)->GetMask();
6332 if (PyErr_Occurred()) SWIG_fail
;
6334 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMask
, 0 | 0 );
6341 SWIGINTERN PyObject
*_wrap_Bitmap_SetMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6342 PyObject
*resultobj
= 0;
6343 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6344 wxMask
*arg2
= (wxMask
*) 0 ;
6348 PyObject
* obj0
= 0 ;
6349 PyObject
* obj1
= 0 ;
6350 char * kwnames
[] = {
6351 (char *) "self",(char *) "mask", NULL
6354 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6355 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6356 if (!SWIG_IsOK(res1
)) {
6357 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetMask" "', expected argument " "1"" of type '" "wxBitmap *""'");
6359 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6360 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxMask
, SWIG_POINTER_DISOWN
| 0 );
6361 if (!SWIG_IsOK(res2
)) {
6362 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Bitmap_SetMask" "', expected argument " "2"" of type '" "wxMask *""'");
6365 (arg1
)->SetMask(arg2
);
6366 if (PyErr_Occurred()) SWIG_fail
;
6368 resultobj
= SWIG_Py_Void();
6375 SWIGINTERN PyObject
*_wrap_Bitmap_SetMaskColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6376 PyObject
*resultobj
= 0;
6377 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6378 wxColour
*arg2
= 0 ;
6382 PyObject
* obj0
= 0 ;
6383 PyObject
* obj1
= 0 ;
6384 char * kwnames
[] = {
6385 (char *) "self",(char *) "colour", NULL
6388 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetMaskColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6389 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6390 if (!SWIG_IsOK(res1
)) {
6391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetMaskColour" "', expected argument " "1"" of type '" "wxBitmap *""'");
6393 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6396 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
6399 wxBitmap_SetMaskColour(arg1
,(wxColour
const &)*arg2
);
6400 if (PyErr_Occurred()) SWIG_fail
;
6402 resultobj
= SWIG_Py_Void();
6409 SWIGINTERN PyObject
*_wrap_Bitmap_GetSubBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6410 PyObject
*resultobj
= 0;
6411 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6413 SwigValueWrapper
<wxBitmap
> result
;
6417 PyObject
* obj0
= 0 ;
6418 PyObject
* obj1
= 0 ;
6419 char * kwnames
[] = {
6420 (char *) "self",(char *) "rect", NULL
6423 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_GetSubBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6424 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6425 if (!SWIG_IsOK(res1
)) {
6426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetSubBitmap" "', expected argument " "1"" of type '" "wxBitmap const *""'");
6428 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6431 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
6434 result
= ((wxBitmap
const *)arg1
)->GetSubBitmap((wxRect
const &)*arg2
);
6435 if (PyErr_Occurred()) SWIG_fail
;
6437 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6444 SWIGINTERN PyObject
*_wrap_Bitmap_SaveFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6445 PyObject
*resultobj
= 0;
6446 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6447 wxString
*arg2
= 0 ;
6449 wxPalette
*arg4
= (wxPalette
*) NULL
;
6453 bool temp2
= false ;
6458 PyObject
* obj0
= 0 ;
6459 PyObject
* obj1
= 0 ;
6460 PyObject
* obj2
= 0 ;
6461 PyObject
* obj3
= 0 ;
6462 char * kwnames
[] = {
6463 (char *) "self",(char *) "name",(char *) "type",(char *) "palette", NULL
6466 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Bitmap_SaveFile",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6467 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6468 if (!SWIG_IsOK(res1
)) {
6469 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SaveFile" "', expected argument " "1"" of type '" "wxBitmap *""'");
6471 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6473 arg2
= wxString_in_helper(obj1
);
6474 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 '" "Bitmap_SaveFile" "', expected argument " "3"" of type '" "wxBitmapType""'");
6481 arg3
= static_cast< wxBitmapType
>(val3
);
6483 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxPalette
, 0 | 0 );
6484 if (!SWIG_IsOK(res4
)) {
6485 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "Bitmap_SaveFile" "', expected argument " "4"" of type '" "wxPalette *""'");
6487 arg4
= reinterpret_cast< wxPalette
* >(argp4
);
6490 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
,arg3
,arg4
);
6491 if (PyErr_Occurred()) SWIG_fail
;
6494 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6510 SWIGINTERN PyObject
*_wrap_Bitmap_LoadFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6511 PyObject
*resultobj
= 0;
6512 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6513 wxString
*arg2
= 0 ;
6518 bool temp2
= false ;
6521 PyObject
* obj0
= 0 ;
6522 PyObject
* obj1
= 0 ;
6523 PyObject
* obj2
= 0 ;
6524 char * kwnames
[] = {
6525 (char *) "self",(char *) "name",(char *) "type", NULL
6528 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Bitmap_LoadFile",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6529 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6530 if (!SWIG_IsOK(res1
)) {
6531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_LoadFile" "', expected argument " "1"" of type '" "wxBitmap *""'");
6533 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6535 arg2
= wxString_in_helper(obj1
);
6536 if (arg2
== NULL
) SWIG_fail
;
6539 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6540 if (!SWIG_IsOK(ecode3
)) {
6541 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Bitmap_LoadFile" "', expected argument " "3"" of type '" "wxBitmapType""'");
6543 arg3
= static_cast< wxBitmapType
>(val3
);
6545 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
,arg3
);
6546 if (PyErr_Occurred()) SWIG_fail
;
6549 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6565 SWIGINTERN PyObject
*_wrap_Bitmap_GetPalette(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6566 PyObject
*resultobj
= 0;
6567 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6568 wxPalette
*result
= 0 ;
6571 PyObject
*swig_obj
[1] ;
6573 if (!args
) SWIG_fail
;
6575 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6576 if (!SWIG_IsOK(res1
)) {
6577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_GetPalette" "', expected argument " "1"" of type '" "wxBitmap const *""'");
6579 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6581 result
= (wxPalette
*)((wxBitmap
const *)arg1
)->GetPalette();
6582 if (PyErr_Occurred()) SWIG_fail
;
6584 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPalette
, 0 | 0 );
6591 SWIGINTERN PyObject
*_wrap_Bitmap_CopyFromIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6592 PyObject
*resultobj
= 0;
6593 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6600 PyObject
* obj0
= 0 ;
6601 PyObject
* obj1
= 0 ;
6602 char * kwnames
[] = {
6603 (char *) "self",(char *) "icon", NULL
6606 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_CopyFromIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6607 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6608 if (!SWIG_IsOK(res1
)) {
6609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_CopyFromIcon" "', expected argument " "1"" of type '" "wxBitmap *""'");
6611 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6612 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
6613 if (!SWIG_IsOK(res2
)) {
6614 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Bitmap_CopyFromIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
6617 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Bitmap_CopyFromIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
6619 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
6621 result
= (bool)(arg1
)->CopyFromIcon((wxIcon
const &)*arg2
);
6622 if (PyErr_Occurred()) SWIG_fail
;
6625 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6633 SWIGINTERN PyObject
*_wrap_Bitmap_SetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6634 PyObject
*resultobj
= 0;
6635 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6641 PyObject
* obj0
= 0 ;
6642 PyObject
* obj1
= 0 ;
6643 char * kwnames
[] = {
6644 (char *) "self",(char *) "height", NULL
6647 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6648 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6649 if (!SWIG_IsOK(res1
)) {
6650 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetHeight" "', expected argument " "1"" of type '" "wxBitmap *""'");
6652 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6653 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6654 if (!SWIG_IsOK(ecode2
)) {
6655 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Bitmap_SetHeight" "', expected argument " "2"" of type '" "int""'");
6657 arg2
= static_cast< int >(val2
);
6659 (arg1
)->SetHeight(arg2
);
6660 if (PyErr_Occurred()) SWIG_fail
;
6662 resultobj
= SWIG_Py_Void();
6669 SWIGINTERN PyObject
*_wrap_Bitmap_SetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6670 PyObject
*resultobj
= 0;
6671 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6677 PyObject
* obj0
= 0 ;
6678 PyObject
* obj1
= 0 ;
6679 char * kwnames
[] = {
6680 (char *) "self",(char *) "width", NULL
6683 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6684 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6685 if (!SWIG_IsOK(res1
)) {
6686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetWidth" "', expected argument " "1"" of type '" "wxBitmap *""'");
6688 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6689 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6690 if (!SWIG_IsOK(ecode2
)) {
6691 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Bitmap_SetWidth" "', expected argument " "2"" of type '" "int""'");
6693 arg2
= static_cast< int >(val2
);
6695 (arg1
)->SetWidth(arg2
);
6696 if (PyErr_Occurred()) SWIG_fail
;
6698 resultobj
= SWIG_Py_Void();
6705 SWIGINTERN PyObject
*_wrap_Bitmap_SetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6706 PyObject
*resultobj
= 0;
6707 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6713 PyObject
* obj0
= 0 ;
6714 PyObject
* obj1
= 0 ;
6715 char * kwnames
[] = {
6716 (char *) "self",(char *) "depth", NULL
6719 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetDepth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6720 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6721 if (!SWIG_IsOK(res1
)) {
6722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetDepth" "', expected argument " "1"" of type '" "wxBitmap *""'");
6724 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6725 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6726 if (!SWIG_IsOK(ecode2
)) {
6727 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Bitmap_SetDepth" "', expected argument " "2"" of type '" "int""'");
6729 arg2
= static_cast< int >(val2
);
6731 (arg1
)->SetDepth(arg2
);
6732 if (PyErr_Occurred()) SWIG_fail
;
6734 resultobj
= SWIG_Py_Void();
6741 SWIGINTERN PyObject
*_wrap_Bitmap_SetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6742 PyObject
*resultobj
= 0;
6743 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6748 PyObject
* obj0
= 0 ;
6749 PyObject
* obj1
= 0 ;
6750 char * kwnames
[] = {
6751 (char *) "self",(char *) "size", NULL
6754 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap_SetSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6755 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6756 if (!SWIG_IsOK(res1
)) {
6757 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap_SetSize" "', expected argument " "1"" of type '" "wxBitmap *""'");
6759 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6762 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
6765 wxBitmap_SetSize(arg1
,(wxSize
const &)*arg2
);
6766 if (PyErr_Occurred()) SWIG_fail
;
6768 resultobj
= SWIG_Py_Void();
6775 SWIGINTERN PyObject
*_wrap_Bitmap___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6776 PyObject
*resultobj
= 0;
6777 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6778 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
6784 PyObject
* obj0
= 0 ;
6785 PyObject
* obj1
= 0 ;
6786 char * kwnames
[] = {
6787 (char *) "self",(char *) "other", NULL
6790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6792 if (!SWIG_IsOK(res1
)) {
6793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap___eq__" "', expected argument " "1"" of type '" "wxBitmap *""'");
6795 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6796 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6797 if (!SWIG_IsOK(res2
)) {
6798 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Bitmap___eq__" "', expected argument " "2"" of type '" "wxBitmap const *""'");
6800 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
6802 result
= (bool)wxBitmap___eq__(arg1
,(wxBitmap
const *)arg2
);
6803 if (PyErr_Occurred()) SWIG_fail
;
6806 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6814 SWIGINTERN PyObject
*_wrap_Bitmap___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6815 PyObject
*resultobj
= 0;
6816 wxBitmap
*arg1
= (wxBitmap
*) 0 ;
6817 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
6823 PyObject
* obj0
= 0 ;
6824 PyObject
* obj1
= 0 ;
6825 char * kwnames
[] = {
6826 (char *) "self",(char *) "other", NULL
6829 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Bitmap___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6830 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6831 if (!SWIG_IsOK(res1
)) {
6832 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Bitmap___ne__" "', expected argument " "1"" of type '" "wxBitmap *""'");
6834 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
6835 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
6836 if (!SWIG_IsOK(res2
)) {
6837 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Bitmap___ne__" "', expected argument " "2"" of type '" "wxBitmap const *""'");
6839 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
6841 result
= (bool)wxBitmap___ne__(arg1
,(wxBitmap
const *)arg2
);
6842 if (PyErr_Occurred()) SWIG_fail
;
6845 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6853 SWIGINTERN PyObject
*Bitmap_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6855 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
6856 SWIG_TypeNewClientData(SWIGTYPE_p_wxBitmap
, SWIG_NewClientData(obj
));
6857 return SWIG_Py_Void();
6860 SWIGINTERN PyObject
*Bitmap_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6861 return SWIG_Python_InitShadowInstance(args
);
6864 SWIGINTERN PyObject
*_wrap__BitmapFromBufferAlpha(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6865 PyObject
*resultobj
= 0;
6872 wxBitmap
*result
= 0 ;
6879 PyObject
* obj0
= 0 ;
6880 PyObject
* obj1
= 0 ;
6881 PyObject
* obj2
= 0 ;
6882 PyObject
* obj3
= 0 ;
6883 char * kwnames
[] = {
6884 (char *) "width",(char *) "height",(char *) "data",(char *) "alpha", NULL
6887 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:_BitmapFromBufferAlpha",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6888 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
6889 if (!SWIG_IsOK(ecode1
)) {
6890 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "_BitmapFromBufferAlpha" "', expected argument " "1"" of type '" "int""'");
6892 arg1
= static_cast< int >(val1
);
6893 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6894 if (!SWIG_IsOK(ecode2
)) {
6895 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "_BitmapFromBufferAlpha" "', expected argument " "2"" of type '" "int""'");
6897 arg2
= static_cast< int >(val2
);
6899 if (PyObject_AsReadBuffer(obj2
, (const void**)(&arg3
), &temp3
) == -1) SWIG_fail
;
6903 if (obj3
!= Py_None
) {
6904 if (PyObject_AsReadBuffer(obj3
, (const void**)(&arg5
), &temp5
) == -1) SWIG_fail
;
6909 result
= (wxBitmap
*)_BitmapFromBufferAlpha(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
);
6910 if (PyErr_Occurred()) SWIG_fail
;
6912 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6919 SWIGINTERN PyObject
*_wrap__BitmapFromBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6920 PyObject
*resultobj
= 0;
6925 wxBitmap
*result
= 0 ;
6931 PyObject
* obj0
= 0 ;
6932 PyObject
* obj1
= 0 ;
6933 PyObject
* obj2
= 0 ;
6934 char * kwnames
[] = {
6935 (char *) "width",(char *) "height",(char *) "data", NULL
6938 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:_BitmapFromBuffer",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6939 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
6940 if (!SWIG_IsOK(ecode1
)) {
6941 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "_BitmapFromBuffer" "', expected argument " "1"" of type '" "int""'");
6943 arg1
= static_cast< int >(val1
);
6944 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6945 if (!SWIG_IsOK(ecode2
)) {
6946 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "_BitmapFromBuffer" "', expected argument " "2"" of type '" "int""'");
6948 arg2
= static_cast< int >(val2
);
6950 if (PyObject_AsReadBuffer(obj2
, (const void**)(&arg3
), &temp3
) == -1) SWIG_fail
;
6954 result
= (wxBitmap
*)_BitmapFromBuffer(arg1
,arg2
,arg3
,arg4
);
6955 if (PyErr_Occurred()) SWIG_fail
;
6957 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
6964 SWIGINTERN PyObject
*_wrap__BitmapFromBufferRGBA(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6965 PyObject
*resultobj
= 0;
6970 wxBitmap
*result
= 0 ;
6976 PyObject
* obj0
= 0 ;
6977 PyObject
* obj1
= 0 ;
6978 PyObject
* obj2
= 0 ;
6979 char * kwnames
[] = {
6980 (char *) "width",(char *) "height",(char *) "data", NULL
6983 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:_BitmapFromBufferRGBA",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6984 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
6985 if (!SWIG_IsOK(ecode1
)) {
6986 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "_BitmapFromBufferRGBA" "', expected argument " "1"" of type '" "int""'");
6988 arg1
= static_cast< int >(val1
);
6989 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6990 if (!SWIG_IsOK(ecode2
)) {
6991 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "_BitmapFromBufferRGBA" "', expected argument " "2"" of type '" "int""'");
6993 arg2
= static_cast< int >(val2
);
6995 if (PyObject_AsReadBuffer(obj2
, (const void**)(&arg3
), &temp3
) == -1) SWIG_fail
;
6999 result
= (wxBitmap
*)_BitmapFromBufferRGBA(arg1
,arg2
,arg3
,arg4
);
7000 if (PyErr_Occurred()) SWIG_fail
;
7002 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
7009 SWIGINTERN PyObject
*_wrap_PixelDataBase_GetOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7010 PyObject
*resultobj
= 0;
7011 wxPixelDataBase
*arg1
= (wxPixelDataBase
*) 0 ;
7015 PyObject
*swig_obj
[1] ;
7017 if (!args
) SWIG_fail
;
7019 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPixelDataBase
, 0 | 0 );
7020 if (!SWIG_IsOK(res1
)) {
7021 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PixelDataBase_GetOrigin" "', expected argument " "1"" of type '" "wxPixelDataBase const *""'");
7023 arg1
= reinterpret_cast< wxPixelDataBase
* >(argp1
);
7025 result
= ((wxPixelDataBase
const *)arg1
)->GetOrigin();
7026 if (PyErr_Occurred()) SWIG_fail
;
7028 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
7035 SWIGINTERN PyObject
*_wrap_PixelDataBase_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7036 PyObject
*resultobj
= 0;
7037 wxPixelDataBase
*arg1
= (wxPixelDataBase
*) 0 ;
7041 PyObject
*swig_obj
[1] ;
7043 if (!args
) SWIG_fail
;
7045 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPixelDataBase
, 0 | 0 );
7046 if (!SWIG_IsOK(res1
)) {
7047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PixelDataBase_GetWidth" "', expected argument " "1"" of type '" "wxPixelDataBase const *""'");
7049 arg1
= reinterpret_cast< wxPixelDataBase
* >(argp1
);
7051 result
= (int)((wxPixelDataBase
const *)arg1
)->GetWidth();
7052 if (PyErr_Occurred()) SWIG_fail
;
7054 resultobj
= SWIG_From_int(static_cast< int >(result
));
7061 SWIGINTERN PyObject
*_wrap_PixelDataBase_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7062 PyObject
*resultobj
= 0;
7063 wxPixelDataBase
*arg1
= (wxPixelDataBase
*) 0 ;
7067 PyObject
*swig_obj
[1] ;
7069 if (!args
) SWIG_fail
;
7071 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPixelDataBase
, 0 | 0 );
7072 if (!SWIG_IsOK(res1
)) {
7073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PixelDataBase_GetHeight" "', expected argument " "1"" of type '" "wxPixelDataBase const *""'");
7075 arg1
= reinterpret_cast< wxPixelDataBase
* >(argp1
);
7077 result
= (int)((wxPixelDataBase
const *)arg1
)->GetHeight();
7078 if (PyErr_Occurred()) SWIG_fail
;
7080 resultobj
= SWIG_From_int(static_cast< int >(result
));
7087 SWIGINTERN PyObject
*_wrap_PixelDataBase_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7088 PyObject
*resultobj
= 0;
7089 wxPixelDataBase
*arg1
= (wxPixelDataBase
*) 0 ;
7093 PyObject
*swig_obj
[1] ;
7095 if (!args
) SWIG_fail
;
7097 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPixelDataBase
, 0 | 0 );
7098 if (!SWIG_IsOK(res1
)) {
7099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PixelDataBase_GetSize" "', expected argument " "1"" of type '" "wxPixelDataBase const *""'");
7101 arg1
= reinterpret_cast< wxPixelDataBase
* >(argp1
);
7103 result
= ((wxPixelDataBase
const *)arg1
)->GetSize();
7104 if (PyErr_Occurred()) SWIG_fail
;
7106 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
7113 SWIGINTERN PyObject
*_wrap_PixelDataBase_GetRowStride(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7114 PyObject
*resultobj
= 0;
7115 wxPixelDataBase
*arg1
= (wxPixelDataBase
*) 0 ;
7119 PyObject
*swig_obj
[1] ;
7121 if (!args
) SWIG_fail
;
7123 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPixelDataBase
, 0 | 0 );
7124 if (!SWIG_IsOK(res1
)) {
7125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PixelDataBase_GetRowStride" "', expected argument " "1"" of type '" "wxPixelDataBase const *""'");
7127 arg1
= reinterpret_cast< wxPixelDataBase
* >(argp1
);
7129 result
= (int)((wxPixelDataBase
const *)arg1
)->GetRowStride();
7130 if (PyErr_Occurred()) SWIG_fail
;
7132 resultobj
= SWIG_From_int(static_cast< int >(result
));
7139 SWIGINTERN PyObject
*PixelDataBase_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7141 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7142 SWIG_TypeNewClientData(SWIGTYPE_p_wxPixelDataBase
, SWIG_NewClientData(obj
));
7143 return SWIG_Py_Void();
7146 SWIGINTERN PyObject
*_wrap_new_NativePixelData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7147 PyObject
*resultobj
= 0;
7148 wxBitmap
*arg1
= 0 ;
7149 wxNativePixelData
*result
= 0 ;
7153 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
7154 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7155 if (!SWIG_IsOK(res1
)) {
7156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7159 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7161 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7163 result
= (wxNativePixelData
*)new wxNativePixelData(*arg1
);
7164 if (PyErr_Occurred()) SWIG_fail
;
7166 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData
, SWIG_POINTER_NEW
| 0 );
7173 SWIGINTERN PyObject
*_wrap_new_NativePixelData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7174 PyObject
*resultobj
= 0;
7175 wxBitmap
*arg1
= 0 ;
7177 wxNativePixelData
*result
= 0 ;
7182 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
7183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7184 if (!SWIG_IsOK(res1
)) {
7185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7188 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7190 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7193 if ( ! wxRect_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
7196 result
= (wxNativePixelData
*)new wxNativePixelData(*arg1
,(wxRect
const &)*arg2
);
7197 if (PyErr_Occurred()) SWIG_fail
;
7199 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData
, SWIG_POINTER_NEW
| 0 );
7206 SWIGINTERN PyObject
*_wrap_new_NativePixelData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7207 PyObject
*resultobj
= 0;
7208 wxBitmap
*arg1
= 0 ;
7211 wxNativePixelData
*result
= 0 ;
7217 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
7218 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7219 if (!SWIG_IsOK(res1
)) {
7220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7223 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7225 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7228 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
7232 if ( ! wxSize_helper(swig_obj
[2], &arg3
)) SWIG_fail
;
7235 result
= (wxNativePixelData
*)new wxNativePixelData(*arg1
,(wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
7236 if (PyErr_Occurred()) SWIG_fail
;
7238 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData
, SWIG_POINTER_NEW
| 0 );
7245 SWIGINTERN PyObject
*_wrap_new_NativePixelData(PyObject
*self
, PyObject
*args
) {
7249 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_NativePixelData",0,3,argv
))) SWIG_fail
;
7252 return _wrap_new_NativePixelData__SWIG_0(self
, argc
, argv
);
7255 return _wrap_new_NativePixelData__SWIG_1(self
, argc
, argv
);
7258 return _wrap_new_NativePixelData__SWIG_2(self
, argc
, argv
);
7262 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_NativePixelData'");
7267 SWIGINTERN PyObject
*_wrap_delete_NativePixelData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7268 PyObject
*resultobj
= 0;
7269 wxNativePixelData
*arg1
= (wxNativePixelData
*) 0 ;
7272 PyObject
*swig_obj
[1] ;
7274 if (!args
) SWIG_fail
;
7276 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData
, SWIG_POINTER_DISOWN
| 0 );
7277 if (!SWIG_IsOK(res1
)) {
7278 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_NativePixelData" "', expected argument " "1"" of type '" "wxNativePixelData *""'");
7280 arg1
= reinterpret_cast< wxNativePixelData
* >(argp1
);
7284 if (PyErr_Occurred()) SWIG_fail
;
7286 resultobj
= SWIG_Py_Void();
7293 SWIGINTERN PyObject
*_wrap_NativePixelData_GetPixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7294 PyObject
*resultobj
= 0;
7295 wxNativePixelData
*arg1
= (wxNativePixelData
*) 0 ;
7296 wxNativePixelData_Accessor result
;
7299 PyObject
*swig_obj
[1] ;
7301 if (!args
) SWIG_fail
;
7303 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData
, 0 | 0 );
7304 if (!SWIG_IsOK(res1
)) {
7305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_GetPixels" "', expected argument " "1"" of type '" "wxNativePixelData const *""'");
7307 arg1
= reinterpret_cast< wxNativePixelData
* >(argp1
);
7309 result
= ((wxNativePixelData
const *)arg1
)->GetPixels();
7310 if (PyErr_Occurred()) SWIG_fail
;
7312 resultobj
= SWIG_NewPointerObj((new wxNativePixelData_Accessor(static_cast< const wxNativePixelData_Accessor
& >(result
))), SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_POINTER_OWN
| 0 );
7319 SWIGINTERN PyObject
*_wrap_NativePixelData_UseAlpha(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7320 PyObject
*resultobj
= 0;
7321 wxNativePixelData
*arg1
= (wxNativePixelData
*) 0 ;
7324 PyObject
*swig_obj
[1] ;
7326 if (!args
) SWIG_fail
;
7328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData
, 0 | 0 );
7329 if (!SWIG_IsOK(res1
)) {
7330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_UseAlpha" "', expected argument " "1"" of type '" "wxNativePixelData *""'");
7332 arg1
= reinterpret_cast< wxNativePixelData
* >(argp1
);
7335 if (PyErr_Occurred()) SWIG_fail
;
7337 resultobj
= SWIG_Py_Void();
7344 SWIGINTERN PyObject
*_wrap_NativePixelData___nonzero__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7345 PyObject
*resultobj
= 0;
7346 wxNativePixelData
*arg1
= (wxNativePixelData
*) 0 ;
7350 PyObject
*swig_obj
[1] ;
7352 if (!args
) SWIG_fail
;
7354 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData
, 0 | 0 );
7355 if (!SWIG_IsOK(res1
)) {
7356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData___nonzero__" "', expected argument " "1"" of type '" "wxNativePixelData *""'");
7358 arg1
= reinterpret_cast< wxNativePixelData
* >(argp1
);
7360 result
= (bool)wxNativePixelData___nonzero__(arg1
);
7361 if (PyErr_Occurred()) SWIG_fail
;
7364 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7372 SWIGINTERN PyObject
*NativePixelData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7374 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7375 SWIG_TypeNewClientData(SWIGTYPE_p_wxNativePixelData
, SWIG_NewClientData(obj
));
7376 return SWIG_Py_Void();
7379 SWIGINTERN PyObject
*NativePixelData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7380 return SWIG_Python_InitShadowInstance(args
);
7383 SWIGINTERN PyObject
*_wrap_new_NativePixelData_Accessor__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7384 PyObject
*resultobj
= 0;
7385 wxNativePixelData
*arg1
= 0 ;
7386 wxNativePixelData_Accessor
*result
= 0 ;
7390 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
7391 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxNativePixelData
, 0 );
7392 if (!SWIG_IsOK(res1
)) {
7393 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_NativePixelData_Accessor" "', expected argument " "1"" of type '" "wxNativePixelData &""'");
7396 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData_Accessor" "', expected argument " "1"" of type '" "wxNativePixelData &""'");
7398 arg1
= reinterpret_cast< wxNativePixelData
* >(argp1
);
7400 result
= (wxNativePixelData_Accessor
*)new wxNativePixelData_Accessor(*arg1
);
7401 if (PyErr_Occurred()) SWIG_fail
;
7403 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
7410 SWIGINTERN PyObject
*_wrap_new_NativePixelData_Accessor__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7411 PyObject
*resultobj
= 0;
7412 wxBitmap
*arg1
= 0 ;
7413 wxNativePixelData
*arg2
= 0 ;
7414 wxNativePixelData_Accessor
*result
= 0 ;
7420 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
7421 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7422 if (!SWIG_IsOK(res1
)) {
7423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_NativePixelData_Accessor" "', expected argument " "1"" of type '" "wxBitmap &""'");
7426 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData_Accessor" "', expected argument " "1"" of type '" "wxBitmap &""'");
7428 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7429 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 );
7430 if (!SWIG_IsOK(res2
)) {
7431 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_NativePixelData_Accessor" "', expected argument " "2"" of type '" "wxNativePixelData &""'");
7434 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_NativePixelData_Accessor" "', expected argument " "2"" of type '" "wxNativePixelData &""'");
7436 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7438 result
= (wxNativePixelData_Accessor
*)new wxNativePixelData_Accessor(*arg1
,*arg2
);
7439 if (PyErr_Occurred()) SWIG_fail
;
7441 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
7448 SWIGINTERN PyObject
*_wrap_new_NativePixelData_Accessor__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
7449 PyObject
*resultobj
= 0;
7450 wxNativePixelData_Accessor
*result
= 0 ;
7452 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
7454 result
= (wxNativePixelData_Accessor
*)new wxNativePixelData_Accessor();
7455 if (PyErr_Occurred()) SWIG_fail
;
7457 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
7464 SWIGINTERN PyObject
*_wrap_new_NativePixelData_Accessor(PyObject
*self
, PyObject
*args
) {
7468 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_NativePixelData_Accessor",0,2,argv
))) SWIG_fail
;
7471 return _wrap_new_NativePixelData_Accessor__SWIG_2(self
, argc
, argv
);
7474 return _wrap_new_NativePixelData_Accessor__SWIG_0(self
, argc
, argv
);
7477 return _wrap_new_NativePixelData_Accessor__SWIG_1(self
, argc
, argv
);
7481 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_NativePixelData_Accessor'");
7486 SWIGINTERN PyObject
*_wrap_delete_NativePixelData_Accessor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7487 PyObject
*resultobj
= 0;
7488 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7491 PyObject
*swig_obj
[1] ;
7493 if (!args
) SWIG_fail
;
7495 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_POINTER_DISOWN
| 0 );
7496 if (!SWIG_IsOK(res1
)) {
7497 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_NativePixelData_Accessor" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7499 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7503 if (PyErr_Occurred()) SWIG_fail
;
7505 resultobj
= SWIG_Py_Void();
7512 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_Reset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7513 PyObject
*resultobj
= 0;
7514 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7515 wxNativePixelData
*arg2
= 0 ;
7520 PyObject
* obj0
= 0 ;
7521 PyObject
* obj1
= 0 ;
7522 char * kwnames
[] = {
7523 (char *) "self",(char *) "data", NULL
7526 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativePixelData_Accessor_Reset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7527 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7528 if (!SWIG_IsOK(res1
)) {
7529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_Reset" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7531 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7532 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 | 0);
7533 if (!SWIG_IsOK(res2
)) {
7534 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativePixelData_Accessor_Reset" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7537 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativePixelData_Accessor_Reset" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7539 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7541 (arg1
)->Reset((wxNativePixelData
const &)*arg2
);
7542 if (PyErr_Occurred()) SWIG_fail
;
7544 resultobj
= SWIG_Py_Void();
7551 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7552 PyObject
*resultobj
= 0;
7553 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7557 PyObject
*swig_obj
[1] ;
7559 if (!args
) SWIG_fail
;
7561 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7562 if (!SWIG_IsOK(res1
)) {
7563 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_IsOk" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor const *""'");
7565 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7567 result
= (bool)((wxNativePixelData_Accessor
const *)arg1
)->IsOk();
7568 if (PyErr_Occurred()) SWIG_fail
;
7571 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7579 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_nextPixel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7580 PyObject
*resultobj
= 0;
7581 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7584 PyObject
*swig_obj
[1] ;
7586 if (!args
) SWIG_fail
;
7588 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7589 if (!SWIG_IsOK(res1
)) {
7590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_nextPixel" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7592 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7594 wxNativePixelData_Accessor_nextPixel(arg1
);
7595 if (PyErr_Occurred()) SWIG_fail
;
7597 resultobj
= SWIG_Py_Void();
7604 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_Offset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7605 PyObject
*resultobj
= 0;
7606 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7607 wxNativePixelData
*arg2
= 0 ;
7618 PyObject
* obj0
= 0 ;
7619 PyObject
* obj1
= 0 ;
7620 PyObject
* obj2
= 0 ;
7621 PyObject
* obj3
= 0 ;
7622 char * kwnames
[] = {
7623 (char *) "self",(char *) "data",(char *) "x",(char *) "y", NULL
7626 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:NativePixelData_Accessor_Offset",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7627 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7628 if (!SWIG_IsOK(res1
)) {
7629 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_Offset" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7631 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7632 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 | 0);
7633 if (!SWIG_IsOK(res2
)) {
7634 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativePixelData_Accessor_Offset" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7637 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativePixelData_Accessor_Offset" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7639 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7640 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7641 if (!SWIG_IsOK(ecode3
)) {
7642 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "NativePixelData_Accessor_Offset" "', expected argument " "3"" of type '" "int""'");
7644 arg3
= static_cast< int >(val3
);
7645 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7646 if (!SWIG_IsOK(ecode4
)) {
7647 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "NativePixelData_Accessor_Offset" "', expected argument " "4"" of type '" "int""'");
7649 arg4
= static_cast< int >(val4
);
7651 (arg1
)->Offset((wxNativePixelData
const &)*arg2
,arg3
,arg4
);
7652 if (PyErr_Occurred()) SWIG_fail
;
7654 resultobj
= SWIG_Py_Void();
7661 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_OffsetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7662 PyObject
*resultobj
= 0;
7663 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7664 wxNativePixelData
*arg2
= 0 ;
7672 PyObject
* obj0
= 0 ;
7673 PyObject
* obj1
= 0 ;
7674 PyObject
* obj2
= 0 ;
7675 char * kwnames
[] = {
7676 (char *) "self",(char *) "data",(char *) "x", NULL
7679 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:NativePixelData_Accessor_OffsetX",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7680 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7681 if (!SWIG_IsOK(res1
)) {
7682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_OffsetX" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7684 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7685 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 | 0);
7686 if (!SWIG_IsOK(res2
)) {
7687 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativePixelData_Accessor_OffsetX" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7690 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativePixelData_Accessor_OffsetX" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7692 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7693 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7694 if (!SWIG_IsOK(ecode3
)) {
7695 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "NativePixelData_Accessor_OffsetX" "', expected argument " "3"" of type '" "int""'");
7697 arg3
= static_cast< int >(val3
);
7699 (arg1
)->OffsetX((wxNativePixelData
const &)*arg2
,arg3
);
7700 if (PyErr_Occurred()) SWIG_fail
;
7702 resultobj
= SWIG_Py_Void();
7709 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_OffsetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7710 PyObject
*resultobj
= 0;
7711 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7712 wxNativePixelData
*arg2
= 0 ;
7720 PyObject
* obj0
= 0 ;
7721 PyObject
* obj1
= 0 ;
7722 PyObject
* obj2
= 0 ;
7723 char * kwnames
[] = {
7724 (char *) "self",(char *) "data",(char *) "y", NULL
7727 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:NativePixelData_Accessor_OffsetY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7728 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7729 if (!SWIG_IsOK(res1
)) {
7730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_OffsetY" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7732 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7733 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 | 0);
7734 if (!SWIG_IsOK(res2
)) {
7735 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativePixelData_Accessor_OffsetY" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7738 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativePixelData_Accessor_OffsetY" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7740 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7741 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7742 if (!SWIG_IsOK(ecode3
)) {
7743 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "NativePixelData_Accessor_OffsetY" "', expected argument " "3"" of type '" "int""'");
7745 arg3
= static_cast< int >(val3
);
7747 (arg1
)->OffsetY((wxNativePixelData
const &)*arg2
,arg3
);
7748 if (PyErr_Occurred()) SWIG_fail
;
7750 resultobj
= SWIG_Py_Void();
7757 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_MoveTo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7758 PyObject
*resultobj
= 0;
7759 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7760 wxNativePixelData
*arg2
= 0 ;
7771 PyObject
* obj0
= 0 ;
7772 PyObject
* obj1
= 0 ;
7773 PyObject
* obj2
= 0 ;
7774 PyObject
* obj3
= 0 ;
7775 char * kwnames
[] = {
7776 (char *) "self",(char *) "data",(char *) "x",(char *) "y", NULL
7779 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:NativePixelData_Accessor_MoveTo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7780 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7781 if (!SWIG_IsOK(res1
)) {
7782 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_MoveTo" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7784 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7785 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativePixelData
, 0 | 0);
7786 if (!SWIG_IsOK(res2
)) {
7787 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativePixelData_Accessor_MoveTo" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7790 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativePixelData_Accessor_MoveTo" "', expected argument " "2"" of type '" "wxNativePixelData const &""'");
7792 arg2
= reinterpret_cast< wxNativePixelData
* >(argp2
);
7793 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7794 if (!SWIG_IsOK(ecode3
)) {
7795 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "NativePixelData_Accessor_MoveTo" "', expected argument " "3"" of type '" "int""'");
7797 arg3
= static_cast< int >(val3
);
7798 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7799 if (!SWIG_IsOK(ecode4
)) {
7800 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "NativePixelData_Accessor_MoveTo" "', expected argument " "4"" of type '" "int""'");
7802 arg4
= static_cast< int >(val4
);
7804 (arg1
)->MoveTo((wxNativePixelData
const &)*arg2
,arg3
,arg4
);
7805 if (PyErr_Occurred()) SWIG_fail
;
7807 resultobj
= SWIG_Py_Void();
7814 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7815 PyObject
*resultobj
= 0;
7816 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7822 unsigned char val2
;
7824 unsigned char val3
;
7826 unsigned char val4
;
7828 PyObject
* obj0
= 0 ;
7829 PyObject
* obj1
= 0 ;
7830 PyObject
* obj2
= 0 ;
7831 PyObject
* obj3
= 0 ;
7832 char * kwnames
[] = {
7833 (char *) "self",(char *) "red",(char *) "green",(char *) "blue", NULL
7836 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:NativePixelData_Accessor_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7837 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7838 if (!SWIG_IsOK(res1
)) {
7839 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_Set" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7841 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7842 ecode2
= SWIG_AsVal_unsigned_SS_char(obj1
, &val2
);
7843 if (!SWIG_IsOK(ecode2
)) {
7844 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativePixelData_Accessor_Set" "', expected argument " "2"" of type '" "byte""'");
7846 arg2
= static_cast< byte
>(val2
);
7847 ecode3
= SWIG_AsVal_unsigned_SS_char(obj2
, &val3
);
7848 if (!SWIG_IsOK(ecode3
)) {
7849 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "NativePixelData_Accessor_Set" "', expected argument " "3"" of type '" "byte""'");
7851 arg3
= static_cast< byte
>(val3
);
7852 ecode4
= SWIG_AsVal_unsigned_SS_char(obj3
, &val4
);
7853 if (!SWIG_IsOK(ecode4
)) {
7854 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "NativePixelData_Accessor_Set" "', expected argument " "4"" of type '" "byte""'");
7856 arg4
= static_cast< byte
>(val4
);
7858 wxNativePixelData_Accessor_Set(arg1
,arg2
,arg3
,arg4
);
7859 if (PyErr_Occurred()) SWIG_fail
;
7861 resultobj
= SWIG_Py_Void();
7868 SWIGINTERN PyObject
*_wrap_NativePixelData_Accessor_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7869 PyObject
*resultobj
= 0;
7870 wxNativePixelData_Accessor
*arg1
= (wxNativePixelData_Accessor
*) 0 ;
7871 PyObject
*result
= 0 ;
7874 PyObject
*swig_obj
[1] ;
7876 if (!args
) SWIG_fail
;
7878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativePixelData_Accessor
, 0 | 0 );
7879 if (!SWIG_IsOK(res1
)) {
7880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativePixelData_Accessor_Get" "', expected argument " "1"" of type '" "wxNativePixelData_Accessor *""'");
7882 arg1
= reinterpret_cast< wxNativePixelData_Accessor
* >(argp1
);
7884 result
= (PyObject
*)wxNativePixelData_Accessor_Get(arg1
);
7885 if (PyErr_Occurred()) SWIG_fail
;
7894 SWIGINTERN PyObject
*NativePixelData_Accessor_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7896 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7897 SWIG_TypeNewClientData(SWIGTYPE_p_wxNativePixelData_Accessor
, SWIG_NewClientData(obj
));
7898 return SWIG_Py_Void();
7901 SWIGINTERN PyObject
*NativePixelData_Accessor_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7902 return SWIG_Python_InitShadowInstance(args
);
7905 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7906 PyObject
*resultobj
= 0;
7907 wxBitmap
*arg1
= 0 ;
7908 wxAlphaPixelData
*result
= 0 ;
7912 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
7913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7914 if (!SWIG_IsOK(res1
)) {
7915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7918 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7920 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7922 result
= (wxAlphaPixelData
*)new wxAlphaPixelData(*arg1
);
7923 if (PyErr_Occurred()) SWIG_fail
;
7925 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData
, SWIG_POINTER_NEW
| 0 );
7932 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7933 PyObject
*resultobj
= 0;
7934 wxBitmap
*arg1
= 0 ;
7936 wxAlphaPixelData
*result
= 0 ;
7941 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
7942 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7943 if (!SWIG_IsOK(res1
)) {
7944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7947 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7949 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7952 if ( ! wxRect_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
7955 result
= (wxAlphaPixelData
*)new wxAlphaPixelData(*arg1
,(wxRect
const &)*arg2
);
7956 if (PyErr_Occurred()) SWIG_fail
;
7958 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData
, SWIG_POINTER_NEW
| 0 );
7965 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
7966 PyObject
*resultobj
= 0;
7967 wxBitmap
*arg1
= 0 ;
7970 wxAlphaPixelData
*result
= 0 ;
7976 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
7977 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
7978 if (!SWIG_IsOK(res1
)) {
7979 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7982 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData" "', expected argument " "1"" of type '" "wxBitmap &""'");
7984 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
7987 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
7991 if ( ! wxSize_helper(swig_obj
[2], &arg3
)) SWIG_fail
;
7994 result
= (wxAlphaPixelData
*)new wxAlphaPixelData(*arg1
,(wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
7995 if (PyErr_Occurred()) SWIG_fail
;
7997 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData
, SWIG_POINTER_NEW
| 0 );
8004 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData(PyObject
*self
, PyObject
*args
) {
8008 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_AlphaPixelData",0,3,argv
))) SWIG_fail
;
8011 return _wrap_new_AlphaPixelData__SWIG_0(self
, argc
, argv
);
8014 return _wrap_new_AlphaPixelData__SWIG_1(self
, argc
, argv
);
8017 return _wrap_new_AlphaPixelData__SWIG_2(self
, argc
, argv
);
8021 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_AlphaPixelData'");
8026 SWIGINTERN PyObject
*_wrap_delete_AlphaPixelData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8027 PyObject
*resultobj
= 0;
8028 wxAlphaPixelData
*arg1
= (wxAlphaPixelData
*) 0 ;
8031 PyObject
*swig_obj
[1] ;
8033 if (!args
) SWIG_fail
;
8035 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData
, SWIG_POINTER_DISOWN
| 0 );
8036 if (!SWIG_IsOK(res1
)) {
8037 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AlphaPixelData" "', expected argument " "1"" of type '" "wxAlphaPixelData *""'");
8039 arg1
= reinterpret_cast< wxAlphaPixelData
* >(argp1
);
8043 if (PyErr_Occurred()) SWIG_fail
;
8045 resultobj
= SWIG_Py_Void();
8052 SWIGINTERN PyObject
*_wrap_AlphaPixelData_GetPixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8053 PyObject
*resultobj
= 0;
8054 wxAlphaPixelData
*arg1
= (wxAlphaPixelData
*) 0 ;
8055 wxAlphaPixelData_Accessor result
;
8058 PyObject
*swig_obj
[1] ;
8060 if (!args
) SWIG_fail
;
8062 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData
, 0 | 0 );
8063 if (!SWIG_IsOK(res1
)) {
8064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_GetPixels" "', expected argument " "1"" of type '" "wxAlphaPixelData const *""'");
8066 arg1
= reinterpret_cast< wxAlphaPixelData
* >(argp1
);
8068 result
= ((wxAlphaPixelData
const *)arg1
)->GetPixels();
8069 if (PyErr_Occurred()) SWIG_fail
;
8071 resultobj
= SWIG_NewPointerObj((new wxAlphaPixelData_Accessor(static_cast< const wxAlphaPixelData_Accessor
& >(result
))), SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_POINTER_OWN
| 0 );
8078 SWIGINTERN PyObject
*_wrap_AlphaPixelData_UseAlpha(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8079 PyObject
*resultobj
= 0;
8080 wxAlphaPixelData
*arg1
= (wxAlphaPixelData
*) 0 ;
8083 PyObject
*swig_obj
[1] ;
8085 if (!args
) SWIG_fail
;
8087 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData
, 0 | 0 );
8088 if (!SWIG_IsOK(res1
)) {
8089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_UseAlpha" "', expected argument " "1"" of type '" "wxAlphaPixelData *""'");
8091 arg1
= reinterpret_cast< wxAlphaPixelData
* >(argp1
);
8094 if (PyErr_Occurred()) SWIG_fail
;
8096 resultobj
= SWIG_Py_Void();
8103 SWIGINTERN PyObject
*_wrap_AlphaPixelData___nonzero__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8104 PyObject
*resultobj
= 0;
8105 wxAlphaPixelData
*arg1
= (wxAlphaPixelData
*) 0 ;
8109 PyObject
*swig_obj
[1] ;
8111 if (!args
) SWIG_fail
;
8113 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData
, 0 | 0 );
8114 if (!SWIG_IsOK(res1
)) {
8115 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData___nonzero__" "', expected argument " "1"" of type '" "wxAlphaPixelData *""'");
8117 arg1
= reinterpret_cast< wxAlphaPixelData
* >(argp1
);
8119 result
= (bool)wxAlphaPixelData___nonzero__(arg1
);
8120 if (PyErr_Occurred()) SWIG_fail
;
8123 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8131 SWIGINTERN PyObject
*AlphaPixelData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8133 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8134 SWIG_TypeNewClientData(SWIGTYPE_p_wxAlphaPixelData
, SWIG_NewClientData(obj
));
8135 return SWIG_Py_Void();
8138 SWIGINTERN PyObject
*AlphaPixelData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8139 return SWIG_Python_InitShadowInstance(args
);
8142 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData_Accessor__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
8143 PyObject
*resultobj
= 0;
8144 wxAlphaPixelData
*arg1
= 0 ;
8145 wxAlphaPixelData_Accessor
*result
= 0 ;
8149 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
8150 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxAlphaPixelData
, 0 );
8151 if (!SWIG_IsOK(res1
)) {
8152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "1"" of type '" "wxAlphaPixelData &""'");
8155 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "1"" of type '" "wxAlphaPixelData &""'");
8157 arg1
= reinterpret_cast< wxAlphaPixelData
* >(argp1
);
8159 result
= (wxAlphaPixelData_Accessor
*)new wxAlphaPixelData_Accessor(*arg1
);
8160 if (PyErr_Occurred()) SWIG_fail
;
8162 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
8169 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData_Accessor__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
8170 PyObject
*resultobj
= 0;
8171 wxBitmap
*arg1
= 0 ;
8172 wxAlphaPixelData
*arg2
= 0 ;
8173 wxAlphaPixelData_Accessor
*result
= 0 ;
8179 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
8180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxBitmap
, 0 );
8181 if (!SWIG_IsOK(res1
)) {
8182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "1"" of type '" "wxBitmap &""'");
8185 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "1"" of type '" "wxBitmap &""'");
8187 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8188 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 );
8189 if (!SWIG_IsOK(res2
)) {
8190 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "2"" of type '" "wxAlphaPixelData &""'");
8193 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AlphaPixelData_Accessor" "', expected argument " "2"" of type '" "wxAlphaPixelData &""'");
8195 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8197 result
= (wxAlphaPixelData_Accessor
*)new wxAlphaPixelData_Accessor(*arg1
,*arg2
);
8198 if (PyErr_Occurred()) SWIG_fail
;
8200 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
8207 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData_Accessor__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
8208 PyObject
*resultobj
= 0;
8209 wxAlphaPixelData_Accessor
*result
= 0 ;
8211 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
8213 result
= (wxAlphaPixelData_Accessor
*)new wxAlphaPixelData_Accessor();
8214 if (PyErr_Occurred()) SWIG_fail
;
8216 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_POINTER_NEW
| 0 );
8223 SWIGINTERN PyObject
*_wrap_new_AlphaPixelData_Accessor(PyObject
*self
, PyObject
*args
) {
8227 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_AlphaPixelData_Accessor",0,2,argv
))) SWIG_fail
;
8230 return _wrap_new_AlphaPixelData_Accessor__SWIG_2(self
, argc
, argv
);
8233 return _wrap_new_AlphaPixelData_Accessor__SWIG_0(self
, argc
, argv
);
8236 return _wrap_new_AlphaPixelData_Accessor__SWIG_1(self
, argc
, argv
);
8240 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_AlphaPixelData_Accessor'");
8245 SWIGINTERN PyObject
*_wrap_delete_AlphaPixelData_Accessor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8246 PyObject
*resultobj
= 0;
8247 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8250 PyObject
*swig_obj
[1] ;
8252 if (!args
) SWIG_fail
;
8254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_POINTER_DISOWN
| 0 );
8255 if (!SWIG_IsOK(res1
)) {
8256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AlphaPixelData_Accessor" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8258 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8262 if (PyErr_Occurred()) SWIG_fail
;
8264 resultobj
= SWIG_Py_Void();
8271 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_Reset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8272 PyObject
*resultobj
= 0;
8273 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8274 wxAlphaPixelData
*arg2
= 0 ;
8279 PyObject
* obj0
= 0 ;
8280 PyObject
* obj1
= 0 ;
8281 char * kwnames
[] = {
8282 (char *) "self",(char *) "data", NULL
8285 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AlphaPixelData_Accessor_Reset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8286 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8287 if (!SWIG_IsOK(res1
)) {
8288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_Reset" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8290 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8291 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 | 0);
8292 if (!SWIG_IsOK(res2
)) {
8293 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AlphaPixelData_Accessor_Reset" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8296 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AlphaPixelData_Accessor_Reset" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8298 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8300 (arg1
)->Reset((wxAlphaPixelData
const &)*arg2
);
8301 if (PyErr_Occurred()) SWIG_fail
;
8303 resultobj
= SWIG_Py_Void();
8310 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8311 PyObject
*resultobj
= 0;
8312 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8316 PyObject
*swig_obj
[1] ;
8318 if (!args
) SWIG_fail
;
8320 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8321 if (!SWIG_IsOK(res1
)) {
8322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_IsOk" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor const *""'");
8324 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8326 result
= (bool)((wxAlphaPixelData_Accessor
const *)arg1
)->IsOk();
8327 if (PyErr_Occurred()) SWIG_fail
;
8330 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8338 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_nextPixel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8339 PyObject
*resultobj
= 0;
8340 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8343 PyObject
*swig_obj
[1] ;
8345 if (!args
) SWIG_fail
;
8347 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8348 if (!SWIG_IsOK(res1
)) {
8349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_nextPixel" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8351 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8353 wxAlphaPixelData_Accessor_nextPixel(arg1
);
8354 if (PyErr_Occurred()) SWIG_fail
;
8356 resultobj
= SWIG_Py_Void();
8363 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_Offset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8364 PyObject
*resultobj
= 0;
8365 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8366 wxAlphaPixelData
*arg2
= 0 ;
8377 PyObject
* obj0
= 0 ;
8378 PyObject
* obj1
= 0 ;
8379 PyObject
* obj2
= 0 ;
8380 PyObject
* obj3
= 0 ;
8381 char * kwnames
[] = {
8382 (char *) "self",(char *) "data",(char *) "x",(char *) "y", NULL
8385 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AlphaPixelData_Accessor_Offset",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8386 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8387 if (!SWIG_IsOK(res1
)) {
8388 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_Offset" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8390 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8391 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 | 0);
8392 if (!SWIG_IsOK(res2
)) {
8393 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AlphaPixelData_Accessor_Offset" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8396 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AlphaPixelData_Accessor_Offset" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8398 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8399 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8400 if (!SWIG_IsOK(ecode3
)) {
8401 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AlphaPixelData_Accessor_Offset" "', expected argument " "3"" of type '" "int""'");
8403 arg3
= static_cast< int >(val3
);
8404 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
8405 if (!SWIG_IsOK(ecode4
)) {
8406 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AlphaPixelData_Accessor_Offset" "', expected argument " "4"" of type '" "int""'");
8408 arg4
= static_cast< int >(val4
);
8410 (arg1
)->Offset((wxAlphaPixelData
const &)*arg2
,arg3
,arg4
);
8411 if (PyErr_Occurred()) SWIG_fail
;
8413 resultobj
= SWIG_Py_Void();
8420 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_OffsetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8421 PyObject
*resultobj
= 0;
8422 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8423 wxAlphaPixelData
*arg2
= 0 ;
8431 PyObject
* obj0
= 0 ;
8432 PyObject
* obj1
= 0 ;
8433 PyObject
* obj2
= 0 ;
8434 char * kwnames
[] = {
8435 (char *) "self",(char *) "data",(char *) "x", NULL
8438 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AlphaPixelData_Accessor_OffsetX",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8439 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8440 if (!SWIG_IsOK(res1
)) {
8441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_OffsetX" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8443 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8444 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 | 0);
8445 if (!SWIG_IsOK(res2
)) {
8446 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AlphaPixelData_Accessor_OffsetX" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8449 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AlphaPixelData_Accessor_OffsetX" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8451 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8452 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8453 if (!SWIG_IsOK(ecode3
)) {
8454 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AlphaPixelData_Accessor_OffsetX" "', expected argument " "3"" of type '" "int""'");
8456 arg3
= static_cast< int >(val3
);
8458 (arg1
)->OffsetX((wxAlphaPixelData
const &)*arg2
,arg3
);
8459 if (PyErr_Occurred()) SWIG_fail
;
8461 resultobj
= SWIG_Py_Void();
8468 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_OffsetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8469 PyObject
*resultobj
= 0;
8470 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8471 wxAlphaPixelData
*arg2
= 0 ;
8479 PyObject
* obj0
= 0 ;
8480 PyObject
* obj1
= 0 ;
8481 PyObject
* obj2
= 0 ;
8482 char * kwnames
[] = {
8483 (char *) "self",(char *) "data",(char *) "y", NULL
8486 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AlphaPixelData_Accessor_OffsetY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8487 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8488 if (!SWIG_IsOK(res1
)) {
8489 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_OffsetY" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8491 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8492 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 | 0);
8493 if (!SWIG_IsOK(res2
)) {
8494 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AlphaPixelData_Accessor_OffsetY" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8497 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AlphaPixelData_Accessor_OffsetY" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8499 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8500 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8501 if (!SWIG_IsOK(ecode3
)) {
8502 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AlphaPixelData_Accessor_OffsetY" "', expected argument " "3"" of type '" "int""'");
8504 arg3
= static_cast< int >(val3
);
8506 (arg1
)->OffsetY((wxAlphaPixelData
const &)*arg2
,arg3
);
8507 if (PyErr_Occurred()) SWIG_fail
;
8509 resultobj
= SWIG_Py_Void();
8516 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_MoveTo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8517 PyObject
*resultobj
= 0;
8518 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8519 wxAlphaPixelData
*arg2
= 0 ;
8530 PyObject
* obj0
= 0 ;
8531 PyObject
* obj1
= 0 ;
8532 PyObject
* obj2
= 0 ;
8533 PyObject
* obj3
= 0 ;
8534 char * kwnames
[] = {
8535 (char *) "self",(char *) "data",(char *) "x",(char *) "y", NULL
8538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AlphaPixelData_Accessor_MoveTo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8540 if (!SWIG_IsOK(res1
)) {
8541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_MoveTo" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8543 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8544 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAlphaPixelData
, 0 | 0);
8545 if (!SWIG_IsOK(res2
)) {
8546 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AlphaPixelData_Accessor_MoveTo" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8549 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AlphaPixelData_Accessor_MoveTo" "', expected argument " "2"" of type '" "wxAlphaPixelData const &""'");
8551 arg2
= reinterpret_cast< wxAlphaPixelData
* >(argp2
);
8552 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8553 if (!SWIG_IsOK(ecode3
)) {
8554 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AlphaPixelData_Accessor_MoveTo" "', expected argument " "3"" of type '" "int""'");
8556 arg3
= static_cast< int >(val3
);
8557 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
8558 if (!SWIG_IsOK(ecode4
)) {
8559 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AlphaPixelData_Accessor_MoveTo" "', expected argument " "4"" of type '" "int""'");
8561 arg4
= static_cast< int >(val4
);
8563 (arg1
)->MoveTo((wxAlphaPixelData
const &)*arg2
,arg3
,arg4
);
8564 if (PyErr_Occurred()) SWIG_fail
;
8566 resultobj
= SWIG_Py_Void();
8573 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8574 PyObject
*resultobj
= 0;
8575 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8582 unsigned char val2
;
8584 unsigned char val3
;
8586 unsigned char val4
;
8588 unsigned char val5
;
8590 PyObject
* obj0
= 0 ;
8591 PyObject
* obj1
= 0 ;
8592 PyObject
* obj2
= 0 ;
8593 PyObject
* obj3
= 0 ;
8594 PyObject
* obj4
= 0 ;
8595 char * kwnames
[] = {
8596 (char *) "self",(char *) "red",(char *) "green",(char *) "blue",(char *) "alpha", NULL
8599 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AlphaPixelData_Accessor_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8600 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8601 if (!SWIG_IsOK(res1
)) {
8602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_Set" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8604 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8605 ecode2
= SWIG_AsVal_unsigned_SS_char(obj1
, &val2
);
8606 if (!SWIG_IsOK(ecode2
)) {
8607 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AlphaPixelData_Accessor_Set" "', expected argument " "2"" of type '" "byte""'");
8609 arg2
= static_cast< byte
>(val2
);
8610 ecode3
= SWIG_AsVal_unsigned_SS_char(obj2
, &val3
);
8611 if (!SWIG_IsOK(ecode3
)) {
8612 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AlphaPixelData_Accessor_Set" "', expected argument " "3"" of type '" "byte""'");
8614 arg3
= static_cast< byte
>(val3
);
8615 ecode4
= SWIG_AsVal_unsigned_SS_char(obj3
, &val4
);
8616 if (!SWIG_IsOK(ecode4
)) {
8617 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AlphaPixelData_Accessor_Set" "', expected argument " "4"" of type '" "byte""'");
8619 arg4
= static_cast< byte
>(val4
);
8620 ecode5
= SWIG_AsVal_unsigned_SS_char(obj4
, &val5
);
8621 if (!SWIG_IsOK(ecode5
)) {
8622 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AlphaPixelData_Accessor_Set" "', expected argument " "5"" of type '" "byte""'");
8624 arg5
= static_cast< byte
>(val5
);
8626 wxAlphaPixelData_Accessor_Set(arg1
,arg2
,arg3
,arg4
,arg5
);
8627 if (PyErr_Occurred()) SWIG_fail
;
8629 resultobj
= SWIG_Py_Void();
8636 SWIGINTERN PyObject
*_wrap_AlphaPixelData_Accessor_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8637 PyObject
*resultobj
= 0;
8638 wxAlphaPixelData_Accessor
*arg1
= (wxAlphaPixelData_Accessor
*) 0 ;
8639 PyObject
*result
= 0 ;
8642 PyObject
*swig_obj
[1] ;
8644 if (!args
) SWIG_fail
;
8646 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAlphaPixelData_Accessor
, 0 | 0 );
8647 if (!SWIG_IsOK(res1
)) {
8648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AlphaPixelData_Accessor_Get" "', expected argument " "1"" of type '" "wxAlphaPixelData_Accessor *""'");
8650 arg1
= reinterpret_cast< wxAlphaPixelData_Accessor
* >(argp1
);
8652 result
= (PyObject
*)wxAlphaPixelData_Accessor_Get(arg1
);
8653 if (PyErr_Occurred()) SWIG_fail
;
8662 SWIGINTERN PyObject
*AlphaPixelData_Accessor_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8664 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8665 SWIG_TypeNewClientData(SWIGTYPE_p_wxAlphaPixelData_Accessor
, SWIG_NewClientData(obj
));
8666 return SWIG_Py_Void();
8669 SWIGINTERN PyObject
*AlphaPixelData_Accessor_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8670 return SWIG_Python_InitShadowInstance(args
);
8673 SWIGINTERN PyObject
*_wrap_new_Mask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8674 PyObject
*resultobj
= 0;
8675 wxBitmap
*arg1
= 0 ;
8676 wxColour
const &arg2_defvalue
= wxNullColour
;
8677 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
8678 wxMask
*result
= 0 ;
8682 PyObject
* obj0
= 0 ;
8683 PyObject
* obj1
= 0 ;
8684 char * kwnames
[] = {
8685 (char *) "bitmap",(char *) "colour", NULL
8688 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_Mask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8689 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8690 if (!SWIG_IsOK(res1
)) {
8691 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Mask" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8694 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_Mask" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8696 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8700 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
8704 if (!wxPyCheckForApp()) SWIG_fail
;
8705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8706 result
= (wxMask
*)new_wxMask((wxBitmap
const &)*arg1
,(wxColour
const &)*arg2
);
8707 wxPyEndAllowThreads(__tstate
);
8708 if (PyErr_Occurred()) SWIG_fail
;
8710 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMask
, SWIG_POINTER_NEW
| 0 );
8717 SWIGINTERN PyObject
*_wrap_delete_Mask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8718 PyObject
*resultobj
= 0;
8719 wxMask
*arg1
= (wxMask
*) 0 ;
8722 PyObject
*swig_obj
[1] ;
8724 if (!args
) SWIG_fail
;
8726 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMask
, SWIG_POINTER_DISOWN
| 0 );
8727 if (!SWIG_IsOK(res1
)) {
8728 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Mask" "', expected argument " "1"" of type '" "wxMask *""'");
8730 arg1
= reinterpret_cast< wxMask
* >(argp1
);
8734 if (PyErr_Occurred()) SWIG_fail
;
8736 resultobj
= SWIG_Py_Void();
8743 SWIGINTERN PyObject
*Mask_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8745 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8746 SWIG_TypeNewClientData(SWIGTYPE_p_wxMask
, SWIG_NewClientData(obj
));
8747 return SWIG_Py_Void();
8750 SWIGINTERN PyObject
*Mask_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8751 return SWIG_Python_InitShadowInstance(args
);
8754 SWIGINTERN PyObject
*_wrap_new_Icon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8755 PyObject
*resultobj
= 0;
8756 wxString
*arg1
= 0 ;
8758 int arg3
= (int) -1 ;
8759 int arg4
= (int) -1 ;
8760 wxIcon
*result
= 0 ;
8761 bool temp1
= false ;
8768 PyObject
* obj0
= 0 ;
8769 PyObject
* obj1
= 0 ;
8770 PyObject
* obj2
= 0 ;
8771 PyObject
* obj3
= 0 ;
8772 char * kwnames
[] = {
8773 (char *) "name",(char *) "type",(char *) "desiredWidth",(char *) "desiredHeight", NULL
8776 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_Icon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8778 arg1
= wxString_in_helper(obj0
);
8779 if (arg1
== NULL
) SWIG_fail
;
8782 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8783 if (!SWIG_IsOK(ecode2
)) {
8784 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Icon" "', expected argument " "2"" of type '" "wxBitmapType""'");
8786 arg2
= static_cast< wxBitmapType
>(val2
);
8788 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8789 if (!SWIG_IsOK(ecode3
)) {
8790 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Icon" "', expected argument " "3"" of type '" "int""'");
8792 arg3
= static_cast< int >(val3
);
8795 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
8796 if (!SWIG_IsOK(ecode4
)) {
8797 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_Icon" "', expected argument " "4"" of type '" "int""'");
8799 arg4
= static_cast< int >(val4
);
8802 if (!wxPyCheckForApp()) SWIG_fail
;
8803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8804 result
= (wxIcon
*)new wxIcon((wxString
const &)*arg1
,arg2
,arg3
,arg4
);
8805 wxPyEndAllowThreads(__tstate
);
8806 if (PyErr_Occurred()) SWIG_fail
;
8808 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_NEW
| 0 );
8823 SWIGINTERN PyObject
*_wrap_delete_Icon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8824 PyObject
*resultobj
= 0;
8825 wxIcon
*arg1
= (wxIcon
*) 0 ;
8828 PyObject
*swig_obj
[1] ;
8830 if (!args
) SWIG_fail
;
8832 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIcon
, SWIG_POINTER_DISOWN
| 0 );
8833 if (!SWIG_IsOK(res1
)) {
8834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Icon" "', expected argument " "1"" of type '" "wxIcon *""'");
8836 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
8838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8841 wxPyEndAllowThreads(__tstate
);
8842 if (PyErr_Occurred()) SWIG_fail
;
8844 resultobj
= SWIG_Py_Void();
8851 SWIGINTERN PyObject
*_wrap_new_EmptyIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8852 PyObject
*resultobj
= 0;
8853 wxIcon
*result
= 0 ;
8855 if (!SWIG_Python_UnpackTuple(args
,"new_EmptyIcon",0,0,0)) SWIG_fail
;
8857 if (!wxPyCheckForApp()) SWIG_fail
;
8858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8859 result
= (wxIcon
*)new wxIcon();
8860 wxPyEndAllowThreads(__tstate
);
8861 if (PyErr_Occurred()) SWIG_fail
;
8863 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
8870 SWIGINTERN PyObject
*_wrap_new_IconFromLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8871 PyObject
*resultobj
= 0;
8872 wxIconLocation
*arg1
= 0 ;
8873 wxIcon
*result
= 0 ;
8876 PyObject
* obj0
= 0 ;
8877 char * kwnames
[] = {
8878 (char *) "loc", NULL
8881 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_IconFromLocation",kwnames
,&obj0
)) SWIG_fail
;
8882 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxIconLocation
, 0 | 0);
8883 if (!SWIG_IsOK(res1
)) {
8884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_IconFromLocation" "', expected argument " "1"" of type '" "wxIconLocation const &""'");
8887 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_IconFromLocation" "', expected argument " "1"" of type '" "wxIconLocation const &""'");
8889 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
8891 if (!wxPyCheckForApp()) SWIG_fail
;
8892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8893 result
= (wxIcon
*)new wxIcon((wxIconLocation
const &)*arg1
);
8894 wxPyEndAllowThreads(__tstate
);
8895 if (PyErr_Occurred()) SWIG_fail
;
8897 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
8904 SWIGINTERN PyObject
*_wrap_new_IconFromBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8905 PyObject
*resultobj
= 0;
8906 wxBitmap
*arg1
= 0 ;
8907 wxIcon
*result
= 0 ;
8910 PyObject
* obj0
= 0 ;
8911 char * kwnames
[] = {
8912 (char *) "bmp", NULL
8915 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_IconFromBitmap",kwnames
,&obj0
)) SWIG_fail
;
8916 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8917 if (!SWIG_IsOK(res1
)) {
8918 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_IconFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8921 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_IconFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8923 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8925 if (!wxPyCheckForApp()) SWIG_fail
;
8926 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8927 result
= (wxIcon
*)new_wxIcon((wxBitmap
const &)*arg1
);
8928 wxPyEndAllowThreads(__tstate
);
8929 if (PyErr_Occurred()) SWIG_fail
;
8931 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
8938 SWIGINTERN PyObject
*_wrap_new_IconFromXPMData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8939 PyObject
*resultobj
= 0;
8940 PyObject
*arg1
= (PyObject
*) 0 ;
8941 wxIcon
*result
= 0 ;
8942 PyObject
* obj0
= 0 ;
8943 char * kwnames
[] = {
8944 (char *) "listOfStrings", NULL
8947 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_IconFromXPMData",kwnames
,&obj0
)) SWIG_fail
;
8950 if (!wxPyCheckForApp()) SWIG_fail
;
8951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8952 result
= (wxIcon
*)new_wxIcon(arg1
);
8953 wxPyEndAllowThreads(__tstate
);
8954 if (PyErr_Occurred()) SWIG_fail
;
8956 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
8963 SWIGINTERN PyObject
*_wrap_Icon_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8964 PyObject
*resultobj
= 0;
8965 wxIcon
*arg1
= (wxIcon
*) 0 ;
8969 PyObject
*swig_obj
[1] ;
8971 if (!args
) SWIG_fail
;
8973 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
8974 if (!SWIG_IsOK(res1
)) {
8975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_IsOk" "', expected argument " "1"" of type '" "wxIcon *""'");
8977 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
8979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8980 result
= (bool)(arg1
)->IsOk();
8981 wxPyEndAllowThreads(__tstate
);
8982 if (PyErr_Occurred()) SWIG_fail
;
8985 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8993 SWIGINTERN PyObject
*_wrap_Icon_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8994 PyObject
*resultobj
= 0;
8995 wxIcon
*arg1
= (wxIcon
*) 0 ;
8999 PyObject
*swig_obj
[1] ;
9001 if (!args
) SWIG_fail
;
9003 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9004 if (!SWIG_IsOK(res1
)) {
9005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_GetWidth" "', expected argument " "1"" of type '" "wxIcon *""'");
9007 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9010 result
= (int)(arg1
)->GetWidth();
9011 wxPyEndAllowThreads(__tstate
);
9012 if (PyErr_Occurred()) SWIG_fail
;
9014 resultobj
= SWIG_From_int(static_cast< int >(result
));
9021 SWIGINTERN PyObject
*_wrap_Icon_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9022 PyObject
*resultobj
= 0;
9023 wxIcon
*arg1
= (wxIcon
*) 0 ;
9027 PyObject
*swig_obj
[1] ;
9029 if (!args
) SWIG_fail
;
9031 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9032 if (!SWIG_IsOK(res1
)) {
9033 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_GetHeight" "', expected argument " "1"" of type '" "wxIcon *""'");
9035 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9038 result
= (int)(arg1
)->GetHeight();
9039 wxPyEndAllowThreads(__tstate
);
9040 if (PyErr_Occurred()) SWIG_fail
;
9042 resultobj
= SWIG_From_int(static_cast< int >(result
));
9049 SWIGINTERN PyObject
*_wrap_Icon_GetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9050 PyObject
*resultobj
= 0;
9051 wxIcon
*arg1
= (wxIcon
*) 0 ;
9055 PyObject
*swig_obj
[1] ;
9057 if (!args
) SWIG_fail
;
9059 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9060 if (!SWIG_IsOK(res1
)) {
9061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_GetDepth" "', expected argument " "1"" of type '" "wxIcon *""'");
9063 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9066 result
= (int)(arg1
)->GetDepth();
9067 wxPyEndAllowThreads(__tstate
);
9068 if (PyErr_Occurred()) SWIG_fail
;
9070 resultobj
= SWIG_From_int(static_cast< int >(result
));
9077 SWIGINTERN PyObject
*_wrap_Icon_SetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9078 PyObject
*resultobj
= 0;
9079 wxIcon
*arg1
= (wxIcon
*) 0 ;
9085 PyObject
* obj0
= 0 ;
9086 PyObject
* obj1
= 0 ;
9087 char * kwnames
[] = {
9088 (char *) "self",(char *) "w", NULL
9091 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Icon_SetWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9092 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9093 if (!SWIG_IsOK(res1
)) {
9094 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_SetWidth" "', expected argument " "1"" of type '" "wxIcon *""'");
9096 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9097 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9098 if (!SWIG_IsOK(ecode2
)) {
9099 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Icon_SetWidth" "', expected argument " "2"" of type '" "int""'");
9101 arg2
= static_cast< int >(val2
);
9103 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9104 (arg1
)->SetWidth(arg2
);
9105 wxPyEndAllowThreads(__tstate
);
9106 if (PyErr_Occurred()) SWIG_fail
;
9108 resultobj
= SWIG_Py_Void();
9115 SWIGINTERN PyObject
*_wrap_Icon_SetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9116 PyObject
*resultobj
= 0;
9117 wxIcon
*arg1
= (wxIcon
*) 0 ;
9123 PyObject
* obj0
= 0 ;
9124 PyObject
* obj1
= 0 ;
9125 char * kwnames
[] = {
9126 (char *) "self",(char *) "h", NULL
9129 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Icon_SetHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9130 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9131 if (!SWIG_IsOK(res1
)) {
9132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_SetHeight" "', expected argument " "1"" of type '" "wxIcon *""'");
9134 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9135 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9136 if (!SWIG_IsOK(ecode2
)) {
9137 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Icon_SetHeight" "', expected argument " "2"" of type '" "int""'");
9139 arg2
= static_cast< int >(val2
);
9141 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9142 (arg1
)->SetHeight(arg2
);
9143 wxPyEndAllowThreads(__tstate
);
9144 if (PyErr_Occurred()) SWIG_fail
;
9146 resultobj
= SWIG_Py_Void();
9153 SWIGINTERN PyObject
*_wrap_Icon_SetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9154 PyObject
*resultobj
= 0;
9155 wxIcon
*arg1
= (wxIcon
*) 0 ;
9161 PyObject
* obj0
= 0 ;
9162 PyObject
* obj1
= 0 ;
9163 char * kwnames
[] = {
9164 (char *) "self",(char *) "d", NULL
9167 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Icon_SetDepth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9168 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9169 if (!SWIG_IsOK(res1
)) {
9170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_SetDepth" "', expected argument " "1"" of type '" "wxIcon *""'");
9172 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9173 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9174 if (!SWIG_IsOK(ecode2
)) {
9175 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Icon_SetDepth" "', expected argument " "2"" of type '" "int""'");
9177 arg2
= static_cast< int >(val2
);
9179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9180 (arg1
)->SetDepth(arg2
);
9181 wxPyEndAllowThreads(__tstate
);
9182 if (PyErr_Occurred()) SWIG_fail
;
9184 resultobj
= SWIG_Py_Void();
9191 SWIGINTERN PyObject
*_wrap_Icon_CopyFromBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9192 PyObject
*resultobj
= 0;
9193 wxIcon
*arg1
= (wxIcon
*) 0 ;
9194 wxBitmap
*arg2
= 0 ;
9199 PyObject
* obj0
= 0 ;
9200 PyObject
* obj1
= 0 ;
9201 char * kwnames
[] = {
9202 (char *) "self",(char *) "bmp", NULL
9205 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Icon_CopyFromBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9206 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIcon
, 0 | 0 );
9207 if (!SWIG_IsOK(res1
)) {
9208 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Icon_CopyFromBitmap" "', expected argument " "1"" of type '" "wxIcon *""'");
9210 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9211 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
9212 if (!SWIG_IsOK(res2
)) {
9213 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Icon_CopyFromBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
9216 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Icon_CopyFromBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
9218 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
9220 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9221 (arg1
)->CopyFromBitmap((wxBitmap
const &)*arg2
);
9222 wxPyEndAllowThreads(__tstate
);
9223 if (PyErr_Occurred()) SWIG_fail
;
9225 resultobj
= SWIG_Py_Void();
9232 SWIGINTERN PyObject
*Icon_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9234 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9235 SWIG_TypeNewClientData(SWIGTYPE_p_wxIcon
, SWIG_NewClientData(obj
));
9236 return SWIG_Py_Void();
9239 SWIGINTERN PyObject
*Icon_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9240 return SWIG_Python_InitShadowInstance(args
);
9243 SWIGINTERN PyObject
*_wrap_new_IconLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9244 PyObject
*resultobj
= 0;
9245 wxString
*arg1
= (wxString
*) &wxPyEmptyString
;
9246 int arg2
= (int) 0 ;
9247 wxIconLocation
*result
= 0 ;
9248 bool temp1
= false ;
9251 PyObject
* obj0
= 0 ;
9252 PyObject
* obj1
= 0 ;
9253 char * kwnames
[] = {
9254 (char *) "filename",(char *) "num", NULL
9257 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_IconLocation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9260 arg1
= wxString_in_helper(obj0
);
9261 if (arg1
== NULL
) SWIG_fail
;
9266 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9267 if (!SWIG_IsOK(ecode2
)) {
9268 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_IconLocation" "', expected argument " "2"" of type '" "int""'");
9270 arg2
= static_cast< int >(val2
);
9273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9274 result
= (wxIconLocation
*)new_wxIconLocation((wxString
const *)arg1
,arg2
);
9275 wxPyEndAllowThreads(__tstate
);
9276 if (PyErr_Occurred()) SWIG_fail
;
9278 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconLocation
, SWIG_POINTER_NEW
| 0 );
9293 SWIGINTERN PyObject
*_wrap_delete_IconLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9294 PyObject
*resultobj
= 0;
9295 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9298 PyObject
*swig_obj
[1] ;
9300 if (!args
) SWIG_fail
;
9302 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIconLocation
, SWIG_POINTER_DISOWN
| 0 );
9303 if (!SWIG_IsOK(res1
)) {
9304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_IconLocation" "', expected argument " "1"" of type '" "wxIconLocation *""'");
9306 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9311 wxPyEndAllowThreads(__tstate
);
9312 if (PyErr_Occurred()) SWIG_fail
;
9314 resultobj
= SWIG_Py_Void();
9321 SWIGINTERN PyObject
*_wrap_IconLocation_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9322 PyObject
*resultobj
= 0;
9323 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9327 PyObject
*swig_obj
[1] ;
9329 if (!args
) SWIG_fail
;
9331 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIconLocation
, 0 | 0 );
9332 if (!SWIG_IsOK(res1
)) {
9333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconLocation_IsOk" "', expected argument " "1"" of type '" "wxIconLocation const *""'");
9335 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9338 result
= (bool)((wxIconLocation
const *)arg1
)->IsOk();
9339 wxPyEndAllowThreads(__tstate
);
9340 if (PyErr_Occurred()) SWIG_fail
;
9343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9351 SWIGINTERN PyObject
*_wrap_IconLocation_SetFileName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9352 PyObject
*resultobj
= 0;
9353 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9354 wxString
*arg2
= 0 ;
9357 bool temp2
= false ;
9358 PyObject
* obj0
= 0 ;
9359 PyObject
* obj1
= 0 ;
9360 char * kwnames
[] = {
9361 (char *) "self",(char *) "filename", NULL
9364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IconLocation_SetFileName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9365 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIconLocation
, 0 | 0 );
9366 if (!SWIG_IsOK(res1
)) {
9367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconLocation_SetFileName" "', expected argument " "1"" of type '" "wxIconLocation *""'");
9369 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9371 arg2
= wxString_in_helper(obj1
);
9372 if (arg2
== NULL
) SWIG_fail
;
9376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9377 (arg1
)->SetFileName((wxString
const &)*arg2
);
9378 wxPyEndAllowThreads(__tstate
);
9379 if (PyErr_Occurred()) SWIG_fail
;
9381 resultobj
= SWIG_Py_Void();
9396 SWIGINTERN PyObject
*_wrap_IconLocation_GetFileName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9397 PyObject
*resultobj
= 0;
9398 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9399 wxString
*result
= 0 ;
9402 PyObject
*swig_obj
[1] ;
9404 if (!args
) SWIG_fail
;
9406 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIconLocation
, 0 | 0 );
9407 if (!SWIG_IsOK(res1
)) {
9408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconLocation_GetFileName" "', expected argument " "1"" of type '" "wxIconLocation const *""'");
9410 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9414 wxString
const &_result_ref
= ((wxIconLocation
const *)arg1
)->GetFileName();
9415 result
= (wxString
*) &_result_ref
;
9417 wxPyEndAllowThreads(__tstate
);
9418 if (PyErr_Occurred()) SWIG_fail
;
9422 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
9424 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
9433 SWIGINTERN PyObject
*_wrap_IconLocation_SetIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9434 PyObject
*resultobj
= 0;
9435 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9441 PyObject
* obj0
= 0 ;
9442 PyObject
* obj1
= 0 ;
9443 char * kwnames
[] = {
9444 (char *) "self",(char *) "num", NULL
9447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IconLocation_SetIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIconLocation
, 0 | 0 );
9449 if (!SWIG_IsOK(res1
)) {
9450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconLocation_SetIndex" "', expected argument " "1"" of type '" "wxIconLocation *""'");
9452 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9453 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9454 if (!SWIG_IsOK(ecode2
)) {
9455 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "IconLocation_SetIndex" "', expected argument " "2"" of type '" "int""'");
9457 arg2
= static_cast< int >(val2
);
9459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9460 wxIconLocation_SetIndex(arg1
,arg2
);
9461 wxPyEndAllowThreads(__tstate
);
9462 if (PyErr_Occurred()) SWIG_fail
;
9464 resultobj
= SWIG_Py_Void();
9471 SWIGINTERN PyObject
*_wrap_IconLocation_GetIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9472 PyObject
*resultobj
= 0;
9473 wxIconLocation
*arg1
= (wxIconLocation
*) 0 ;
9477 PyObject
*swig_obj
[1] ;
9479 if (!args
) SWIG_fail
;
9481 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIconLocation
, 0 | 0 );
9482 if (!SWIG_IsOK(res1
)) {
9483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconLocation_GetIndex" "', expected argument " "1"" of type '" "wxIconLocation *""'");
9485 arg1
= reinterpret_cast< wxIconLocation
* >(argp1
);
9487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9488 result
= (int)wxIconLocation_GetIndex(arg1
);
9489 wxPyEndAllowThreads(__tstate
);
9490 if (PyErr_Occurred()) SWIG_fail
;
9492 resultobj
= SWIG_From_int(static_cast< int >(result
));
9499 SWIGINTERN PyObject
*IconLocation_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9501 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9502 SWIG_TypeNewClientData(SWIGTYPE_p_wxIconLocation
, SWIG_NewClientData(obj
));
9503 return SWIG_Py_Void();
9506 SWIGINTERN PyObject
*IconLocation_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9507 return SWIG_Python_InitShadowInstance(args
);
9510 SWIGINTERN PyObject
*_wrap_new_IconBundle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9511 PyObject
*resultobj
= 0;
9512 wxIconBundle
*result
= 0 ;
9514 if (!SWIG_Python_UnpackTuple(args
,"new_IconBundle",0,0,0)) SWIG_fail
;
9516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9517 result
= (wxIconBundle
*)new wxIconBundle();
9518 wxPyEndAllowThreads(__tstate
);
9519 if (PyErr_Occurred()) SWIG_fail
;
9521 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconBundle
, SWIG_POINTER_NEW
| 0 );
9528 SWIGINTERN PyObject
*_wrap_new_IconBundleFromFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9529 PyObject
*resultobj
= 0;
9530 wxString
*arg1
= 0 ;
9532 wxIconBundle
*result
= 0 ;
9533 bool temp1
= false ;
9536 PyObject
* obj0
= 0 ;
9537 PyObject
* obj1
= 0 ;
9538 char * kwnames
[] = {
9539 (char *) "file",(char *) "type", NULL
9542 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_IconBundleFromFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9544 arg1
= wxString_in_helper(obj0
);
9545 if (arg1
== NULL
) SWIG_fail
;
9548 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
9549 if (!SWIG_IsOK(ecode2
)) {
9550 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_IconBundleFromFile" "', expected argument " "2"" of type '" "long""'");
9552 arg2
= static_cast< long >(val2
);
9554 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9555 result
= (wxIconBundle
*)new wxIconBundle((wxString
const &)*arg1
,arg2
);
9556 wxPyEndAllowThreads(__tstate
);
9557 if (PyErr_Occurred()) SWIG_fail
;
9559 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconBundle
, SWIG_POINTER_OWN
| 0 );
9574 SWIGINTERN PyObject
*_wrap_new_IconBundleFromIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9575 PyObject
*resultobj
= 0;
9577 wxIconBundle
*result
= 0 ;
9580 PyObject
* obj0
= 0 ;
9581 char * kwnames
[] = {
9582 (char *) "icon", NULL
9585 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_IconBundleFromIcon",kwnames
,&obj0
)) SWIG_fail
;
9586 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxIcon
, 0 | 0);
9587 if (!SWIG_IsOK(res1
)) {
9588 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_IconBundleFromIcon" "', expected argument " "1"" of type '" "wxIcon const &""'");
9591 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_IconBundleFromIcon" "', expected argument " "1"" of type '" "wxIcon const &""'");
9593 arg1
= reinterpret_cast< wxIcon
* >(argp1
);
9595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9596 result
= (wxIconBundle
*)new wxIconBundle((wxIcon
const &)*arg1
);
9597 wxPyEndAllowThreads(__tstate
);
9598 if (PyErr_Occurred()) SWIG_fail
;
9600 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconBundle
, SWIG_POINTER_OWN
| 0 );
9607 SWIGINTERN PyObject
*_wrap_delete_IconBundle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9608 PyObject
*resultobj
= 0;
9609 wxIconBundle
*arg1
= (wxIconBundle
*) 0 ;
9612 PyObject
*swig_obj
[1] ;
9614 if (!args
) SWIG_fail
;
9616 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxIconBundle
, SWIG_POINTER_DISOWN
| 0 );
9617 if (!SWIG_IsOK(res1
)) {
9618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_IconBundle" "', expected argument " "1"" of type '" "wxIconBundle *""'");
9620 arg1
= reinterpret_cast< wxIconBundle
* >(argp1
);
9622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9625 wxPyEndAllowThreads(__tstate
);
9626 if (PyErr_Occurred()) SWIG_fail
;
9628 resultobj
= SWIG_Py_Void();
9635 SWIGINTERN PyObject
*_wrap_IconBundle_AddIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9636 PyObject
*resultobj
= 0;
9637 wxIconBundle
*arg1
= (wxIconBundle
*) 0 ;
9643 PyObject
* obj0
= 0 ;
9644 PyObject
* obj1
= 0 ;
9645 char * kwnames
[] = {
9646 (char *) "self",(char *) "icon", NULL
9649 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IconBundle_AddIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9650 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIconBundle
, 0 | 0 );
9651 if (!SWIG_IsOK(res1
)) {
9652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconBundle_AddIcon" "', expected argument " "1"" of type '" "wxIconBundle *""'");
9654 arg1
= reinterpret_cast< wxIconBundle
* >(argp1
);
9655 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
9656 if (!SWIG_IsOK(res2
)) {
9657 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "IconBundle_AddIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
9660 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "IconBundle_AddIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
9662 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
9664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9665 (arg1
)->AddIcon((wxIcon
const &)*arg2
);
9666 wxPyEndAllowThreads(__tstate
);
9667 if (PyErr_Occurred()) SWIG_fail
;
9669 resultobj
= SWIG_Py_Void();
9676 SWIGINTERN PyObject
*_wrap_IconBundle_AddIconFromFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9677 PyObject
*resultobj
= 0;
9678 wxIconBundle
*arg1
= (wxIconBundle
*) 0 ;
9679 wxString
*arg2
= 0 ;
9683 bool temp2
= false ;
9686 PyObject
* obj0
= 0 ;
9687 PyObject
* obj1
= 0 ;
9688 PyObject
* obj2
= 0 ;
9689 char * kwnames
[] = {
9690 (char *) "self",(char *) "file",(char *) "type", NULL
9693 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:IconBundle_AddIconFromFile",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9694 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIconBundle
, 0 | 0 );
9695 if (!SWIG_IsOK(res1
)) {
9696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconBundle_AddIconFromFile" "', expected argument " "1"" of type '" "wxIconBundle *""'");
9698 arg1
= reinterpret_cast< wxIconBundle
* >(argp1
);
9700 arg2
= wxString_in_helper(obj1
);
9701 if (arg2
== NULL
) SWIG_fail
;
9704 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
9705 if (!SWIG_IsOK(ecode3
)) {
9706 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "IconBundle_AddIconFromFile" "', expected argument " "3"" of type '" "long""'");
9708 arg3
= static_cast< long >(val3
);
9710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9711 (arg1
)->AddIcon((wxString
const &)*arg2
,arg3
);
9712 wxPyEndAllowThreads(__tstate
);
9713 if (PyErr_Occurred()) SWIG_fail
;
9715 resultobj
= SWIG_Py_Void();
9730 SWIGINTERN PyObject
*_wrap_IconBundle_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9731 PyObject
*resultobj
= 0;
9732 wxIconBundle
*arg1
= (wxIconBundle
*) 0 ;
9734 wxIcon
*result
= 0 ;
9738 PyObject
* obj0
= 0 ;
9739 PyObject
* obj1
= 0 ;
9740 char * kwnames
[] = {
9741 (char *) "self",(char *) "size", NULL
9744 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:IconBundle_GetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9745 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxIconBundle
, 0 | 0 );
9746 if (!SWIG_IsOK(res1
)) {
9747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "IconBundle_GetIcon" "', expected argument " "1"" of type '" "wxIconBundle const *""'");
9749 arg1
= reinterpret_cast< wxIconBundle
* >(argp1
);
9752 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
9755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9757 wxIcon
const &_result_ref
= ((wxIconBundle
const *)arg1
)->GetIcon((wxSize
const &)*arg2
);
9758 result
= (wxIcon
*) &_result_ref
;
9760 wxPyEndAllowThreads(__tstate
);
9761 if (PyErr_Occurred()) SWIG_fail
;
9764 wxIcon
* resultptr
= new wxIcon(*result
);
9765 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxIcon
, 1);
9773 SWIGINTERN PyObject
*IconBundle_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9775 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9776 SWIG_TypeNewClientData(SWIGTYPE_p_wxIconBundle
, SWIG_NewClientData(obj
));
9777 return SWIG_Py_Void();
9780 SWIGINTERN PyObject
*IconBundle_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9781 return SWIG_Python_InitShadowInstance(args
);
9784 SWIGINTERN PyObject
*_wrap_new_Cursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9785 PyObject
*resultobj
= 0;
9786 wxString
*arg1
= 0 ;
9788 int arg3
= (int) 0 ;
9789 int arg4
= (int) 0 ;
9790 wxCursor
*result
= 0 ;
9791 bool temp1
= false ;
9798 PyObject
* obj0
= 0 ;
9799 PyObject
* obj1
= 0 ;
9800 PyObject
* obj2
= 0 ;
9801 PyObject
* obj3
= 0 ;
9802 char * kwnames
[] = {
9803 (char *) "cursorName",(char *) "type",(char *) "hotSpotX",(char *) "hotSpotY", NULL
9806 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_Cursor",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9808 arg1
= wxString_in_helper(obj0
);
9809 if (arg1
== NULL
) SWIG_fail
;
9812 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
9813 if (!SWIG_IsOK(ecode2
)) {
9814 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Cursor" "', expected argument " "2"" of type '" "long""'");
9816 arg2
= static_cast< long >(val2
);
9818 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9819 if (!SWIG_IsOK(ecode3
)) {
9820 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Cursor" "', expected argument " "3"" of type '" "int""'");
9822 arg3
= static_cast< int >(val3
);
9825 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9826 if (!SWIG_IsOK(ecode4
)) {
9827 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_Cursor" "', expected argument " "4"" of type '" "int""'");
9829 arg4
= static_cast< int >(val4
);
9832 if (!wxPyCheckForApp()) SWIG_fail
;
9833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9834 result
= (wxCursor
*)new_wxCursor((wxString
const &)*arg1
,arg2
,arg3
,arg4
);
9835 wxPyEndAllowThreads(__tstate
);
9836 if (PyErr_Occurred()) SWIG_fail
;
9838 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCursor
, SWIG_POINTER_NEW
| 0 );
9853 SWIGINTERN PyObject
*_wrap_delete_Cursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9854 PyObject
*resultobj
= 0;
9855 wxCursor
*arg1
= (wxCursor
*) 0 ;
9858 PyObject
*swig_obj
[1] ;
9860 if (!args
) SWIG_fail
;
9862 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCursor
, SWIG_POINTER_DISOWN
| 0 );
9863 if (!SWIG_IsOK(res1
)) {
9864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Cursor" "', expected argument " "1"" of type '" "wxCursor *""'");
9866 arg1
= reinterpret_cast< wxCursor
* >(argp1
);
9868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9871 wxPyEndAllowThreads(__tstate
);
9872 if (PyErr_Occurred()) SWIG_fail
;
9874 resultobj
= SWIG_Py_Void();
9881 SWIGINTERN PyObject
*_wrap_new_StockCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9882 PyObject
*resultobj
= 0;
9884 wxCursor
*result
= 0 ;
9887 PyObject
* obj0
= 0 ;
9888 char * kwnames
[] = {
9892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_StockCursor",kwnames
,&obj0
)) SWIG_fail
;
9893 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
9894 if (!SWIG_IsOK(ecode1
)) {
9895 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_StockCursor" "', expected argument " "1"" of type '" "int""'");
9897 arg1
= static_cast< int >(val1
);
9899 if (!wxPyCheckForApp()) SWIG_fail
;
9900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9901 result
= (wxCursor
*)new wxCursor(arg1
);
9902 wxPyEndAllowThreads(__tstate
);
9903 if (PyErr_Occurred()) SWIG_fail
;
9905 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCursor
, SWIG_POINTER_OWN
| 0 );
9912 SWIGINTERN PyObject
*_wrap_new_CursorFromImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9913 PyObject
*resultobj
= 0;
9915 wxCursor
*result
= 0 ;
9918 PyObject
* obj0
= 0 ;
9919 char * kwnames
[] = {
9920 (char *) "image", NULL
9923 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_CursorFromImage",kwnames
,&obj0
)) SWIG_fail
;
9924 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxImage
, 0 | 0);
9925 if (!SWIG_IsOK(res1
)) {
9926 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_CursorFromImage" "', expected argument " "1"" of type '" "wxImage const &""'");
9929 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_CursorFromImage" "', expected argument " "1"" of type '" "wxImage const &""'");
9931 arg1
= reinterpret_cast< wxImage
* >(argp1
);
9933 if (!wxPyCheckForApp()) SWIG_fail
;
9934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9935 result
= (wxCursor
*)new wxCursor((wxImage
const &)*arg1
);
9936 wxPyEndAllowThreads(__tstate
);
9937 if (PyErr_Occurred()) SWIG_fail
;
9939 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCursor
, SWIG_POINTER_OWN
| 0 );
9946 SWIGINTERN PyObject
*_wrap_Cursor_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9947 PyObject
*resultobj
= 0;
9948 wxCursor
*arg1
= (wxCursor
*) 0 ;
9952 PyObject
*swig_obj
[1] ;
9954 if (!args
) SWIG_fail
;
9956 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCursor
, 0 | 0 );
9957 if (!SWIG_IsOK(res1
)) {
9958 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Cursor_IsOk" "', expected argument " "1"" of type '" "wxCursor *""'");
9960 arg1
= reinterpret_cast< wxCursor
* >(argp1
);
9962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9963 result
= (bool)(arg1
)->IsOk();
9964 wxPyEndAllowThreads(__tstate
);
9965 if (PyErr_Occurred()) SWIG_fail
;
9968 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9976 SWIGINTERN PyObject
*Cursor_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9978 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9979 SWIG_TypeNewClientData(SWIGTYPE_p_wxCursor
, SWIG_NewClientData(obj
));
9980 return SWIG_Py_Void();
9983 SWIGINTERN PyObject
*Cursor_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9984 return SWIG_Python_InitShadowInstance(args
);
9987 SWIGINTERN PyObject
*_wrap_new_Region(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9988 PyObject
*resultobj
= 0;
9989 int arg1
= (int) 0 ;
9990 int arg2
= (int) 0 ;
9991 int arg3
= (int) 0 ;
9992 int arg4
= (int) 0 ;
9993 wxRegion
*result
= 0 ;
10002 PyObject
* obj0
= 0 ;
10003 PyObject
* obj1
= 0 ;
10004 PyObject
* obj2
= 0 ;
10005 PyObject
* obj3
= 0 ;
10006 char * kwnames
[] = {
10007 (char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
10010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_Region",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10012 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10013 if (!SWIG_IsOK(ecode1
)) {
10014 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Region" "', expected argument " "1"" of type '" "int""'");
10016 arg1
= static_cast< int >(val1
);
10019 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10020 if (!SWIG_IsOK(ecode2
)) {
10021 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Region" "', expected argument " "2"" of type '" "int""'");
10023 arg2
= static_cast< int >(val2
);
10026 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10027 if (!SWIG_IsOK(ecode3
)) {
10028 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Region" "', expected argument " "3"" of type '" "int""'");
10030 arg3
= static_cast< int >(val3
);
10033 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10034 if (!SWIG_IsOK(ecode4
)) {
10035 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_Region" "', expected argument " "4"" of type '" "int""'");
10037 arg4
= static_cast< int >(val4
);
10040 if (!wxPyCheckForApp()) SWIG_fail
;
10041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10042 result
= (wxRegion
*)new wxRegion(arg1
,arg2
,arg3
,arg4
);
10043 wxPyEndAllowThreads(__tstate
);
10044 if (PyErr_Occurred()) SWIG_fail
;
10046 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRegion
, SWIG_POINTER_NEW
| 0 );
10053 SWIGINTERN PyObject
*_wrap_new_RegionFromBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10054 PyObject
*resultobj
= 0;
10055 wxBitmap
*arg1
= 0 ;
10056 wxRegion
*result
= 0 ;
10059 PyObject
* obj0
= 0 ;
10060 char * kwnames
[] = {
10061 (char *) "bmp", NULL
10064 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_RegionFromBitmap",kwnames
,&obj0
)) SWIG_fail
;
10065 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
10066 if (!SWIG_IsOK(res1
)) {
10067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_RegionFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
10070 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_RegionFromBitmap" "', expected argument " "1"" of type '" "wxBitmap const &""'");
10072 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
10074 if (!wxPyCheckForApp()) SWIG_fail
;
10075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10076 result
= (wxRegion
*)new wxRegion((wxBitmap
const &)*arg1
);
10077 wxPyEndAllowThreads(__tstate
);
10078 if (PyErr_Occurred()) SWIG_fail
;
10080 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRegion
, SWIG_POINTER_OWN
| 0 );
10087 SWIGINTERN PyObject
*_wrap_new_RegionFromBitmapColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10088 PyObject
*resultobj
= 0;
10089 wxBitmap
*arg1
= 0 ;
10090 wxColour
*arg2
= 0 ;
10091 int arg3
= (int) 0 ;
10092 wxRegion
*result
= 0 ;
10098 PyObject
* obj0
= 0 ;
10099 PyObject
* obj1
= 0 ;
10100 PyObject
* obj2
= 0 ;
10101 char * kwnames
[] = {
10102 (char *) "bmp",(char *) "transColour",(char *) "tolerance", NULL
10105 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:new_RegionFromBitmapColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10106 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
10107 if (!SWIG_IsOK(res1
)) {
10108 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_RegionFromBitmapColour" "', expected argument " "1"" of type '" "wxBitmap const &""'");
10111 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_RegionFromBitmapColour" "', expected argument " "1"" of type '" "wxBitmap const &""'");
10113 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
10116 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10119 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10120 if (!SWIG_IsOK(ecode3
)) {
10121 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_RegionFromBitmapColour" "', expected argument " "3"" of type '" "int""'");
10123 arg3
= static_cast< int >(val3
);
10126 if (!wxPyCheckForApp()) SWIG_fail
;
10127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10128 result
= (wxRegion
*)new wxRegion((wxBitmap
const &)*arg1
,(wxColour
const &)*arg2
,arg3
);
10129 wxPyEndAllowThreads(__tstate
);
10130 if (PyErr_Occurred()) SWIG_fail
;
10132 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRegion
, SWIG_POINTER_OWN
| 0 );
10139 SWIGINTERN PyObject
*_wrap_new_RegionFromPoints(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10140 PyObject
*resultobj
= 0;
10142 wxPoint
*arg2
= (wxPoint
*) 0 ;
10143 int arg3
= (int) wxWINDING_RULE
;
10144 wxRegion
*result
= 0 ;
10147 PyObject
* obj0
= 0 ;
10148 PyObject
* obj1
= 0 ;
10149 char * kwnames
[] = {
10150 (char *) "points",(char *) "fillStyle", NULL
10153 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_RegionFromPoints",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10155 arg2
= wxPoint_LIST_helper(obj0
, &arg1
);
10156 if (arg2
== NULL
) SWIG_fail
;
10159 ecode3
= SWIG_AsVal_int(obj1
, &val3
);
10160 if (!SWIG_IsOK(ecode3
)) {
10161 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_RegionFromPoints" "', expected argument " "3"" of type '" "int""'");
10163 arg3
= static_cast< int >(val3
);
10166 if (!wxPyCheckForApp()) SWIG_fail
;
10167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10168 result
= (wxRegion
*)new wxRegion(arg1
,arg2
,arg3
);
10169 wxPyEndAllowThreads(__tstate
);
10170 if (PyErr_Occurred()) SWIG_fail
;
10172 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRegion
, SWIG_POINTER_OWN
| 0 );
10174 if (arg2
) delete [] arg2
;
10179 if (arg2
) delete [] arg2
;
10185 SWIGINTERN PyObject
*_wrap_delete_Region(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10186 PyObject
*resultobj
= 0;
10187 wxRegion
*arg1
= (wxRegion
*) 0 ;
10190 PyObject
*swig_obj
[1] ;
10192 if (!args
) SWIG_fail
;
10193 swig_obj
[0] = args
;
10194 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegion
, SWIG_POINTER_DISOWN
| 0 );
10195 if (!SWIG_IsOK(res1
)) {
10196 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Region" "', expected argument " "1"" of type '" "wxRegion *""'");
10198 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10203 wxPyEndAllowThreads(__tstate
);
10204 if (PyErr_Occurred()) SWIG_fail
;
10206 resultobj
= SWIG_Py_Void();
10213 SWIGINTERN PyObject
*_wrap_Region_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10214 PyObject
*resultobj
= 0;
10215 wxRegion
*arg1
= (wxRegion
*) 0 ;
10218 PyObject
*swig_obj
[1] ;
10220 if (!args
) SWIG_fail
;
10221 swig_obj
[0] = args
;
10222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10223 if (!SWIG_IsOK(res1
)) {
10224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Clear" "', expected argument " "1"" of type '" "wxRegion *""'");
10226 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10230 wxPyEndAllowThreads(__tstate
);
10231 if (PyErr_Occurred()) SWIG_fail
;
10233 resultobj
= SWIG_Py_Void();
10240 SWIGINTERN PyObject
*_wrap_Region_Offset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10241 PyObject
*resultobj
= 0;
10242 wxRegion
*arg1
= (wxRegion
*) 0 ;
10252 PyObject
* obj0
= 0 ;
10253 PyObject
* obj1
= 0 ;
10254 PyObject
* obj2
= 0 ;
10255 char * kwnames
[] = {
10256 (char *) "self",(char *) "x",(char *) "y", NULL
10259 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Region_Offset",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10260 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10261 if (!SWIG_IsOK(res1
)) {
10262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Offset" "', expected argument " "1"" of type '" "wxRegion *""'");
10264 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10265 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10266 if (!SWIG_IsOK(ecode2
)) {
10267 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Offset" "', expected argument " "2"" of type '" "int""'");
10269 arg2
= static_cast< int >(val2
);
10270 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10271 if (!SWIG_IsOK(ecode3
)) {
10272 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Offset" "', expected argument " "3"" of type '" "int""'");
10274 arg3
= static_cast< int >(val3
);
10276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10277 result
= (bool)(arg1
)->Offset(arg2
,arg3
);
10278 wxPyEndAllowThreads(__tstate
);
10279 if (PyErr_Occurred()) SWIG_fail
;
10282 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10290 SWIGINTERN PyObject
*_wrap_Region_Contains(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10291 PyObject
*resultobj
= 0;
10292 wxRegion
*arg1
= (wxRegion
*) 0 ;
10295 wxRegionContain result
;
10302 PyObject
* obj0
= 0 ;
10303 PyObject
* obj1
= 0 ;
10304 PyObject
* obj2
= 0 ;
10305 char * kwnames
[] = {
10306 (char *) "self",(char *) "x",(char *) "y", NULL
10309 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Region_Contains",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10310 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10311 if (!SWIG_IsOK(res1
)) {
10312 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Contains" "', expected argument " "1"" of type '" "wxRegion *""'");
10314 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10315 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10316 if (!SWIG_IsOK(ecode2
)) {
10317 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Contains" "', expected argument " "2"" of type '" "int""'");
10319 arg2
= static_cast< int >(val2
);
10320 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10321 if (!SWIG_IsOK(ecode3
)) {
10322 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Contains" "', expected argument " "3"" of type '" "int""'");
10324 arg3
= static_cast< int >(val3
);
10326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10327 result
= (wxRegionContain
)(arg1
)->Contains(arg2
,arg3
);
10328 wxPyEndAllowThreads(__tstate
);
10329 if (PyErr_Occurred()) SWIG_fail
;
10331 resultobj
= SWIG_From_int(static_cast< int >(result
));
10338 SWIGINTERN PyObject
*_wrap_Region_ContainsPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10339 PyObject
*resultobj
= 0;
10340 wxRegion
*arg1
= (wxRegion
*) 0 ;
10341 wxPoint
*arg2
= 0 ;
10342 wxRegionContain result
;
10346 PyObject
* obj0
= 0 ;
10347 PyObject
* obj1
= 0 ;
10348 char * kwnames
[] = {
10349 (char *) "self",(char *) "pt", NULL
10352 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_ContainsPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10353 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10354 if (!SWIG_IsOK(res1
)) {
10355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_ContainsPoint" "', expected argument " "1"" of type '" "wxRegion *""'");
10357 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10360 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
10363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10364 result
= (wxRegionContain
)(arg1
)->Contains((wxPoint
const &)*arg2
);
10365 wxPyEndAllowThreads(__tstate
);
10366 if (PyErr_Occurred()) SWIG_fail
;
10368 resultobj
= SWIG_From_int(static_cast< int >(result
));
10375 SWIGINTERN PyObject
*_wrap_Region_ContainsRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10376 PyObject
*resultobj
= 0;
10377 wxRegion
*arg1
= (wxRegion
*) 0 ;
10379 wxRegionContain result
;
10383 PyObject
* obj0
= 0 ;
10384 PyObject
* obj1
= 0 ;
10385 char * kwnames
[] = {
10386 (char *) "self",(char *) "rect", NULL
10389 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_ContainsRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10390 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10391 if (!SWIG_IsOK(res1
)) {
10392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_ContainsRect" "', expected argument " "1"" of type '" "wxRegion *""'");
10394 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10397 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
10400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10401 result
= (wxRegionContain
)(arg1
)->Contains((wxRect
const &)*arg2
);
10402 wxPyEndAllowThreads(__tstate
);
10403 if (PyErr_Occurred()) SWIG_fail
;
10405 resultobj
= SWIG_From_int(static_cast< int >(result
));
10412 SWIGINTERN PyObject
*_wrap_Region_ContainsRectDim(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10413 PyObject
*resultobj
= 0;
10414 wxRegion
*arg1
= (wxRegion
*) 0 ;
10419 wxRegionContain result
;
10430 PyObject
* obj0
= 0 ;
10431 PyObject
* obj1
= 0 ;
10432 PyObject
* obj2
= 0 ;
10433 PyObject
* obj3
= 0 ;
10434 PyObject
* obj4
= 0 ;
10435 char * kwnames
[] = {
10436 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
10439 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:Region_ContainsRectDim",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10440 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10441 if (!SWIG_IsOK(res1
)) {
10442 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_ContainsRectDim" "', expected argument " "1"" of type '" "wxRegion *""'");
10444 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10445 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10446 if (!SWIG_IsOK(ecode2
)) {
10447 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_ContainsRectDim" "', expected argument " "2"" of type '" "int""'");
10449 arg2
= static_cast< int >(val2
);
10450 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10451 if (!SWIG_IsOK(ecode3
)) {
10452 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_ContainsRectDim" "', expected argument " "3"" of type '" "int""'");
10454 arg3
= static_cast< int >(val3
);
10455 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10456 if (!SWIG_IsOK(ecode4
)) {
10457 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_ContainsRectDim" "', expected argument " "4"" of type '" "int""'");
10459 arg4
= static_cast< int >(val4
);
10460 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10461 if (!SWIG_IsOK(ecode5
)) {
10462 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Region_ContainsRectDim" "', expected argument " "5"" of type '" "int""'");
10464 arg5
= static_cast< int >(val5
);
10466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10467 result
= (wxRegionContain
)(arg1
)->Contains(arg2
,arg3
,arg4
,arg5
);
10468 wxPyEndAllowThreads(__tstate
);
10469 if (PyErr_Occurred()) SWIG_fail
;
10471 resultobj
= SWIG_From_int(static_cast< int >(result
));
10478 SWIGINTERN PyObject
*_wrap_Region_GetBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10479 PyObject
*resultobj
= 0;
10480 wxRegion
*arg1
= (wxRegion
*) 0 ;
10484 PyObject
*swig_obj
[1] ;
10486 if (!args
) SWIG_fail
;
10487 swig_obj
[0] = args
;
10488 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10489 if (!SWIG_IsOK(res1
)) {
10490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_GetBox" "', expected argument " "1"" of type '" "wxRegion *""'");
10492 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10494 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10495 result
= (arg1
)->GetBox();
10496 wxPyEndAllowThreads(__tstate
);
10497 if (PyErr_Occurred()) SWIG_fail
;
10499 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
10506 SWIGINTERN PyObject
*_wrap_Region_Intersect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10507 PyObject
*resultobj
= 0;
10508 wxRegion
*arg1
= (wxRegion
*) 0 ;
10524 PyObject
* obj0
= 0 ;
10525 PyObject
* obj1
= 0 ;
10526 PyObject
* obj2
= 0 ;
10527 PyObject
* obj3
= 0 ;
10528 PyObject
* obj4
= 0 ;
10529 char * kwnames
[] = {
10530 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
10533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:Region_Intersect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10535 if (!SWIG_IsOK(res1
)) {
10536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Intersect" "', expected argument " "1"" of type '" "wxRegion *""'");
10538 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10539 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10540 if (!SWIG_IsOK(ecode2
)) {
10541 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Intersect" "', expected argument " "2"" of type '" "int""'");
10543 arg2
= static_cast< int >(val2
);
10544 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10545 if (!SWIG_IsOK(ecode3
)) {
10546 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Intersect" "', expected argument " "3"" of type '" "int""'");
10548 arg3
= static_cast< int >(val3
);
10549 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10550 if (!SWIG_IsOK(ecode4
)) {
10551 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_Intersect" "', expected argument " "4"" of type '" "int""'");
10553 arg4
= static_cast< int >(val4
);
10554 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10555 if (!SWIG_IsOK(ecode5
)) {
10556 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Region_Intersect" "', expected argument " "5"" of type '" "int""'");
10558 arg5
= static_cast< int >(val5
);
10560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10561 result
= (bool)(arg1
)->Intersect(arg2
,arg3
,arg4
,arg5
);
10562 wxPyEndAllowThreads(__tstate
);
10563 if (PyErr_Occurred()) SWIG_fail
;
10566 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10574 SWIGINTERN PyObject
*_wrap_Region_IntersectRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10575 PyObject
*resultobj
= 0;
10576 wxRegion
*arg1
= (wxRegion
*) 0 ;
10582 PyObject
* obj0
= 0 ;
10583 PyObject
* obj1
= 0 ;
10584 char * kwnames
[] = {
10585 (char *) "self",(char *) "rect", NULL
10588 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_IntersectRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10589 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10590 if (!SWIG_IsOK(res1
)) {
10591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_IntersectRect" "', expected argument " "1"" of type '" "wxRegion *""'");
10593 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10596 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
10599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10600 result
= (bool)(arg1
)->Intersect((wxRect
const &)*arg2
);
10601 wxPyEndAllowThreads(__tstate
);
10602 if (PyErr_Occurred()) SWIG_fail
;
10605 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10613 SWIGINTERN PyObject
*_wrap_Region_IntersectRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10614 PyObject
*resultobj
= 0;
10615 wxRegion
*arg1
= (wxRegion
*) 0 ;
10616 wxRegion
*arg2
= 0 ;
10622 PyObject
* obj0
= 0 ;
10623 PyObject
* obj1
= 0 ;
10624 char * kwnames
[] = {
10625 (char *) "self",(char *) "region", NULL
10628 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_IntersectRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10629 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10630 if (!SWIG_IsOK(res1
)) {
10631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_IntersectRegion" "', expected argument " "1"" of type '" "wxRegion *""'");
10633 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10634 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
10635 if (!SWIG_IsOK(res2
)) {
10636 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_IntersectRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
10639 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_IntersectRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
10641 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
10643 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10644 result
= (bool)(arg1
)->Intersect((wxRegion
const &)*arg2
);
10645 wxPyEndAllowThreads(__tstate
);
10646 if (PyErr_Occurred()) SWIG_fail
;
10649 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10657 SWIGINTERN PyObject
*_wrap_Region_IsEmpty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10658 PyObject
*resultobj
= 0;
10659 wxRegion
*arg1
= (wxRegion
*) 0 ;
10663 PyObject
*swig_obj
[1] ;
10665 if (!args
) SWIG_fail
;
10666 swig_obj
[0] = args
;
10667 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10668 if (!SWIG_IsOK(res1
)) {
10669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_IsEmpty" "', expected argument " "1"" of type '" "wxRegion *""'");
10671 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10674 result
= (bool)(arg1
)->IsEmpty();
10675 wxPyEndAllowThreads(__tstate
);
10676 if (PyErr_Occurred()) SWIG_fail
;
10679 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10687 SWIGINTERN PyObject
*_wrap_Region_IsEqual(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10688 PyObject
*resultobj
= 0;
10689 wxRegion
*arg1
= (wxRegion
*) 0 ;
10690 wxRegion
*arg2
= 0 ;
10696 PyObject
* obj0
= 0 ;
10697 PyObject
* obj1
= 0 ;
10698 char * kwnames
[] = {
10699 (char *) "self",(char *) "region", NULL
10702 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_IsEqual",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10703 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10704 if (!SWIG_IsOK(res1
)) {
10705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_IsEqual" "', expected argument " "1"" of type '" "wxRegion const *""'");
10707 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10708 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
10709 if (!SWIG_IsOK(res2
)) {
10710 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_IsEqual" "', expected argument " "2"" of type '" "wxRegion const &""'");
10713 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_IsEqual" "', expected argument " "2"" of type '" "wxRegion const &""'");
10715 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
10717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10718 result
= (bool)((wxRegion
const *)arg1
)->IsEqual((wxRegion
const &)*arg2
);
10719 wxPyEndAllowThreads(__tstate
);
10720 if (PyErr_Occurred()) SWIG_fail
;
10723 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10731 SWIGINTERN PyObject
*_wrap_Region_Union(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10732 PyObject
*resultobj
= 0;
10733 wxRegion
*arg1
= (wxRegion
*) 0 ;
10749 PyObject
* obj0
= 0 ;
10750 PyObject
* obj1
= 0 ;
10751 PyObject
* obj2
= 0 ;
10752 PyObject
* obj3
= 0 ;
10753 PyObject
* obj4
= 0 ;
10754 char * kwnames
[] = {
10755 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
10758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:Region_Union",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10760 if (!SWIG_IsOK(res1
)) {
10761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Union" "', expected argument " "1"" of type '" "wxRegion *""'");
10763 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10764 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10765 if (!SWIG_IsOK(ecode2
)) {
10766 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Union" "', expected argument " "2"" of type '" "int""'");
10768 arg2
= static_cast< int >(val2
);
10769 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10770 if (!SWIG_IsOK(ecode3
)) {
10771 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Union" "', expected argument " "3"" of type '" "int""'");
10773 arg3
= static_cast< int >(val3
);
10774 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10775 if (!SWIG_IsOK(ecode4
)) {
10776 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_Union" "', expected argument " "4"" of type '" "int""'");
10778 arg4
= static_cast< int >(val4
);
10779 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10780 if (!SWIG_IsOK(ecode5
)) {
10781 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Region_Union" "', expected argument " "5"" of type '" "int""'");
10783 arg5
= static_cast< int >(val5
);
10785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10786 result
= (bool)(arg1
)->Union(arg2
,arg3
,arg4
,arg5
);
10787 wxPyEndAllowThreads(__tstate
);
10788 if (PyErr_Occurred()) SWIG_fail
;
10791 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10799 SWIGINTERN PyObject
*_wrap_Region_UnionRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10800 PyObject
*resultobj
= 0;
10801 wxRegion
*arg1
= (wxRegion
*) 0 ;
10807 PyObject
* obj0
= 0 ;
10808 PyObject
* obj1
= 0 ;
10809 char * kwnames
[] = {
10810 (char *) "self",(char *) "rect", NULL
10813 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_UnionRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10814 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10815 if (!SWIG_IsOK(res1
)) {
10816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_UnionRect" "', expected argument " "1"" of type '" "wxRegion *""'");
10818 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10821 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
10824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10825 result
= (bool)(arg1
)->Union((wxRect
const &)*arg2
);
10826 wxPyEndAllowThreads(__tstate
);
10827 if (PyErr_Occurred()) SWIG_fail
;
10830 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10838 SWIGINTERN PyObject
*_wrap_Region_UnionRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10839 PyObject
*resultobj
= 0;
10840 wxRegion
*arg1
= (wxRegion
*) 0 ;
10841 wxRegion
*arg2
= 0 ;
10847 PyObject
* obj0
= 0 ;
10848 PyObject
* obj1
= 0 ;
10849 char * kwnames
[] = {
10850 (char *) "self",(char *) "region", NULL
10853 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_UnionRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10854 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10855 if (!SWIG_IsOK(res1
)) {
10856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_UnionRegion" "', expected argument " "1"" of type '" "wxRegion *""'");
10858 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10859 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
10860 if (!SWIG_IsOK(res2
)) {
10861 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_UnionRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
10864 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_UnionRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
10866 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
10868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10869 result
= (bool)(arg1
)->Union((wxRegion
const &)*arg2
);
10870 wxPyEndAllowThreads(__tstate
);
10871 if (PyErr_Occurred()) SWIG_fail
;
10874 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10882 SWIGINTERN PyObject
*_wrap_Region_Subtract(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10883 PyObject
*resultobj
= 0;
10884 wxRegion
*arg1
= (wxRegion
*) 0 ;
10900 PyObject
* obj0
= 0 ;
10901 PyObject
* obj1
= 0 ;
10902 PyObject
* obj2
= 0 ;
10903 PyObject
* obj3
= 0 ;
10904 PyObject
* obj4
= 0 ;
10905 char * kwnames
[] = {
10906 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
10909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:Region_Subtract",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10911 if (!SWIG_IsOK(res1
)) {
10912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Subtract" "', expected argument " "1"" of type '" "wxRegion *""'");
10914 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10915 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10916 if (!SWIG_IsOK(ecode2
)) {
10917 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Subtract" "', expected argument " "2"" of type '" "int""'");
10919 arg2
= static_cast< int >(val2
);
10920 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10921 if (!SWIG_IsOK(ecode3
)) {
10922 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Subtract" "', expected argument " "3"" of type '" "int""'");
10924 arg3
= static_cast< int >(val3
);
10925 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10926 if (!SWIG_IsOK(ecode4
)) {
10927 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_Subtract" "', expected argument " "4"" of type '" "int""'");
10929 arg4
= static_cast< int >(val4
);
10930 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10931 if (!SWIG_IsOK(ecode5
)) {
10932 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Region_Subtract" "', expected argument " "5"" of type '" "int""'");
10934 arg5
= static_cast< int >(val5
);
10936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10937 result
= (bool)(arg1
)->Subtract(arg2
,arg3
,arg4
,arg5
);
10938 wxPyEndAllowThreads(__tstate
);
10939 if (PyErr_Occurred()) SWIG_fail
;
10942 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10950 SWIGINTERN PyObject
*_wrap_Region_SubtractRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10951 PyObject
*resultobj
= 0;
10952 wxRegion
*arg1
= (wxRegion
*) 0 ;
10958 PyObject
* obj0
= 0 ;
10959 PyObject
* obj1
= 0 ;
10960 char * kwnames
[] = {
10961 (char *) "self",(char *) "rect", NULL
10964 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_SubtractRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10965 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
10966 if (!SWIG_IsOK(res1
)) {
10967 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_SubtractRect" "', expected argument " "1"" of type '" "wxRegion *""'");
10969 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
10972 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
10975 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10976 result
= (bool)(arg1
)->Subtract((wxRect
const &)*arg2
);
10977 wxPyEndAllowThreads(__tstate
);
10978 if (PyErr_Occurred()) SWIG_fail
;
10981 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10989 SWIGINTERN PyObject
*_wrap_Region_SubtractRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10990 PyObject
*resultobj
= 0;
10991 wxRegion
*arg1
= (wxRegion
*) 0 ;
10992 wxRegion
*arg2
= 0 ;
10998 PyObject
* obj0
= 0 ;
10999 PyObject
* obj1
= 0 ;
11000 char * kwnames
[] = {
11001 (char *) "self",(char *) "region", NULL
11004 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_SubtractRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11005 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11006 if (!SWIG_IsOK(res1
)) {
11007 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_SubtractRegion" "', expected argument " "1"" of type '" "wxRegion *""'");
11009 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11010 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
11011 if (!SWIG_IsOK(res2
)) {
11012 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_SubtractRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
11015 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_SubtractRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
11017 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
11019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11020 result
= (bool)(arg1
)->Subtract((wxRegion
const &)*arg2
);
11021 wxPyEndAllowThreads(__tstate
);
11022 if (PyErr_Occurred()) SWIG_fail
;
11025 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11033 SWIGINTERN PyObject
*_wrap_Region_Xor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11034 PyObject
*resultobj
= 0;
11035 wxRegion
*arg1
= (wxRegion
*) 0 ;
11051 PyObject
* obj0
= 0 ;
11052 PyObject
* obj1
= 0 ;
11053 PyObject
* obj2
= 0 ;
11054 PyObject
* obj3
= 0 ;
11055 PyObject
* obj4
= 0 ;
11056 char * kwnames
[] = {
11057 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
11060 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:Region_Xor",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11061 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11062 if (!SWIG_IsOK(res1
)) {
11063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_Xor" "', expected argument " "1"" of type '" "wxRegion *""'");
11065 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11066 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11067 if (!SWIG_IsOK(ecode2
)) {
11068 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Region_Xor" "', expected argument " "2"" of type '" "int""'");
11070 arg2
= static_cast< int >(val2
);
11071 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11072 if (!SWIG_IsOK(ecode3
)) {
11073 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Region_Xor" "', expected argument " "3"" of type '" "int""'");
11075 arg3
= static_cast< int >(val3
);
11076 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11077 if (!SWIG_IsOK(ecode4
)) {
11078 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_Xor" "', expected argument " "4"" of type '" "int""'");
11080 arg4
= static_cast< int >(val4
);
11081 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11082 if (!SWIG_IsOK(ecode5
)) {
11083 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Region_Xor" "', expected argument " "5"" of type '" "int""'");
11085 arg5
= static_cast< int >(val5
);
11087 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11088 result
= (bool)(arg1
)->Xor(arg2
,arg3
,arg4
,arg5
);
11089 wxPyEndAllowThreads(__tstate
);
11090 if (PyErr_Occurred()) SWIG_fail
;
11093 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11101 SWIGINTERN PyObject
*_wrap_Region_XorRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11102 PyObject
*resultobj
= 0;
11103 wxRegion
*arg1
= (wxRegion
*) 0 ;
11109 PyObject
* obj0
= 0 ;
11110 PyObject
* obj1
= 0 ;
11111 char * kwnames
[] = {
11112 (char *) "self",(char *) "rect", NULL
11115 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_XorRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11116 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11117 if (!SWIG_IsOK(res1
)) {
11118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_XorRect" "', expected argument " "1"" of type '" "wxRegion *""'");
11120 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11123 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
11126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11127 result
= (bool)(arg1
)->Xor((wxRect
const &)*arg2
);
11128 wxPyEndAllowThreads(__tstate
);
11129 if (PyErr_Occurred()) SWIG_fail
;
11132 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11140 SWIGINTERN PyObject
*_wrap_Region_XorRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11141 PyObject
*resultobj
= 0;
11142 wxRegion
*arg1
= (wxRegion
*) 0 ;
11143 wxRegion
*arg2
= 0 ;
11149 PyObject
* obj0
= 0 ;
11150 PyObject
* obj1
= 0 ;
11151 char * kwnames
[] = {
11152 (char *) "self",(char *) "region", NULL
11155 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_XorRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11156 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11157 if (!SWIG_IsOK(res1
)) {
11158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_XorRegion" "', expected argument " "1"" of type '" "wxRegion *""'");
11160 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11161 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
11162 if (!SWIG_IsOK(res2
)) {
11163 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_XorRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
11166 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_XorRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
11168 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
11170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11171 result
= (bool)(arg1
)->Xor((wxRegion
const &)*arg2
);
11172 wxPyEndAllowThreads(__tstate
);
11173 if (PyErr_Occurred()) SWIG_fail
;
11176 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11184 SWIGINTERN PyObject
*_wrap_Region_ConvertToBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11185 PyObject
*resultobj
= 0;
11186 wxRegion
*arg1
= (wxRegion
*) 0 ;
11187 SwigValueWrapper
<wxBitmap
> result
;
11190 PyObject
*swig_obj
[1] ;
11192 if (!args
) SWIG_fail
;
11193 swig_obj
[0] = args
;
11194 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11195 if (!SWIG_IsOK(res1
)) {
11196 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_ConvertToBitmap" "', expected argument " "1"" of type '" "wxRegion *""'");
11198 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11201 result
= (arg1
)->ConvertToBitmap();
11202 wxPyEndAllowThreads(__tstate
);
11203 if (PyErr_Occurred()) SWIG_fail
;
11205 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
11212 SWIGINTERN PyObject
*_wrap_Region_UnionBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11213 PyObject
*resultobj
= 0;
11214 wxRegion
*arg1
= (wxRegion
*) 0 ;
11215 wxBitmap
*arg2
= 0 ;
11221 PyObject
* obj0
= 0 ;
11222 PyObject
* obj1
= 0 ;
11223 char * kwnames
[] = {
11224 (char *) "self",(char *) "bmp", NULL
11227 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Region_UnionBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11228 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11229 if (!SWIG_IsOK(res1
)) {
11230 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_UnionBitmap" "', expected argument " "1"" of type '" "wxRegion *""'");
11232 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11233 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
11234 if (!SWIG_IsOK(res2
)) {
11235 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_UnionBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
11238 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_UnionBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
11240 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
11242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11243 result
= (bool)(arg1
)->Union((wxBitmap
const &)*arg2
);
11244 wxPyEndAllowThreads(__tstate
);
11245 if (PyErr_Occurred()) SWIG_fail
;
11248 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11256 SWIGINTERN PyObject
*_wrap_Region_UnionBitmapColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11257 PyObject
*resultobj
= 0;
11258 wxRegion
*arg1
= (wxRegion
*) 0 ;
11259 wxBitmap
*arg2
= 0 ;
11260 wxColour
*arg3
= 0 ;
11261 int arg4
= (int) 0 ;
11270 PyObject
* obj0
= 0 ;
11271 PyObject
* obj1
= 0 ;
11272 PyObject
* obj2
= 0 ;
11273 PyObject
* obj3
= 0 ;
11274 char * kwnames
[] = {
11275 (char *) "self",(char *) "bmp",(char *) "transColour",(char *) "tolerance", NULL
11278 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Region_UnionBitmapColour",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11279 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRegion
, 0 | 0 );
11280 if (!SWIG_IsOK(res1
)) {
11281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Region_UnionBitmapColour" "', expected argument " "1"" of type '" "wxRegion *""'");
11283 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11284 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
11285 if (!SWIG_IsOK(res2
)) {
11286 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Region_UnionBitmapColour" "', expected argument " "2"" of type '" "wxBitmap const &""'");
11289 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Region_UnionBitmapColour" "', expected argument " "2"" of type '" "wxBitmap const &""'");
11291 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
11294 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
11297 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11298 if (!SWIG_IsOK(ecode4
)) {
11299 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Region_UnionBitmapColour" "', expected argument " "4"" of type '" "int""'");
11301 arg4
= static_cast< int >(val4
);
11304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11305 result
= (bool)(arg1
)->Union((wxBitmap
const &)*arg2
,(wxColour
const &)*arg3
,arg4
);
11306 wxPyEndAllowThreads(__tstate
);
11307 if (PyErr_Occurred()) SWIG_fail
;
11310 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11318 SWIGINTERN PyObject
*Region_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11320 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11321 SWIG_TypeNewClientData(SWIGTYPE_p_wxRegion
, SWIG_NewClientData(obj
));
11322 return SWIG_Py_Void();
11325 SWIGINTERN PyObject
*Region_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11326 return SWIG_Python_InitShadowInstance(args
);
11329 SWIGINTERN PyObject
*_wrap_new_RegionIterator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11330 PyObject
*resultobj
= 0;
11331 wxRegion
*arg1
= 0 ;
11332 wxRegionIterator
*result
= 0 ;
11335 PyObject
* obj0
= 0 ;
11336 char * kwnames
[] = {
11337 (char *) "region", NULL
11340 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_RegionIterator",kwnames
,&obj0
)) SWIG_fail
;
11341 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxRegion
, 0 | 0);
11342 if (!SWIG_IsOK(res1
)) {
11343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_RegionIterator" "', expected argument " "1"" of type '" "wxRegion const &""'");
11346 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_RegionIterator" "', expected argument " "1"" of type '" "wxRegion const &""'");
11348 arg1
= reinterpret_cast< wxRegion
* >(argp1
);
11350 if (!wxPyCheckForApp()) SWIG_fail
;
11351 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11352 result
= (wxRegionIterator
*)new wxRegionIterator((wxRegion
const &)*arg1
);
11353 wxPyEndAllowThreads(__tstate
);
11354 if (PyErr_Occurred()) SWIG_fail
;
11356 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRegionIterator
, SWIG_POINTER_NEW
| 0 );
11363 SWIGINTERN PyObject
*_wrap_delete_RegionIterator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11364 PyObject
*resultobj
= 0;
11365 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11368 PyObject
*swig_obj
[1] ;
11370 if (!args
) SWIG_fail
;
11371 swig_obj
[0] = args
;
11372 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, SWIG_POINTER_DISOWN
| 0 );
11373 if (!SWIG_IsOK(res1
)) {
11374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_RegionIterator" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11376 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11381 wxPyEndAllowThreads(__tstate
);
11382 if (PyErr_Occurred()) SWIG_fail
;
11384 resultobj
= SWIG_Py_Void();
11391 SWIGINTERN PyObject
*_wrap_RegionIterator_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11392 PyObject
*resultobj
= 0;
11393 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11397 PyObject
*swig_obj
[1] ;
11399 if (!args
) SWIG_fail
;
11400 swig_obj
[0] = args
;
11401 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11402 if (!SWIG_IsOK(res1
)) {
11403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetX" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11405 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11408 result
= (int)(arg1
)->GetX();
11409 wxPyEndAllowThreads(__tstate
);
11410 if (PyErr_Occurred()) SWIG_fail
;
11412 resultobj
= SWIG_From_int(static_cast< int >(result
));
11419 SWIGINTERN PyObject
*_wrap_RegionIterator_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11420 PyObject
*resultobj
= 0;
11421 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11425 PyObject
*swig_obj
[1] ;
11427 if (!args
) SWIG_fail
;
11428 swig_obj
[0] = args
;
11429 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11430 if (!SWIG_IsOK(res1
)) {
11431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetY" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11433 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11436 result
= (int)(arg1
)->GetY();
11437 wxPyEndAllowThreads(__tstate
);
11438 if (PyErr_Occurred()) SWIG_fail
;
11440 resultobj
= SWIG_From_int(static_cast< int >(result
));
11447 SWIGINTERN PyObject
*_wrap_RegionIterator_GetW(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11448 PyObject
*resultobj
= 0;
11449 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11453 PyObject
*swig_obj
[1] ;
11455 if (!args
) SWIG_fail
;
11456 swig_obj
[0] = args
;
11457 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11458 if (!SWIG_IsOK(res1
)) {
11459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetW" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11461 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11464 result
= (int)(arg1
)->GetW();
11465 wxPyEndAllowThreads(__tstate
);
11466 if (PyErr_Occurred()) SWIG_fail
;
11468 resultobj
= SWIG_From_int(static_cast< int >(result
));
11475 SWIGINTERN PyObject
*_wrap_RegionIterator_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11476 PyObject
*resultobj
= 0;
11477 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11481 PyObject
*swig_obj
[1] ;
11483 if (!args
) SWIG_fail
;
11484 swig_obj
[0] = args
;
11485 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11486 if (!SWIG_IsOK(res1
)) {
11487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetWidth" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11489 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11492 result
= (int)(arg1
)->GetWidth();
11493 wxPyEndAllowThreads(__tstate
);
11494 if (PyErr_Occurred()) SWIG_fail
;
11496 resultobj
= SWIG_From_int(static_cast< int >(result
));
11503 SWIGINTERN PyObject
*_wrap_RegionIterator_GetH(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11504 PyObject
*resultobj
= 0;
11505 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11509 PyObject
*swig_obj
[1] ;
11511 if (!args
) SWIG_fail
;
11512 swig_obj
[0] = args
;
11513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11514 if (!SWIG_IsOK(res1
)) {
11515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetH" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11517 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11520 result
= (int)(arg1
)->GetH();
11521 wxPyEndAllowThreads(__tstate
);
11522 if (PyErr_Occurred()) SWIG_fail
;
11524 resultobj
= SWIG_From_int(static_cast< int >(result
));
11531 SWIGINTERN PyObject
*_wrap_RegionIterator_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11532 PyObject
*resultobj
= 0;
11533 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11537 PyObject
*swig_obj
[1] ;
11539 if (!args
) SWIG_fail
;
11540 swig_obj
[0] = args
;
11541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11542 if (!SWIG_IsOK(res1
)) {
11543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetHeight" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11545 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11548 result
= (int)(arg1
)->GetHeight();
11549 wxPyEndAllowThreads(__tstate
);
11550 if (PyErr_Occurred()) SWIG_fail
;
11552 resultobj
= SWIG_From_int(static_cast< int >(result
));
11559 SWIGINTERN PyObject
*_wrap_RegionIterator_GetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11560 PyObject
*resultobj
= 0;
11561 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11565 PyObject
*swig_obj
[1] ;
11567 if (!args
) SWIG_fail
;
11568 swig_obj
[0] = args
;
11569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11570 if (!SWIG_IsOK(res1
)) {
11571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_GetRect" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11573 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11576 result
= (arg1
)->GetRect();
11577 wxPyEndAllowThreads(__tstate
);
11578 if (PyErr_Occurred()) SWIG_fail
;
11580 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
11587 SWIGINTERN PyObject
*_wrap_RegionIterator_HaveRects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11588 PyObject
*resultobj
= 0;
11589 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11593 PyObject
*swig_obj
[1] ;
11595 if (!args
) SWIG_fail
;
11596 swig_obj
[0] = args
;
11597 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11598 if (!SWIG_IsOK(res1
)) {
11599 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_HaveRects" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11601 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11603 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11604 result
= (bool)(arg1
)->HaveRects();
11605 wxPyEndAllowThreads(__tstate
);
11606 if (PyErr_Occurred()) SWIG_fail
;
11609 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11617 SWIGINTERN PyObject
*_wrap_RegionIterator_Reset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11618 PyObject
*resultobj
= 0;
11619 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11622 PyObject
*swig_obj
[1] ;
11624 if (!args
) SWIG_fail
;
11625 swig_obj
[0] = args
;
11626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11627 if (!SWIG_IsOK(res1
)) {
11628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_Reset" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11630 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11634 wxPyEndAllowThreads(__tstate
);
11635 if (PyErr_Occurred()) SWIG_fail
;
11637 resultobj
= SWIG_Py_Void();
11644 SWIGINTERN PyObject
*_wrap_RegionIterator_Next(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11645 PyObject
*resultobj
= 0;
11646 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11649 PyObject
*swig_obj
[1] ;
11651 if (!args
) SWIG_fail
;
11652 swig_obj
[0] = args
;
11653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11654 if (!SWIG_IsOK(res1
)) {
11655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator_Next" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11657 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11660 wxRegionIterator_Next(arg1
);
11661 wxPyEndAllowThreads(__tstate
);
11662 if (PyErr_Occurred()) SWIG_fail
;
11664 resultobj
= SWIG_Py_Void();
11671 SWIGINTERN PyObject
*_wrap_RegionIterator___nonzero__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11672 PyObject
*resultobj
= 0;
11673 wxRegionIterator
*arg1
= (wxRegionIterator
*) 0 ;
11677 PyObject
*swig_obj
[1] ;
11679 if (!args
) SWIG_fail
;
11680 swig_obj
[0] = args
;
11681 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRegionIterator
, 0 | 0 );
11682 if (!SWIG_IsOK(res1
)) {
11683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RegionIterator___nonzero__" "', expected argument " "1"" of type '" "wxRegionIterator *""'");
11685 arg1
= reinterpret_cast< wxRegionIterator
* >(argp1
);
11687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11688 result
= (bool)wxRegionIterator___nonzero__(arg1
);
11689 wxPyEndAllowThreads(__tstate
);
11690 if (PyErr_Occurred()) SWIG_fail
;
11693 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11701 SWIGINTERN PyObject
*RegionIterator_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11703 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11704 SWIG_TypeNewClientData(SWIGTYPE_p_wxRegionIterator
, SWIG_NewClientData(obj
));
11705 return SWIG_Py_Void();
11708 SWIGINTERN PyObject
*RegionIterator_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11709 return SWIG_Python_InitShadowInstance(args
);
11712 SWIGINTERN PyObject
*_wrap_new_NativeFontInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11713 PyObject
*resultobj
= 0;
11714 wxNativeFontInfo
*result
= 0 ;
11716 if (!SWIG_Python_UnpackTuple(args
,"new_NativeFontInfo",0,0,0)) SWIG_fail
;
11718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11719 result
= (wxNativeFontInfo
*)new wxNativeFontInfo();
11720 wxPyEndAllowThreads(__tstate
);
11721 if (PyErr_Occurred()) SWIG_fail
;
11723 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativeFontInfo
, SWIG_POINTER_NEW
| 0 );
11730 SWIGINTERN PyObject
*_wrap_delete_NativeFontInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11731 PyObject
*resultobj
= 0;
11732 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11735 PyObject
*swig_obj
[1] ;
11737 if (!args
) SWIG_fail
;
11738 swig_obj
[0] = args
;
11739 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, SWIG_POINTER_DISOWN
| 0 );
11740 if (!SWIG_IsOK(res1
)) {
11741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_NativeFontInfo" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
11743 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11748 wxPyEndAllowThreads(__tstate
);
11749 if (PyErr_Occurred()) SWIG_fail
;
11751 resultobj
= SWIG_Py_Void();
11758 SWIGINTERN PyObject
*_wrap_NativeFontInfo_Init(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11759 PyObject
*resultobj
= 0;
11760 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11763 PyObject
*swig_obj
[1] ;
11765 if (!args
) SWIG_fail
;
11766 swig_obj
[0] = args
;
11767 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11768 if (!SWIG_IsOK(res1
)) {
11769 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_Init" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
11771 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11775 wxPyEndAllowThreads(__tstate
);
11776 if (PyErr_Occurred()) SWIG_fail
;
11778 resultobj
= SWIG_Py_Void();
11785 SWIGINTERN PyObject
*_wrap_NativeFontInfo_InitFromFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11786 PyObject
*resultobj
= 0;
11787 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11793 PyObject
* obj0
= 0 ;
11794 PyObject
* obj1
= 0 ;
11795 char * kwnames
[] = {
11796 (char *) "self",(char *) "font", NULL
11799 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_InitFromFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11800 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11801 if (!SWIG_IsOK(res1
)) {
11802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_InitFromFont" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
11804 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11805 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11806 if (!SWIG_IsOK(res2
)) {
11807 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "NativeFontInfo_InitFromFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11810 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "NativeFontInfo_InitFromFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11812 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11815 (arg1
)->InitFromFont((wxFont
const &)*arg2
);
11816 wxPyEndAllowThreads(__tstate
);
11817 if (PyErr_Occurred()) SWIG_fail
;
11819 resultobj
= SWIG_Py_Void();
11826 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11827 PyObject
*resultobj
= 0;
11828 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11832 PyObject
*swig_obj
[1] ;
11834 if (!args
) SWIG_fail
;
11835 swig_obj
[0] = args
;
11836 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11837 if (!SWIG_IsOK(res1
)) {
11838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetPointSize" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11840 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11843 result
= (int)((wxNativeFontInfo
const *)arg1
)->GetPointSize();
11844 wxPyEndAllowThreads(__tstate
);
11845 if (PyErr_Occurred()) SWIG_fail
;
11847 resultobj
= SWIG_From_int(static_cast< int >(result
));
11854 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11855 PyObject
*resultobj
= 0;
11856 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11857 wxFontStyle result
;
11860 PyObject
*swig_obj
[1] ;
11862 if (!args
) SWIG_fail
;
11863 swig_obj
[0] = args
;
11864 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11865 if (!SWIG_IsOK(res1
)) {
11866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetStyle" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11868 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11871 result
= (wxFontStyle
)((wxNativeFontInfo
const *)arg1
)->GetStyle();
11872 wxPyEndAllowThreads(__tstate
);
11873 if (PyErr_Occurred()) SWIG_fail
;
11875 resultobj
= SWIG_From_int(static_cast< int >(result
));
11882 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetWeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11883 PyObject
*resultobj
= 0;
11884 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11885 wxFontWeight result
;
11888 PyObject
*swig_obj
[1] ;
11890 if (!args
) SWIG_fail
;
11891 swig_obj
[0] = args
;
11892 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11893 if (!SWIG_IsOK(res1
)) {
11894 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetWeight" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11896 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11899 result
= (wxFontWeight
)((wxNativeFontInfo
const *)arg1
)->GetWeight();
11900 wxPyEndAllowThreads(__tstate
);
11901 if (PyErr_Occurred()) SWIG_fail
;
11903 resultobj
= SWIG_From_int(static_cast< int >(result
));
11910 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetUnderlined(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11911 PyObject
*resultobj
= 0;
11912 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11916 PyObject
*swig_obj
[1] ;
11918 if (!args
) SWIG_fail
;
11919 swig_obj
[0] = args
;
11920 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11921 if (!SWIG_IsOK(res1
)) {
11922 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetUnderlined" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11924 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11926 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11927 result
= (bool)((wxNativeFontInfo
const *)arg1
)->GetUnderlined();
11928 wxPyEndAllowThreads(__tstate
);
11929 if (PyErr_Occurred()) SWIG_fail
;
11932 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11940 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11941 PyObject
*resultobj
= 0;
11942 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11946 PyObject
*swig_obj
[1] ;
11948 if (!args
) SWIG_fail
;
11949 swig_obj
[0] = args
;
11950 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11951 if (!SWIG_IsOK(res1
)) {
11952 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetFaceName" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11954 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11957 result
= ((wxNativeFontInfo
const *)arg1
)->GetFaceName();
11958 wxPyEndAllowThreads(__tstate
);
11959 if (PyErr_Occurred()) SWIG_fail
;
11963 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
11965 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
11974 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetFamily(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11975 PyObject
*resultobj
= 0;
11976 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
11977 wxFontFamily result
;
11980 PyObject
*swig_obj
[1] ;
11982 if (!args
) SWIG_fail
;
11983 swig_obj
[0] = args
;
11984 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
11985 if (!SWIG_IsOK(res1
)) {
11986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetFamily" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
11988 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
11990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11991 result
= (wxFontFamily
)((wxNativeFontInfo
const *)arg1
)->GetFamily();
11992 wxPyEndAllowThreads(__tstate
);
11993 if (PyErr_Occurred()) SWIG_fail
;
11995 resultobj
= SWIG_From_int(static_cast< int >(result
));
12002 SWIGINTERN PyObject
*_wrap_NativeFontInfo_GetEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12003 PyObject
*resultobj
= 0;
12004 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12005 wxFontEncoding result
;
12008 PyObject
*swig_obj
[1] ;
12010 if (!args
) SWIG_fail
;
12011 swig_obj
[0] = args
;
12012 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12013 if (!SWIG_IsOK(res1
)) {
12014 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_GetEncoding" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
12016 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12019 result
= (wxFontEncoding
)((wxNativeFontInfo
const *)arg1
)->GetEncoding();
12020 wxPyEndAllowThreads(__tstate
);
12021 if (PyErr_Occurred()) SWIG_fail
;
12023 resultobj
= SWIG_From_int(static_cast< int >(result
));
12030 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12031 PyObject
*resultobj
= 0;
12032 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12038 PyObject
* obj0
= 0 ;
12039 PyObject
* obj1
= 0 ;
12040 char * kwnames
[] = {
12041 (char *) "self",(char *) "pointsize", NULL
12044 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetPointSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12045 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12046 if (!SWIG_IsOK(res1
)) {
12047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetPointSize" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12049 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12050 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12051 if (!SWIG_IsOK(ecode2
)) {
12052 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetPointSize" "', expected argument " "2"" of type '" "int""'");
12054 arg2
= static_cast< int >(val2
);
12056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12057 (arg1
)->SetPointSize(arg2
);
12058 wxPyEndAllowThreads(__tstate
);
12059 if (PyErr_Occurred()) SWIG_fail
;
12061 resultobj
= SWIG_Py_Void();
12068 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12069 PyObject
*resultobj
= 0;
12070 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12076 PyObject
* obj0
= 0 ;
12077 PyObject
* obj1
= 0 ;
12078 char * kwnames
[] = {
12079 (char *) "self",(char *) "style", NULL
12082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12084 if (!SWIG_IsOK(res1
)) {
12085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetStyle" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12087 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12088 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12089 if (!SWIG_IsOK(ecode2
)) {
12090 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetStyle" "', expected argument " "2"" of type '" "wxFontStyle""'");
12092 arg2
= static_cast< wxFontStyle
>(val2
);
12094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12095 (arg1
)->SetStyle(arg2
);
12096 wxPyEndAllowThreads(__tstate
);
12097 if (PyErr_Occurred()) SWIG_fail
;
12099 resultobj
= SWIG_Py_Void();
12106 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetWeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12107 PyObject
*resultobj
= 0;
12108 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12109 wxFontWeight arg2
;
12114 PyObject
* obj0
= 0 ;
12115 PyObject
* obj1
= 0 ;
12116 char * kwnames
[] = {
12117 (char *) "self",(char *) "weight", NULL
12120 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetWeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12121 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12122 if (!SWIG_IsOK(res1
)) {
12123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetWeight" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12125 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12126 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12127 if (!SWIG_IsOK(ecode2
)) {
12128 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetWeight" "', expected argument " "2"" of type '" "wxFontWeight""'");
12130 arg2
= static_cast< wxFontWeight
>(val2
);
12132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12133 (arg1
)->SetWeight(arg2
);
12134 wxPyEndAllowThreads(__tstate
);
12135 if (PyErr_Occurred()) SWIG_fail
;
12137 resultobj
= SWIG_Py_Void();
12144 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetUnderlined(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12145 PyObject
*resultobj
= 0;
12146 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12152 PyObject
* obj0
= 0 ;
12153 PyObject
* obj1
= 0 ;
12154 char * kwnames
[] = {
12155 (char *) "self",(char *) "underlined", NULL
12158 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetUnderlined",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12159 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12160 if (!SWIG_IsOK(res1
)) {
12161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetUnderlined" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12163 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12164 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12165 if (!SWIG_IsOK(ecode2
)) {
12166 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetUnderlined" "', expected argument " "2"" of type '" "bool""'");
12168 arg2
= static_cast< bool >(val2
);
12170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12171 (arg1
)->SetUnderlined(arg2
);
12172 wxPyEndAllowThreads(__tstate
);
12173 if (PyErr_Occurred()) SWIG_fail
;
12175 resultobj
= SWIG_Py_Void();
12182 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12183 PyObject
*resultobj
= 0;
12184 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12189 PyObject
* obj0
= 0 ;
12190 PyObject
* obj1
= 0 ;
12191 char * kwnames
[] = {
12192 (char *) "self",(char *) "facename", NULL
12195 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetFaceName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12196 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12197 if (!SWIG_IsOK(res1
)) {
12198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetFaceName" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12200 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12202 wxString
* sptr
= wxString_in_helper(obj1
);
12203 if (sptr
== NULL
) SWIG_fail
;
12208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12209 result
= (bool)(arg1
)->SetFaceName(arg2
);
12210 wxPyEndAllowThreads(__tstate
);
12211 if (PyErr_Occurred()) SWIG_fail
;
12214 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12222 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetFamily(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12223 PyObject
*resultobj
= 0;
12224 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12225 wxFontFamily arg2
;
12230 PyObject
* obj0
= 0 ;
12231 PyObject
* obj1
= 0 ;
12232 char * kwnames
[] = {
12233 (char *) "self",(char *) "family", NULL
12236 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetFamily",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12237 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12238 if (!SWIG_IsOK(res1
)) {
12239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetFamily" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12241 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12242 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12243 if (!SWIG_IsOK(ecode2
)) {
12244 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetFamily" "', expected argument " "2"" of type '" "wxFontFamily""'");
12246 arg2
= static_cast< wxFontFamily
>(val2
);
12248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12249 (arg1
)->SetFamily(arg2
);
12250 wxPyEndAllowThreads(__tstate
);
12251 if (PyErr_Occurred()) SWIG_fail
;
12253 resultobj
= SWIG_Py_Void();
12260 SWIGINTERN PyObject
*_wrap_NativeFontInfo_SetEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12261 PyObject
*resultobj
= 0;
12262 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12263 wxFontEncoding arg2
;
12268 PyObject
* obj0
= 0 ;
12269 PyObject
* obj1
= 0 ;
12270 char * kwnames
[] = {
12271 (char *) "self",(char *) "encoding", NULL
12274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_SetEncoding",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12276 if (!SWIG_IsOK(res1
)) {
12277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_SetEncoding" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12279 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12280 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12281 if (!SWIG_IsOK(ecode2
)) {
12282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeFontInfo_SetEncoding" "', expected argument " "2"" of type '" "wxFontEncoding""'");
12284 arg2
= static_cast< wxFontEncoding
>(val2
);
12286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12287 (arg1
)->SetEncoding(arg2
);
12288 wxPyEndAllowThreads(__tstate
);
12289 if (PyErr_Occurred()) SWIG_fail
;
12291 resultobj
= SWIG_Py_Void();
12298 SWIGINTERN PyObject
*_wrap_NativeFontInfo_FromString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12299 PyObject
*resultobj
= 0;
12300 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12301 wxString
*arg2
= 0 ;
12305 bool temp2
= false ;
12306 PyObject
* obj0
= 0 ;
12307 PyObject
* obj1
= 0 ;
12308 char * kwnames
[] = {
12309 (char *) "self",(char *) "s", NULL
12312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_FromString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12313 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12314 if (!SWIG_IsOK(res1
)) {
12315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_FromString" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12317 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12319 arg2
= wxString_in_helper(obj1
);
12320 if (arg2
== NULL
) SWIG_fail
;
12324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12325 result
= (bool)(arg1
)->FromString((wxString
const &)*arg2
);
12326 wxPyEndAllowThreads(__tstate
);
12327 if (PyErr_Occurred()) SWIG_fail
;
12330 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12346 SWIGINTERN PyObject
*_wrap_NativeFontInfo_ToString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12347 PyObject
*resultobj
= 0;
12348 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12352 PyObject
*swig_obj
[1] ;
12354 if (!args
) SWIG_fail
;
12355 swig_obj
[0] = args
;
12356 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12357 if (!SWIG_IsOK(res1
)) {
12358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_ToString" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
12360 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12363 result
= ((wxNativeFontInfo
const *)arg1
)->ToString();
12364 wxPyEndAllowThreads(__tstate
);
12365 if (PyErr_Occurred()) SWIG_fail
;
12369 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
12371 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
12380 SWIGINTERN PyObject
*_wrap_NativeFontInfo___str__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12381 PyObject
*resultobj
= 0;
12382 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12386 PyObject
*swig_obj
[1] ;
12388 if (!args
) SWIG_fail
;
12389 swig_obj
[0] = args
;
12390 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12391 if (!SWIG_IsOK(res1
)) {
12392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo___str__" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12394 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12397 result
= wxNativeFontInfo___str__(arg1
);
12398 wxPyEndAllowThreads(__tstate
);
12399 if (PyErr_Occurred()) SWIG_fail
;
12403 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
12405 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
12414 SWIGINTERN PyObject
*_wrap_NativeFontInfo_FromUserString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12415 PyObject
*resultobj
= 0;
12416 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12417 wxString
*arg2
= 0 ;
12421 bool temp2
= false ;
12422 PyObject
* obj0
= 0 ;
12423 PyObject
* obj1
= 0 ;
12424 char * kwnames
[] = {
12425 (char *) "self",(char *) "s", NULL
12428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeFontInfo_FromUserString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12429 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12430 if (!SWIG_IsOK(res1
)) {
12431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_FromUserString" "', expected argument " "1"" of type '" "wxNativeFontInfo *""'");
12433 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12435 arg2
= wxString_in_helper(obj1
);
12436 if (arg2
== NULL
) SWIG_fail
;
12440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12441 result
= (bool)(arg1
)->FromUserString((wxString
const &)*arg2
);
12442 wxPyEndAllowThreads(__tstate
);
12443 if (PyErr_Occurred()) SWIG_fail
;
12446 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12462 SWIGINTERN PyObject
*_wrap_NativeFontInfo_ToUserString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12463 PyObject
*resultobj
= 0;
12464 wxNativeFontInfo
*arg1
= (wxNativeFontInfo
*) 0 ;
12468 PyObject
*swig_obj
[1] ;
12470 if (!args
) SWIG_fail
;
12471 swig_obj
[0] = args
;
12472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
12473 if (!SWIG_IsOK(res1
)) {
12474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeFontInfo_ToUserString" "', expected argument " "1"" of type '" "wxNativeFontInfo const *""'");
12476 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
12478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12479 result
= ((wxNativeFontInfo
const *)arg1
)->ToUserString();
12480 wxPyEndAllowThreads(__tstate
);
12481 if (PyErr_Occurred()) SWIG_fail
;
12485 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
12487 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
12496 SWIGINTERN PyObject
*NativeFontInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12498 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12499 SWIG_TypeNewClientData(SWIGTYPE_p_wxNativeFontInfo
, SWIG_NewClientData(obj
));
12500 return SWIG_Py_Void();
12503 SWIGINTERN PyObject
*NativeFontInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12504 return SWIG_Python_InitShadowInstance(args
);
12507 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_facename_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12508 PyObject
*resultobj
= 0;
12509 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12510 wxString
*arg2
= (wxString
*) 0 ;
12513 bool temp2
= false ;
12514 PyObject
*swig_obj
[2] ;
12516 if (!SWIG_Python_UnpackTuple(args
,"NativeEncodingInfo_facename_set",2,2,swig_obj
)) SWIG_fail
;
12517 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12518 if (!SWIG_IsOK(res1
)) {
12519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_facename_set" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12521 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12523 arg2
= wxString_in_helper(swig_obj
[1]);
12524 if (arg2
== NULL
) SWIG_fail
;
12527 if (arg1
) (arg1
)->facename
= *arg2
;
12529 resultobj
= SWIG_Py_Void();
12544 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_facename_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12545 PyObject
*resultobj
= 0;
12546 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12547 wxString
*result
= 0 ;
12550 PyObject
*swig_obj
[1] ;
12552 if (!args
) SWIG_fail
;
12553 swig_obj
[0] = args
;
12554 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12555 if (!SWIG_IsOK(res1
)) {
12556 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_facename_get" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12558 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12559 result
= (wxString
*)& ((arg1
)->facename
);
12562 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12564 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12573 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_encoding_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12574 PyObject
*resultobj
= 0;
12575 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12576 wxFontEncoding arg2
;
12581 PyObject
*swig_obj
[2] ;
12583 if (!SWIG_Python_UnpackTuple(args
,"NativeEncodingInfo_encoding_set",2,2,swig_obj
)) SWIG_fail
;
12584 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12585 if (!SWIG_IsOK(res1
)) {
12586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_encoding_set" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12588 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12589 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12590 if (!SWIG_IsOK(ecode2
)) {
12591 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "NativeEncodingInfo_encoding_set" "', expected argument " "2"" of type '" "wxFontEncoding""'");
12593 arg2
= static_cast< wxFontEncoding
>(val2
);
12594 if (arg1
) (arg1
)->encoding
= arg2
;
12596 resultobj
= SWIG_Py_Void();
12603 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_encoding_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12604 PyObject
*resultobj
= 0;
12605 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12606 wxFontEncoding result
;
12609 PyObject
*swig_obj
[1] ;
12611 if (!args
) SWIG_fail
;
12612 swig_obj
[0] = args
;
12613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12614 if (!SWIG_IsOK(res1
)) {
12615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_encoding_get" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12617 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12618 result
= (wxFontEncoding
) ((arg1
)->encoding
);
12619 resultobj
= SWIG_From_int(static_cast< int >(result
));
12626 SWIGINTERN PyObject
*_wrap_new_NativeEncodingInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12627 PyObject
*resultobj
= 0;
12628 wxNativeEncodingInfo
*result
= 0 ;
12630 if (!SWIG_Python_UnpackTuple(args
,"new_NativeEncodingInfo",0,0,0)) SWIG_fail
;
12632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12633 result
= (wxNativeEncodingInfo
*)new wxNativeEncodingInfo();
12634 wxPyEndAllowThreads(__tstate
);
12635 if (PyErr_Occurred()) SWIG_fail
;
12637 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativeEncodingInfo
, SWIG_POINTER_NEW
| 0 );
12644 SWIGINTERN PyObject
*_wrap_delete_NativeEncodingInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12645 PyObject
*resultobj
= 0;
12646 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12649 PyObject
*swig_obj
[1] ;
12651 if (!args
) SWIG_fail
;
12652 swig_obj
[0] = args
;
12653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, SWIG_POINTER_DISOWN
| 0 );
12654 if (!SWIG_IsOK(res1
)) {
12655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_NativeEncodingInfo" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12657 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12662 wxPyEndAllowThreads(__tstate
);
12663 if (PyErr_Occurred()) SWIG_fail
;
12665 resultobj
= SWIG_Py_Void();
12672 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_FromString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12673 PyObject
*resultobj
= 0;
12674 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12675 wxString
*arg2
= 0 ;
12679 bool temp2
= false ;
12680 PyObject
* obj0
= 0 ;
12681 PyObject
* obj1
= 0 ;
12682 char * kwnames
[] = {
12683 (char *) "self",(char *) "s", NULL
12686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:NativeEncodingInfo_FromString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12688 if (!SWIG_IsOK(res1
)) {
12689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_FromString" "', expected argument " "1"" of type '" "wxNativeEncodingInfo *""'");
12691 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12693 arg2
= wxString_in_helper(obj1
);
12694 if (arg2
== NULL
) SWIG_fail
;
12698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12699 result
= (bool)(arg1
)->FromString((wxString
const &)*arg2
);
12700 wxPyEndAllowThreads(__tstate
);
12701 if (PyErr_Occurred()) SWIG_fail
;
12704 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12720 SWIGINTERN PyObject
*_wrap_NativeEncodingInfo_ToString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12721 PyObject
*resultobj
= 0;
12722 wxNativeEncodingInfo
*arg1
= (wxNativeEncodingInfo
*) 0 ;
12726 PyObject
*swig_obj
[1] ;
12728 if (!args
) SWIG_fail
;
12729 swig_obj
[0] = args
;
12730 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12731 if (!SWIG_IsOK(res1
)) {
12732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "NativeEncodingInfo_ToString" "', expected argument " "1"" of type '" "wxNativeEncodingInfo const *""'");
12734 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12737 result
= ((wxNativeEncodingInfo
const *)arg1
)->ToString();
12738 wxPyEndAllowThreads(__tstate
);
12739 if (PyErr_Occurred()) SWIG_fail
;
12743 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
12745 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
12754 SWIGINTERN PyObject
*NativeEncodingInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12756 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12757 SWIG_TypeNewClientData(SWIGTYPE_p_wxNativeEncodingInfo
, SWIG_NewClientData(obj
));
12758 return SWIG_Py_Void();
12761 SWIGINTERN PyObject
*NativeEncodingInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12762 return SWIG_Python_InitShadowInstance(args
);
12765 SWIGINTERN PyObject
*_wrap_GetNativeFontEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12766 PyObject
*resultobj
= 0;
12767 wxFontEncoding arg1
;
12768 wxNativeEncodingInfo
*result
= 0 ;
12771 PyObject
* obj0
= 0 ;
12772 char * kwnames
[] = {
12773 (char *) "encoding", NULL
12776 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GetNativeFontEncoding",kwnames
,&obj0
)) SWIG_fail
;
12777 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
12778 if (!SWIG_IsOK(ecode1
)) {
12779 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "GetNativeFontEncoding" "', expected argument " "1"" of type '" "wxFontEncoding""'");
12781 arg1
= static_cast< wxFontEncoding
>(val1
);
12783 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12784 result
= (wxNativeEncodingInfo
*)wxGetNativeFontEncoding(arg1
);
12785 wxPyEndAllowThreads(__tstate
);
12786 if (PyErr_Occurred()) SWIG_fail
;
12788 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0 );
12795 SWIGINTERN PyObject
*_wrap_TestFontEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12796 PyObject
*resultobj
= 0;
12797 wxNativeEncodingInfo
*arg1
= 0 ;
12801 PyObject
* obj0
= 0 ;
12802 char * kwnames
[] = {
12803 (char *) "info", NULL
12806 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TestFontEncoding",kwnames
,&obj0
)) SWIG_fail
;
12807 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxNativeEncodingInfo
, 0 | 0);
12808 if (!SWIG_IsOK(res1
)) {
12809 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TestFontEncoding" "', expected argument " "1"" of type '" "wxNativeEncodingInfo const &""'");
12812 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TestFontEncoding" "', expected argument " "1"" of type '" "wxNativeEncodingInfo const &""'");
12814 arg1
= reinterpret_cast< wxNativeEncodingInfo
* >(argp1
);
12816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12817 result
= (bool)wxTestFontEncoding((wxNativeEncodingInfo
const &)*arg1
);
12818 wxPyEndAllowThreads(__tstate
);
12819 if (PyErr_Occurred()) SWIG_fail
;
12822 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12830 SWIGINTERN PyObject
*_wrap_new_FontMapper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12831 PyObject
*resultobj
= 0;
12832 wxFontMapper
*result
= 0 ;
12834 if (!SWIG_Python_UnpackTuple(args
,"new_FontMapper",0,0,0)) SWIG_fail
;
12836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12837 result
= (wxFontMapper
*)new wxFontMapper();
12838 wxPyEndAllowThreads(__tstate
);
12839 if (PyErr_Occurred()) SWIG_fail
;
12841 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontMapper
, SWIG_POINTER_NEW
| 0 );
12848 SWIGINTERN PyObject
*_wrap_delete_FontMapper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12849 PyObject
*resultobj
= 0;
12850 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
12853 PyObject
*swig_obj
[1] ;
12855 if (!args
) SWIG_fail
;
12856 swig_obj
[0] = args
;
12857 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontMapper
, SWIG_POINTER_DISOWN
| 0 );
12858 if (!SWIG_IsOK(res1
)) {
12859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FontMapper" "', expected argument " "1"" of type '" "wxFontMapper *""'");
12861 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
12863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12866 wxPyEndAllowThreads(__tstate
);
12867 if (PyErr_Occurred()) SWIG_fail
;
12869 resultobj
= SWIG_Py_Void();
12876 SWIGINTERN PyObject
*_wrap_FontMapper_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12877 PyObject
*resultobj
= 0;
12878 wxFontMapper
*result
= 0 ;
12880 if (!SWIG_Python_UnpackTuple(args
,"FontMapper_Get",0,0,0)) SWIG_fail
;
12882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12883 result
= (wxFontMapper
*)wxFontMapper::Get();
12884 wxPyEndAllowThreads(__tstate
);
12885 if (PyErr_Occurred()) SWIG_fail
;
12887 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontMapper
, 0 | 0 );
12894 SWIGINTERN PyObject
*_wrap_FontMapper_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12895 PyObject
*resultobj
= 0;
12896 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
12897 wxFontMapper
*result
= 0 ;
12900 PyObject
* obj0
= 0 ;
12901 char * kwnames
[] = {
12902 (char *) "mapper", NULL
12905 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontMapper_Set",kwnames
,&obj0
)) SWIG_fail
;
12906 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
12907 if (!SWIG_IsOK(res1
)) {
12908 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_Set" "', expected argument " "1"" of type '" "wxFontMapper *""'");
12910 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
12912 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12913 result
= (wxFontMapper
*)wxFontMapper::Set(arg1
);
12914 wxPyEndAllowThreads(__tstate
);
12915 if (PyErr_Occurred()) SWIG_fail
;
12917 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontMapper
, 0 | 0 );
12924 SWIGINTERN PyObject
*_wrap_FontMapper_CharsetToEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12925 PyObject
*resultobj
= 0;
12926 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
12927 wxString
*arg2
= 0 ;
12928 bool arg3
= (bool) true ;
12929 wxFontEncoding result
;
12932 bool temp2
= false ;
12935 PyObject
* obj0
= 0 ;
12936 PyObject
* obj1
= 0 ;
12937 PyObject
* obj2
= 0 ;
12938 char * kwnames
[] = {
12939 (char *) "self",(char *) "charset",(char *) "interactive", NULL
12942 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FontMapper_CharsetToEncoding",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12943 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
12944 if (!SWIG_IsOK(res1
)) {
12945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_CharsetToEncoding" "', expected argument " "1"" of type '" "wxFontMapper *""'");
12947 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
12949 arg2
= wxString_in_helper(obj1
);
12950 if (arg2
== NULL
) SWIG_fail
;
12954 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
12955 if (!SWIG_IsOK(ecode3
)) {
12956 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FontMapper_CharsetToEncoding" "', expected argument " "3"" of type '" "bool""'");
12958 arg3
= static_cast< bool >(val3
);
12961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12962 result
= (wxFontEncoding
)(arg1
)->CharsetToEncoding((wxString
const &)*arg2
,arg3
);
12963 wxPyEndAllowThreads(__tstate
);
12964 if (PyErr_Occurred()) SWIG_fail
;
12966 resultobj
= SWIG_From_int(static_cast< int >(result
));
12981 SWIGINTERN PyObject
*_wrap_FontMapper_GetSupportedEncodingsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12982 PyObject
*resultobj
= 0;
12985 if (!SWIG_Python_UnpackTuple(args
,"FontMapper_GetSupportedEncodingsCount",0,0,0)) SWIG_fail
;
12987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12988 result
= (size_t)wxFontMapper::GetSupportedEncodingsCount();
12989 wxPyEndAllowThreads(__tstate
);
12990 if (PyErr_Occurred()) SWIG_fail
;
12992 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
12999 SWIGINTERN PyObject
*_wrap_FontMapper_GetEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13000 PyObject
*resultobj
= 0;
13002 wxFontEncoding result
;
13005 PyObject
* obj0
= 0 ;
13006 char * kwnames
[] = {
13010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontMapper_GetEncoding",kwnames
,&obj0
)) SWIG_fail
;
13011 ecode1
= SWIG_AsVal_size_t(obj0
, &val1
);
13012 if (!SWIG_IsOK(ecode1
)) {
13013 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "FontMapper_GetEncoding" "', expected argument " "1"" of type '" "size_t""'");
13015 arg1
= static_cast< size_t >(val1
);
13017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13018 result
= (wxFontEncoding
)wxFontMapper::GetEncoding(arg1
);
13019 wxPyEndAllowThreads(__tstate
);
13020 if (PyErr_Occurred()) SWIG_fail
;
13022 resultobj
= SWIG_From_int(static_cast< int >(result
));
13029 SWIGINTERN PyObject
*_wrap_FontMapper_GetEncodingName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13030 PyObject
*resultobj
= 0;
13031 wxFontEncoding arg1
;
13035 PyObject
* obj0
= 0 ;
13036 char * kwnames
[] = {
13037 (char *) "encoding", NULL
13040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontMapper_GetEncodingName",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 '" "FontMapper_GetEncodingName" "', expected argument " "1"" of type '" "wxFontEncoding""'");
13045 arg1
= static_cast< wxFontEncoding
>(val1
);
13047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13048 result
= wxFontMapper::GetEncodingName(arg1
);
13049 wxPyEndAllowThreads(__tstate
);
13050 if (PyErr_Occurred()) SWIG_fail
;
13054 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
13056 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
13065 SWIGINTERN PyObject
*_wrap_FontMapper_GetEncodingDescription(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13066 PyObject
*resultobj
= 0;
13067 wxFontEncoding arg1
;
13071 PyObject
* obj0
= 0 ;
13072 char * kwnames
[] = {
13073 (char *) "encoding", NULL
13076 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontMapper_GetEncodingDescription",kwnames
,&obj0
)) SWIG_fail
;
13077 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13078 if (!SWIG_IsOK(ecode1
)) {
13079 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "FontMapper_GetEncodingDescription" "', expected argument " "1"" of type '" "wxFontEncoding""'");
13081 arg1
= static_cast< wxFontEncoding
>(val1
);
13083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13084 result
= wxFontMapper::GetEncodingDescription(arg1
);
13085 wxPyEndAllowThreads(__tstate
);
13086 if (PyErr_Occurred()) SWIG_fail
;
13090 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
13092 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
13101 SWIGINTERN PyObject
*_wrap_FontMapper_GetEncodingFromName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13102 PyObject
*resultobj
= 0;
13103 wxString
*arg1
= 0 ;
13104 wxFontEncoding result
;
13105 bool temp1
= false ;
13106 PyObject
* obj0
= 0 ;
13107 char * kwnames
[] = {
13108 (char *) "name", NULL
13111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontMapper_GetEncodingFromName",kwnames
,&obj0
)) SWIG_fail
;
13113 arg1
= wxString_in_helper(obj0
);
13114 if (arg1
== NULL
) SWIG_fail
;
13118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13119 result
= (wxFontEncoding
)wxFontMapper::GetEncodingFromName((wxString
const &)*arg1
);
13120 wxPyEndAllowThreads(__tstate
);
13121 if (PyErr_Occurred()) SWIG_fail
;
13123 resultobj
= SWIG_From_int(static_cast< int >(result
));
13138 SWIGINTERN PyObject
*_wrap_FontMapper_SetConfigPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13139 PyObject
*resultobj
= 0;
13140 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
13141 wxString
*arg2
= 0 ;
13144 bool temp2
= false ;
13145 PyObject
* obj0
= 0 ;
13146 PyObject
* obj1
= 0 ;
13147 char * kwnames
[] = {
13148 (char *) "self",(char *) "prefix", NULL
13151 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontMapper_SetConfigPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13152 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
13153 if (!SWIG_IsOK(res1
)) {
13154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_SetConfigPath" "', expected argument " "1"" of type '" "wxFontMapper *""'");
13156 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
13158 arg2
= wxString_in_helper(obj1
);
13159 if (arg2
== NULL
) SWIG_fail
;
13163 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13164 (arg1
)->SetConfigPath((wxString
const &)*arg2
);
13165 wxPyEndAllowThreads(__tstate
);
13166 if (PyErr_Occurred()) SWIG_fail
;
13168 resultobj
= SWIG_Py_Void();
13183 SWIGINTERN PyObject
*_wrap_FontMapper_GetDefaultConfigPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13184 PyObject
*resultobj
= 0;
13187 if (!SWIG_Python_UnpackTuple(args
,"FontMapper_GetDefaultConfigPath",0,0,0)) SWIG_fail
;
13189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13190 result
= wxFontMapper::GetDefaultConfigPath();
13191 wxPyEndAllowThreads(__tstate
);
13192 if (PyErr_Occurred()) SWIG_fail
;
13196 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
13198 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
13207 SWIGINTERN PyObject
*_wrap_FontMapper_GetAltForEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13208 PyObject
*resultobj
= 0;
13209 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
13210 wxFontEncoding arg2
;
13211 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13212 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13213 bool arg4
= (bool) true ;
13214 PyObject
*result
= 0 ;
13219 bool temp3
= false ;
13222 PyObject
* obj0
= 0 ;
13223 PyObject
* obj1
= 0 ;
13224 PyObject
* obj2
= 0 ;
13225 PyObject
* obj3
= 0 ;
13226 char * kwnames
[] = {
13227 (char *) "self",(char *) "encoding",(char *) "facename",(char *) "interactive", NULL
13230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:FontMapper_GetAltForEncoding",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
13232 if (!SWIG_IsOK(res1
)) {
13233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_GetAltForEncoding" "', expected argument " "1"" of type '" "wxFontMapper *""'");
13235 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
13236 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13237 if (!SWIG_IsOK(ecode2
)) {
13238 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontMapper_GetAltForEncoding" "', expected argument " "2"" of type '" "wxFontEncoding""'");
13240 arg2
= static_cast< wxFontEncoding
>(val2
);
13243 arg3
= wxString_in_helper(obj2
);
13244 if (arg3
== NULL
) SWIG_fail
;
13249 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
13250 if (!SWIG_IsOK(ecode4
)) {
13251 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FontMapper_GetAltForEncoding" "', expected argument " "4"" of type '" "bool""'");
13253 arg4
= static_cast< bool >(val4
);
13256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13257 result
= (PyObject
*)wxFontMapper_GetAltForEncoding(arg1
,arg2
,(wxString
const &)*arg3
,arg4
);
13258 wxPyEndAllowThreads(__tstate
);
13259 if (PyErr_Occurred()) SWIG_fail
;
13261 resultobj
= result
;
13276 SWIGINTERN PyObject
*_wrap_FontMapper_IsEncodingAvailable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13277 PyObject
*resultobj
= 0;
13278 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
13279 wxFontEncoding arg2
;
13280 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13281 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13287 bool temp3
= false ;
13288 PyObject
* obj0
= 0 ;
13289 PyObject
* obj1
= 0 ;
13290 PyObject
* obj2
= 0 ;
13291 char * kwnames
[] = {
13292 (char *) "self",(char *) "encoding",(char *) "facename", NULL
13295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FontMapper_IsEncodingAvailable",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
13297 if (!SWIG_IsOK(res1
)) {
13298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_IsEncodingAvailable" "', expected argument " "1"" of type '" "wxFontMapper *""'");
13300 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
13301 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13302 if (!SWIG_IsOK(ecode2
)) {
13303 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontMapper_IsEncodingAvailable" "', expected argument " "2"" of type '" "wxFontEncoding""'");
13305 arg2
= static_cast< wxFontEncoding
>(val2
);
13308 arg3
= wxString_in_helper(obj2
);
13309 if (arg3
== NULL
) SWIG_fail
;
13314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13315 result
= (bool)(arg1
)->IsEncodingAvailable(arg2
,(wxString
const &)*arg3
);
13316 wxPyEndAllowThreads(__tstate
);
13317 if (PyErr_Occurred()) SWIG_fail
;
13320 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13336 SWIGINTERN PyObject
*_wrap_FontMapper_SetDialogParent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13337 PyObject
*resultobj
= 0;
13338 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
13339 wxWindow
*arg2
= (wxWindow
*) 0 ;
13344 PyObject
* obj0
= 0 ;
13345 PyObject
* obj1
= 0 ;
13346 char * kwnames
[] = {
13347 (char *) "self",(char *) "parent", NULL
13350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontMapper_SetDialogParent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
13352 if (!SWIG_IsOK(res1
)) {
13353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_SetDialogParent" "', expected argument " "1"" of type '" "wxFontMapper *""'");
13355 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
13356 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13357 if (!SWIG_IsOK(res2
)) {
13358 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontMapper_SetDialogParent" "', expected argument " "2"" of type '" "wxWindow *""'");
13360 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13363 (arg1
)->SetDialogParent(arg2
);
13364 wxPyEndAllowThreads(__tstate
);
13365 if (PyErr_Occurred()) SWIG_fail
;
13367 resultobj
= SWIG_Py_Void();
13374 SWIGINTERN PyObject
*_wrap_FontMapper_SetDialogTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13375 PyObject
*resultobj
= 0;
13376 wxFontMapper
*arg1
= (wxFontMapper
*) 0 ;
13377 wxString
*arg2
= 0 ;
13380 bool temp2
= false ;
13381 PyObject
* obj0
= 0 ;
13382 PyObject
* obj1
= 0 ;
13383 char * kwnames
[] = {
13384 (char *) "self",(char *) "title", NULL
13387 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontMapper_SetDialogTitle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13388 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontMapper
, 0 | 0 );
13389 if (!SWIG_IsOK(res1
)) {
13390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontMapper_SetDialogTitle" "', expected argument " "1"" of type '" "wxFontMapper *""'");
13392 arg1
= reinterpret_cast< wxFontMapper
* >(argp1
);
13394 arg2
= wxString_in_helper(obj1
);
13395 if (arg2
== NULL
) SWIG_fail
;
13399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13400 (arg1
)->SetDialogTitle((wxString
const &)*arg2
);
13401 wxPyEndAllowThreads(__tstate
);
13402 if (PyErr_Occurred()) SWIG_fail
;
13404 resultobj
= SWIG_Py_Void();
13419 SWIGINTERN PyObject
*FontMapper_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13421 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13422 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontMapper
, SWIG_NewClientData(obj
));
13423 return SWIG_Py_Void();
13426 SWIGINTERN PyObject
*FontMapper_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13427 return SWIG_Python_InitShadowInstance(args
);
13430 SWIGINTERN PyObject
*_wrap_new_Font(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13431 PyObject
*resultobj
= 0;
13436 bool arg5
= (bool) false ;
13437 wxString
const &arg6_defvalue
= wxPyEmptyString
;
13438 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
13439 wxFontEncoding arg7
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
13440 wxFont
*result
= 0 ;
13451 bool temp6
= false ;
13454 PyObject
* obj0
= 0 ;
13455 PyObject
* obj1
= 0 ;
13456 PyObject
* obj2
= 0 ;
13457 PyObject
* obj3
= 0 ;
13458 PyObject
* obj4
= 0 ;
13459 PyObject
* obj5
= 0 ;
13460 PyObject
* obj6
= 0 ;
13461 char * kwnames
[] = {
13462 (char *) "pointSize",(char *) "family",(char *) "style",(char *) "weight",(char *) "underline",(char *) "face",(char *) "encoding", NULL
13465 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:new_Font",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
13466 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13467 if (!SWIG_IsOK(ecode1
)) {
13468 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Font" "', expected argument " "1"" of type '" "int""'");
13470 arg1
= static_cast< int >(val1
);
13471 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13472 if (!SWIG_IsOK(ecode2
)) {
13473 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Font" "', expected argument " "2"" of type '" "int""'");
13475 arg2
= static_cast< int >(val2
);
13476 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13477 if (!SWIG_IsOK(ecode3
)) {
13478 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_Font" "', expected argument " "3"" of type '" "int""'");
13480 arg3
= static_cast< int >(val3
);
13481 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
13482 if (!SWIG_IsOK(ecode4
)) {
13483 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_Font" "', expected argument " "4"" of type '" "int""'");
13485 arg4
= static_cast< int >(val4
);
13487 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
13488 if (!SWIG_IsOK(ecode5
)) {
13489 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_Font" "', expected argument " "5"" of type '" "bool""'");
13491 arg5
= static_cast< bool >(val5
);
13495 arg6
= wxString_in_helper(obj5
);
13496 if (arg6
== NULL
) SWIG_fail
;
13501 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13502 if (!SWIG_IsOK(ecode7
)) {
13503 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "new_Font" "', expected argument " "7"" of type '" "wxFontEncoding""'");
13505 arg7
= static_cast< wxFontEncoding
>(val7
);
13508 if (!wxPyCheckForApp()) SWIG_fail
;
13509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13510 result
= (wxFont
*)new wxFont(arg1
,arg2
,arg3
,arg4
,arg5
,(wxString
const &)*arg6
,arg7
);
13511 wxPyEndAllowThreads(__tstate
);
13512 if (PyErr_Occurred()) SWIG_fail
;
13514 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_NEW
| 0 );
13529 SWIGINTERN PyObject
*_wrap_delete_Font(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13530 PyObject
*resultobj
= 0;
13531 wxFont
*arg1
= (wxFont
*) 0 ;
13534 PyObject
*swig_obj
[1] ;
13536 if (!args
) SWIG_fail
;
13537 swig_obj
[0] = args
;
13538 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, SWIG_POINTER_DISOWN
| 0 );
13539 if (!SWIG_IsOK(res1
)) {
13540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Font" "', expected argument " "1"" of type '" "wxFont *""'");
13542 arg1
= reinterpret_cast< wxFont
* >(argp1
);
13544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13547 wxPyEndAllowThreads(__tstate
);
13548 if (PyErr_Occurred()) SWIG_fail
;
13550 resultobj
= SWIG_Py_Void();
13557 SWIGINTERN PyObject
*_wrap_new_FontFromNativeInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13558 PyObject
*resultobj
= 0;
13559 wxNativeFontInfo
*arg1
= 0 ;
13560 wxFont
*result
= 0 ;
13563 PyObject
* obj0
= 0 ;
13564 char * kwnames
[] = {
13565 (char *) "info", NULL
13568 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_FontFromNativeInfo",kwnames
,&obj0
)) SWIG_fail
;
13569 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxNativeFontInfo
, 0 | 0);
13570 if (!SWIG_IsOK(res1
)) {
13571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FontFromNativeInfo" "', expected argument " "1"" of type '" "wxNativeFontInfo const &""'");
13574 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FontFromNativeInfo" "', expected argument " "1"" of type '" "wxNativeFontInfo const &""'");
13576 arg1
= reinterpret_cast< wxNativeFontInfo
* >(argp1
);
13578 if (!wxPyCheckForApp()) SWIG_fail
;
13579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13580 result
= (wxFont
*)new wxFont((wxNativeFontInfo
const &)*arg1
);
13581 wxPyEndAllowThreads(__tstate
);
13582 if (PyErr_Occurred()) SWIG_fail
;
13584 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
13591 SWIGINTERN PyObject
*_wrap_new_FontFromNativeInfoString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13592 PyObject
*resultobj
= 0;
13593 wxString
*arg1
= 0 ;
13594 wxFont
*result
= 0 ;
13595 bool temp1
= false ;
13596 PyObject
* obj0
= 0 ;
13597 char * kwnames
[] = {
13598 (char *) "info", NULL
13601 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_FontFromNativeInfoString",kwnames
,&obj0
)) SWIG_fail
;
13603 arg1
= wxString_in_helper(obj0
);
13604 if (arg1
== NULL
) SWIG_fail
;
13608 if (!wxPyCheckForApp()) SWIG_fail
;
13609 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13610 result
= (wxFont
*)new_wxFont((wxString
const &)*arg1
);
13611 wxPyEndAllowThreads(__tstate
);
13612 if (PyErr_Occurred()) SWIG_fail
;
13614 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
13629 SWIGINTERN PyObject
*_wrap_new_FFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13630 PyObject
*resultobj
= 0;
13632 wxFontFamily arg2
;
13633 int arg3
= (int) wxFONTFLAG_DEFAULT
;
13634 wxString
const &arg4_defvalue
= wxPyEmptyString
;
13635 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13636 wxFontEncoding arg5
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
13637 wxFont
*result
= 0 ;
13644 bool temp4
= false ;
13647 PyObject
* obj0
= 0 ;
13648 PyObject
* obj1
= 0 ;
13649 PyObject
* obj2
= 0 ;
13650 PyObject
* obj3
= 0 ;
13651 PyObject
* obj4
= 0 ;
13652 char * kwnames
[] = {
13653 (char *) "pointSize",(char *) "family",(char *) "flags",(char *) "face",(char *) "encoding", NULL
13656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_FFont",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13657 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
13658 if (!SWIG_IsOK(ecode1
)) {
13659 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FFont" "', expected argument " "1"" of type '" "int""'");
13661 arg1
= static_cast< int >(val1
);
13662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13663 if (!SWIG_IsOK(ecode2
)) {
13664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FFont" "', expected argument " "2"" of type '" "wxFontFamily""'");
13666 arg2
= static_cast< wxFontFamily
>(val2
);
13668 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13669 if (!SWIG_IsOK(ecode3
)) {
13670 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_FFont" "', expected argument " "3"" of type '" "int""'");
13672 arg3
= static_cast< int >(val3
);
13676 arg4
= wxString_in_helper(obj3
);
13677 if (arg4
== NULL
) SWIG_fail
;
13682 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
13683 if (!SWIG_IsOK(ecode5
)) {
13684 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_FFont" "', expected argument " "5"" of type '" "wxFontEncoding""'");
13686 arg5
= static_cast< wxFontEncoding
>(val5
);
13689 if (!wxPyCheckForApp()) SWIG_fail
;
13690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13691 result
= (wxFont
*)new_wxFont(arg1
,arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
13692 wxPyEndAllowThreads(__tstate
);
13693 if (PyErr_Occurred()) SWIG_fail
;
13695 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
13710 SWIGINTERN PyObject
*_wrap_new_FontFromPixelSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13711 PyObject
*resultobj
= 0;
13716 bool arg5
= (bool) false ;
13717 wxString
const &arg6_defvalue
= wxEmptyString
;
13718 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
13719 wxFontEncoding arg7
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
13720 wxFont
*result
= 0 ;
13730 bool temp6
= false ;
13733 PyObject
* obj0
= 0 ;
13734 PyObject
* obj1
= 0 ;
13735 PyObject
* obj2
= 0 ;
13736 PyObject
* obj3
= 0 ;
13737 PyObject
* obj4
= 0 ;
13738 PyObject
* obj5
= 0 ;
13739 PyObject
* obj6
= 0 ;
13740 char * kwnames
[] = {
13741 (char *) "pixelSize",(char *) "family",(char *) "style",(char *) "weight",(char *) "underlined",(char *) "face",(char *) "encoding", NULL
13744 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:new_FontFromPixelSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
13747 if ( ! wxSize_helper(obj0
, &arg1
)) SWIG_fail
;
13749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13750 if (!SWIG_IsOK(ecode2
)) {
13751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FontFromPixelSize" "', expected argument " "2"" of type '" "int""'");
13753 arg2
= static_cast< int >(val2
);
13754 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13755 if (!SWIG_IsOK(ecode3
)) {
13756 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_FontFromPixelSize" "', expected argument " "3"" of type '" "int""'");
13758 arg3
= static_cast< int >(val3
);
13759 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
13760 if (!SWIG_IsOK(ecode4
)) {
13761 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FontFromPixelSize" "', expected argument " "4"" of type '" "int""'");
13763 arg4
= static_cast< int >(val4
);
13765 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
13766 if (!SWIG_IsOK(ecode5
)) {
13767 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_FontFromPixelSize" "', expected argument " "5"" of type '" "bool""'");
13769 arg5
= static_cast< bool >(val5
);
13773 arg6
= wxString_in_helper(obj5
);
13774 if (arg6
== NULL
) SWIG_fail
;
13779 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13780 if (!SWIG_IsOK(ecode7
)) {
13781 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "new_FontFromPixelSize" "', expected argument " "7"" of type '" "wxFontEncoding""'");
13783 arg7
= static_cast< wxFontEncoding
>(val7
);
13786 if (!wxPyCheckForApp()) SWIG_fail
;
13787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13788 result
= (wxFont
*)new_wxFont((wxSize
const &)*arg1
,arg2
,arg3
,arg4
,arg5
,(wxString
const &)*arg6
,arg7
);
13789 wxPyEndAllowThreads(__tstate
);
13790 if (PyErr_Occurred()) SWIG_fail
;
13792 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
13807 SWIGINTERN PyObject
*_wrap_new_FFontFromPixelSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13808 PyObject
*resultobj
= 0;
13810 wxFontFamily arg2
;
13811 int arg3
= (int) wxFONTFLAG_DEFAULT
;
13812 wxString
const &arg4_defvalue
= wxEmptyString
;
13813 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13814 wxFontEncoding arg5
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
13815 wxFont
*result
= 0 ;
13821 bool temp4
= false ;
13824 PyObject
* obj0
= 0 ;
13825 PyObject
* obj1
= 0 ;
13826 PyObject
* obj2
= 0 ;
13827 PyObject
* obj3
= 0 ;
13828 PyObject
* obj4
= 0 ;
13829 char * kwnames
[] = {
13830 (char *) "pixelSize",(char *) "family",(char *) "flags",(char *) "face",(char *) "encoding", NULL
13833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_FFontFromPixelSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13836 if ( ! wxSize_helper(obj0
, &arg1
)) SWIG_fail
;
13838 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13839 if (!SWIG_IsOK(ecode2
)) {
13840 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FFontFromPixelSize" "', expected argument " "2"" of type '" "wxFontFamily""'");
13842 arg2
= static_cast< wxFontFamily
>(val2
);
13844 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13845 if (!SWIG_IsOK(ecode3
)) {
13846 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_FFontFromPixelSize" "', expected argument " "3"" of type '" "int""'");
13848 arg3
= static_cast< int >(val3
);
13852 arg4
= wxString_in_helper(obj3
);
13853 if (arg4
== NULL
) SWIG_fail
;
13858 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
13859 if (!SWIG_IsOK(ecode5
)) {
13860 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_FFontFromPixelSize" "', expected argument " "5"" of type '" "wxFontEncoding""'");
13862 arg5
= static_cast< wxFontEncoding
>(val5
);
13865 if (!wxPyCheckForApp()) SWIG_fail
;
13866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13867 result
= (wxFont
*)new_wxFont((wxSize
const &)*arg1
,arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
13868 wxPyEndAllowThreads(__tstate
);
13869 if (PyErr_Occurred()) SWIG_fail
;
13871 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
13886 SWIGINTERN PyObject
*_wrap_Font_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13887 PyObject
*resultobj
= 0;
13888 wxFont
*arg1
= (wxFont
*) 0 ;
13892 PyObject
*swig_obj
[1] ;
13894 if (!args
) SWIG_fail
;
13895 swig_obj
[0] = args
;
13896 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
13897 if (!SWIG_IsOK(res1
)) {
13898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_IsOk" "', expected argument " "1"" of type '" "wxFont const *""'");
13900 arg1
= reinterpret_cast< wxFont
* >(argp1
);
13902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13903 result
= (bool)((wxFont
const *)arg1
)->IsOk();
13904 wxPyEndAllowThreads(__tstate
);
13905 if (PyErr_Occurred()) SWIG_fail
;
13908 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13916 SWIGINTERN PyObject
*_wrap_Font___eq__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13917 PyObject
*resultobj
= 0;
13918 wxFont
*arg1
= (wxFont
*) 0 ;
13919 wxFont
*arg2
= (wxFont
*) 0 ;
13925 PyObject
* obj0
= 0 ;
13926 PyObject
* obj1
= 0 ;
13927 char * kwnames
[] = {
13928 (char *) "self",(char *) "other", NULL
13931 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font___eq__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13932 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
13933 if (!SWIG_IsOK(res1
)) {
13934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font___eq__" "', expected argument " "1"" of type '" "wxFont *""'");
13936 arg1
= reinterpret_cast< wxFont
* >(argp1
);
13937 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFont
, 0 | 0 );
13938 if (!SWIG_IsOK(res2
)) {
13939 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Font___eq__" "', expected argument " "2"" of type '" "wxFont const *""'");
13941 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13944 result
= (bool)wxFont___eq__(arg1
,(wxFont
const *)arg2
);
13945 wxPyEndAllowThreads(__tstate
);
13946 if (PyErr_Occurred()) SWIG_fail
;
13949 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13957 SWIGINTERN PyObject
*_wrap_Font___ne__(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13958 PyObject
*resultobj
= 0;
13959 wxFont
*arg1
= (wxFont
*) 0 ;
13960 wxFont
*arg2
= (wxFont
*) 0 ;
13966 PyObject
* obj0
= 0 ;
13967 PyObject
* obj1
= 0 ;
13968 char * kwnames
[] = {
13969 (char *) "self",(char *) "other", NULL
13972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font___ne__",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
13974 if (!SWIG_IsOK(res1
)) {
13975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font___ne__" "', expected argument " "1"" of type '" "wxFont *""'");
13977 arg1
= reinterpret_cast< wxFont
* >(argp1
);
13978 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFont
, 0 | 0 );
13979 if (!SWIG_IsOK(res2
)) {
13980 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Font___ne__" "', expected argument " "2"" of type '" "wxFont const *""'");
13982 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13985 result
= (bool)wxFont___ne__(arg1
,(wxFont
const *)arg2
);
13986 wxPyEndAllowThreads(__tstate
);
13987 if (PyErr_Occurred()) SWIG_fail
;
13990 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13998 SWIGINTERN PyObject
*_wrap_Font_GetPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13999 PyObject
*resultobj
= 0;
14000 wxFont
*arg1
= (wxFont
*) 0 ;
14004 PyObject
*swig_obj
[1] ;
14006 if (!args
) SWIG_fail
;
14007 swig_obj
[0] = args
;
14008 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14009 if (!SWIG_IsOK(res1
)) {
14010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetPointSize" "', expected argument " "1"" of type '" "wxFont const *""'");
14012 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14015 result
= (int)((wxFont
const *)arg1
)->GetPointSize();
14016 wxPyEndAllowThreads(__tstate
);
14017 if (PyErr_Occurred()) SWIG_fail
;
14019 resultobj
= SWIG_From_int(static_cast< int >(result
));
14026 SWIGINTERN PyObject
*_wrap_Font_GetPixelSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14027 PyObject
*resultobj
= 0;
14028 wxFont
*arg1
= (wxFont
*) 0 ;
14032 PyObject
*swig_obj
[1] ;
14034 if (!args
) SWIG_fail
;
14035 swig_obj
[0] = args
;
14036 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14037 if (!SWIG_IsOK(res1
)) {
14038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetPixelSize" "', expected argument " "1"" of type '" "wxFont const *""'");
14040 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14043 result
= ((wxFont
const *)arg1
)->GetPixelSize();
14044 wxPyEndAllowThreads(__tstate
);
14045 if (PyErr_Occurred()) SWIG_fail
;
14047 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
14054 SWIGINTERN PyObject
*_wrap_Font_IsUsingSizeInPixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14055 PyObject
*resultobj
= 0;
14056 wxFont
*arg1
= (wxFont
*) 0 ;
14060 PyObject
*swig_obj
[1] ;
14062 if (!args
) SWIG_fail
;
14063 swig_obj
[0] = args
;
14064 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14065 if (!SWIG_IsOK(res1
)) {
14066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_IsUsingSizeInPixels" "', expected argument " "1"" of type '" "wxFont const *""'");
14068 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14071 result
= (bool)((wxFont
const *)arg1
)->IsUsingSizeInPixels();
14072 wxPyEndAllowThreads(__tstate
);
14073 if (PyErr_Occurred()) SWIG_fail
;
14076 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14084 SWIGINTERN PyObject
*_wrap_Font_GetFamily(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14085 PyObject
*resultobj
= 0;
14086 wxFont
*arg1
= (wxFont
*) 0 ;
14090 PyObject
*swig_obj
[1] ;
14092 if (!args
) SWIG_fail
;
14093 swig_obj
[0] = args
;
14094 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14095 if (!SWIG_IsOK(res1
)) {
14096 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetFamily" "', expected argument " "1"" of type '" "wxFont const *""'");
14098 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14101 result
= (int)((wxFont
const *)arg1
)->GetFamily();
14102 wxPyEndAllowThreads(__tstate
);
14103 if (PyErr_Occurred()) SWIG_fail
;
14105 resultobj
= SWIG_From_int(static_cast< int >(result
));
14112 SWIGINTERN PyObject
*_wrap_Font_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14113 PyObject
*resultobj
= 0;
14114 wxFont
*arg1
= (wxFont
*) 0 ;
14118 PyObject
*swig_obj
[1] ;
14120 if (!args
) SWIG_fail
;
14121 swig_obj
[0] = args
;
14122 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14123 if (!SWIG_IsOK(res1
)) {
14124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetStyle" "', expected argument " "1"" of type '" "wxFont const *""'");
14126 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14129 result
= (int)((wxFont
const *)arg1
)->GetStyle();
14130 wxPyEndAllowThreads(__tstate
);
14131 if (PyErr_Occurred()) SWIG_fail
;
14133 resultobj
= SWIG_From_int(static_cast< int >(result
));
14140 SWIGINTERN PyObject
*_wrap_Font_GetWeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14141 PyObject
*resultobj
= 0;
14142 wxFont
*arg1
= (wxFont
*) 0 ;
14146 PyObject
*swig_obj
[1] ;
14148 if (!args
) SWIG_fail
;
14149 swig_obj
[0] = args
;
14150 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14151 if (!SWIG_IsOK(res1
)) {
14152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetWeight" "', expected argument " "1"" of type '" "wxFont const *""'");
14154 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14157 result
= (int)((wxFont
const *)arg1
)->GetWeight();
14158 wxPyEndAllowThreads(__tstate
);
14159 if (PyErr_Occurred()) SWIG_fail
;
14161 resultobj
= SWIG_From_int(static_cast< int >(result
));
14168 SWIGINTERN PyObject
*_wrap_Font_GetUnderlined(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14169 PyObject
*resultobj
= 0;
14170 wxFont
*arg1
= (wxFont
*) 0 ;
14174 PyObject
*swig_obj
[1] ;
14176 if (!args
) SWIG_fail
;
14177 swig_obj
[0] = args
;
14178 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14179 if (!SWIG_IsOK(res1
)) {
14180 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetUnderlined" "', expected argument " "1"" of type '" "wxFont const *""'");
14182 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14184 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14185 result
= (bool)((wxFont
const *)arg1
)->GetUnderlined();
14186 wxPyEndAllowThreads(__tstate
);
14187 if (PyErr_Occurred()) SWIG_fail
;
14190 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14198 SWIGINTERN PyObject
*_wrap_Font_GetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14199 PyObject
*resultobj
= 0;
14200 wxFont
*arg1
= (wxFont
*) 0 ;
14204 PyObject
*swig_obj
[1] ;
14206 if (!args
) SWIG_fail
;
14207 swig_obj
[0] = args
;
14208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14209 if (!SWIG_IsOK(res1
)) {
14210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetFaceName" "', expected argument " "1"" of type '" "wxFont const *""'");
14212 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14215 result
= ((wxFont
const *)arg1
)->GetFaceName();
14216 wxPyEndAllowThreads(__tstate
);
14217 if (PyErr_Occurred()) SWIG_fail
;
14221 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14223 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14232 SWIGINTERN PyObject
*_wrap_Font_GetEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14233 PyObject
*resultobj
= 0;
14234 wxFont
*arg1
= (wxFont
*) 0 ;
14235 wxFontEncoding result
;
14238 PyObject
*swig_obj
[1] ;
14240 if (!args
) SWIG_fail
;
14241 swig_obj
[0] = args
;
14242 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14243 if (!SWIG_IsOK(res1
)) {
14244 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetEncoding" "', expected argument " "1"" of type '" "wxFont const *""'");
14246 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14249 result
= (wxFontEncoding
)((wxFont
const *)arg1
)->GetEncoding();
14250 wxPyEndAllowThreads(__tstate
);
14251 if (PyErr_Occurred()) SWIG_fail
;
14253 resultobj
= SWIG_From_int(static_cast< int >(result
));
14260 SWIGINTERN PyObject
*_wrap_Font_GetNativeFontInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14261 PyObject
*resultobj
= 0;
14262 wxFont
*arg1
= (wxFont
*) 0 ;
14263 wxNativeFontInfo
*result
= 0 ;
14266 PyObject
*swig_obj
[1] ;
14268 if (!args
) SWIG_fail
;
14269 swig_obj
[0] = args
;
14270 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14271 if (!SWIG_IsOK(res1
)) {
14272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetNativeFontInfo" "', expected argument " "1"" of type '" "wxFont const *""'");
14274 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14277 result
= (wxNativeFontInfo
*)((wxFont
const *)arg1
)->GetNativeFontInfo();
14278 wxPyEndAllowThreads(__tstate
);
14279 if (PyErr_Occurred()) SWIG_fail
;
14281 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxNativeFontInfo
, 0 | 0 );
14288 SWIGINTERN PyObject
*_wrap_Font_IsFixedWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14289 PyObject
*resultobj
= 0;
14290 wxFont
*arg1
= (wxFont
*) 0 ;
14294 PyObject
*swig_obj
[1] ;
14296 if (!args
) SWIG_fail
;
14297 swig_obj
[0] = args
;
14298 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14299 if (!SWIG_IsOK(res1
)) {
14300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_IsFixedWidth" "', expected argument " "1"" of type '" "wxFont const *""'");
14302 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14305 result
= (bool)((wxFont
const *)arg1
)->IsFixedWidth();
14306 wxPyEndAllowThreads(__tstate
);
14307 if (PyErr_Occurred()) SWIG_fail
;
14310 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14318 SWIGINTERN PyObject
*_wrap_Font_GetNativeFontInfoDesc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14319 PyObject
*resultobj
= 0;
14320 wxFont
*arg1
= (wxFont
*) 0 ;
14324 PyObject
*swig_obj
[1] ;
14326 if (!args
) SWIG_fail
;
14327 swig_obj
[0] = args
;
14328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14329 if (!SWIG_IsOK(res1
)) {
14330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetNativeFontInfoDesc" "', expected argument " "1"" of type '" "wxFont const *""'");
14332 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14335 result
= ((wxFont
const *)arg1
)->GetNativeFontInfoDesc();
14336 wxPyEndAllowThreads(__tstate
);
14337 if (PyErr_Occurred()) SWIG_fail
;
14341 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14343 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14352 SWIGINTERN PyObject
*_wrap_Font_GetNativeFontInfoUserDesc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14353 PyObject
*resultobj
= 0;
14354 wxFont
*arg1
= (wxFont
*) 0 ;
14358 PyObject
*swig_obj
[1] ;
14360 if (!args
) SWIG_fail
;
14361 swig_obj
[0] = args
;
14362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14363 if (!SWIG_IsOK(res1
)) {
14364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetNativeFontInfoUserDesc" "', expected argument " "1"" of type '" "wxFont const *""'");
14366 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14369 result
= ((wxFont
const *)arg1
)->GetNativeFontInfoUserDesc();
14370 wxPyEndAllowThreads(__tstate
);
14371 if (PyErr_Occurred()) SWIG_fail
;
14375 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14377 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14386 SWIGINTERN PyObject
*_wrap_Font_SetPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14387 PyObject
*resultobj
= 0;
14388 wxFont
*arg1
= (wxFont
*) 0 ;
14394 PyObject
* obj0
= 0 ;
14395 PyObject
* obj1
= 0 ;
14396 char * kwnames
[] = {
14397 (char *) "self",(char *) "pointSize", NULL
14400 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetPointSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14401 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14402 if (!SWIG_IsOK(res1
)) {
14403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetPointSize" "', expected argument " "1"" of type '" "wxFont *""'");
14405 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14406 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14407 if (!SWIG_IsOK(ecode2
)) {
14408 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetPointSize" "', expected argument " "2"" of type '" "int""'");
14410 arg2
= static_cast< int >(val2
);
14412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14413 (arg1
)->SetPointSize(arg2
);
14414 wxPyEndAllowThreads(__tstate
);
14415 if (PyErr_Occurred()) SWIG_fail
;
14417 resultobj
= SWIG_Py_Void();
14424 SWIGINTERN PyObject
*_wrap_Font_SetPixelSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14425 PyObject
*resultobj
= 0;
14426 wxFont
*arg1
= (wxFont
*) 0 ;
14431 PyObject
* obj0
= 0 ;
14432 PyObject
* obj1
= 0 ;
14433 char * kwnames
[] = {
14434 (char *) "self",(char *) "pixelSize", NULL
14437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetPixelSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14439 if (!SWIG_IsOK(res1
)) {
14440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetPixelSize" "', expected argument " "1"" of type '" "wxFont *""'");
14442 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14445 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
14448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14449 (arg1
)->SetPixelSize((wxSize
const &)*arg2
);
14450 wxPyEndAllowThreads(__tstate
);
14451 if (PyErr_Occurred()) SWIG_fail
;
14453 resultobj
= SWIG_Py_Void();
14460 SWIGINTERN PyObject
*_wrap_Font_SetFamily(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14461 PyObject
*resultobj
= 0;
14462 wxFont
*arg1
= (wxFont
*) 0 ;
14468 PyObject
* obj0
= 0 ;
14469 PyObject
* obj1
= 0 ;
14470 char * kwnames
[] = {
14471 (char *) "self",(char *) "family", NULL
14474 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetFamily",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14475 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14476 if (!SWIG_IsOK(res1
)) {
14477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetFamily" "', expected argument " "1"" of type '" "wxFont *""'");
14479 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14480 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14481 if (!SWIG_IsOK(ecode2
)) {
14482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetFamily" "', expected argument " "2"" of type '" "int""'");
14484 arg2
= static_cast< int >(val2
);
14486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14487 (arg1
)->SetFamily(arg2
);
14488 wxPyEndAllowThreads(__tstate
);
14489 if (PyErr_Occurred()) SWIG_fail
;
14491 resultobj
= SWIG_Py_Void();
14498 SWIGINTERN PyObject
*_wrap_Font_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14499 PyObject
*resultobj
= 0;
14500 wxFont
*arg1
= (wxFont
*) 0 ;
14506 PyObject
* obj0
= 0 ;
14507 PyObject
* obj1
= 0 ;
14508 char * kwnames
[] = {
14509 (char *) "self",(char *) "style", NULL
14512 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14513 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14514 if (!SWIG_IsOK(res1
)) {
14515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetStyle" "', expected argument " "1"" of type '" "wxFont *""'");
14517 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14518 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14519 if (!SWIG_IsOK(ecode2
)) {
14520 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetStyle" "', expected argument " "2"" of type '" "int""'");
14522 arg2
= static_cast< int >(val2
);
14524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14525 (arg1
)->SetStyle(arg2
);
14526 wxPyEndAllowThreads(__tstate
);
14527 if (PyErr_Occurred()) SWIG_fail
;
14529 resultobj
= SWIG_Py_Void();
14536 SWIGINTERN PyObject
*_wrap_Font_SetWeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14537 PyObject
*resultobj
= 0;
14538 wxFont
*arg1
= (wxFont
*) 0 ;
14544 PyObject
* obj0
= 0 ;
14545 PyObject
* obj1
= 0 ;
14546 char * kwnames
[] = {
14547 (char *) "self",(char *) "weight", NULL
14550 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetWeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14551 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14552 if (!SWIG_IsOK(res1
)) {
14553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetWeight" "', expected argument " "1"" of type '" "wxFont *""'");
14555 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14556 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14557 if (!SWIG_IsOK(ecode2
)) {
14558 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetWeight" "', expected argument " "2"" of type '" "int""'");
14560 arg2
= static_cast< int >(val2
);
14562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14563 (arg1
)->SetWeight(arg2
);
14564 wxPyEndAllowThreads(__tstate
);
14565 if (PyErr_Occurred()) SWIG_fail
;
14567 resultobj
= SWIG_Py_Void();
14574 SWIGINTERN PyObject
*_wrap_Font_SetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14575 PyObject
*resultobj
= 0;
14576 wxFont
*arg1
= (wxFont
*) 0 ;
14577 wxString
*arg2
= 0 ;
14581 bool temp2
= false ;
14582 PyObject
* obj0
= 0 ;
14583 PyObject
* obj1
= 0 ;
14584 char * kwnames
[] = {
14585 (char *) "self",(char *) "faceName", NULL
14588 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetFaceName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14589 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14590 if (!SWIG_IsOK(res1
)) {
14591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetFaceName" "', expected argument " "1"" of type '" "wxFont *""'");
14593 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14595 arg2
= wxString_in_helper(obj1
);
14596 if (arg2
== NULL
) SWIG_fail
;
14600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14601 result
= (bool)(arg1
)->SetFaceName((wxString
const &)*arg2
);
14602 wxPyEndAllowThreads(__tstate
);
14603 if (PyErr_Occurred()) SWIG_fail
;
14606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14622 SWIGINTERN PyObject
*_wrap_Font_SetUnderlined(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14623 PyObject
*resultobj
= 0;
14624 wxFont
*arg1
= (wxFont
*) 0 ;
14630 PyObject
* obj0
= 0 ;
14631 PyObject
* obj1
= 0 ;
14632 char * kwnames
[] = {
14633 (char *) "self",(char *) "underlined", NULL
14636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetUnderlined",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14638 if (!SWIG_IsOK(res1
)) {
14639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetUnderlined" "', expected argument " "1"" of type '" "wxFont *""'");
14641 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14642 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
14643 if (!SWIG_IsOK(ecode2
)) {
14644 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetUnderlined" "', expected argument " "2"" of type '" "bool""'");
14646 arg2
= static_cast< bool >(val2
);
14648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14649 (arg1
)->SetUnderlined(arg2
);
14650 wxPyEndAllowThreads(__tstate
);
14651 if (PyErr_Occurred()) SWIG_fail
;
14653 resultobj
= SWIG_Py_Void();
14660 SWIGINTERN PyObject
*_wrap_Font_SetEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14661 PyObject
*resultobj
= 0;
14662 wxFont
*arg1
= (wxFont
*) 0 ;
14663 wxFontEncoding arg2
;
14668 PyObject
* obj0
= 0 ;
14669 PyObject
* obj1
= 0 ;
14670 char * kwnames
[] = {
14671 (char *) "self",(char *) "encoding", NULL
14674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetEncoding",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14676 if (!SWIG_IsOK(res1
)) {
14677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetEncoding" "', expected argument " "1"" of type '" "wxFont *""'");
14679 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14680 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14681 if (!SWIG_IsOK(ecode2
)) {
14682 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetEncoding" "', expected argument " "2"" of type '" "wxFontEncoding""'");
14684 arg2
= static_cast< wxFontEncoding
>(val2
);
14686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14687 (arg1
)->SetEncoding(arg2
);
14688 wxPyEndAllowThreads(__tstate
);
14689 if (PyErr_Occurred()) SWIG_fail
;
14691 resultobj
= SWIG_Py_Void();
14698 SWIGINTERN PyObject
*_wrap_Font_SetNativeFontInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14699 PyObject
*resultobj
= 0;
14700 wxFont
*arg1
= (wxFont
*) 0 ;
14701 wxNativeFontInfo
*arg2
= 0 ;
14706 PyObject
* obj0
= 0 ;
14707 PyObject
* obj1
= 0 ;
14708 char * kwnames
[] = {
14709 (char *) "self",(char *) "info", NULL
14712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetNativeFontInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14714 if (!SWIG_IsOK(res1
)) {
14715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetNativeFontInfo" "', expected argument " "1"" of type '" "wxFont *""'");
14717 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14718 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxNativeFontInfo
, 0 | 0);
14719 if (!SWIG_IsOK(res2
)) {
14720 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Font_SetNativeFontInfo" "', expected argument " "2"" of type '" "wxNativeFontInfo const &""'");
14723 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Font_SetNativeFontInfo" "', expected argument " "2"" of type '" "wxNativeFontInfo const &""'");
14725 arg2
= reinterpret_cast< wxNativeFontInfo
* >(argp2
);
14727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14728 (arg1
)->SetNativeFontInfo((wxNativeFontInfo
const &)*arg2
);
14729 wxPyEndAllowThreads(__tstate
);
14730 if (PyErr_Occurred()) SWIG_fail
;
14732 resultobj
= SWIG_Py_Void();
14739 SWIGINTERN PyObject
*_wrap_Font_SetNativeFontInfoFromString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14740 PyObject
*resultobj
= 0;
14741 wxFont
*arg1
= (wxFont
*) 0 ;
14742 wxString
*arg2
= 0 ;
14746 bool temp2
= false ;
14747 PyObject
* obj0
= 0 ;
14748 PyObject
* obj1
= 0 ;
14749 char * kwnames
[] = {
14750 (char *) "self",(char *) "info", NULL
14753 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetNativeFontInfoFromString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14754 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14755 if (!SWIG_IsOK(res1
)) {
14756 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetNativeFontInfoFromString" "', expected argument " "1"" of type '" "wxFont *""'");
14758 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14760 arg2
= wxString_in_helper(obj1
);
14761 if (arg2
== NULL
) SWIG_fail
;
14765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14766 result
= (bool)(arg1
)->SetNativeFontInfo((wxString
const &)*arg2
);
14767 wxPyEndAllowThreads(__tstate
);
14768 if (PyErr_Occurred()) SWIG_fail
;
14771 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14787 SWIGINTERN PyObject
*_wrap_Font_SetNativeFontInfoUserDesc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14788 PyObject
*resultobj
= 0;
14789 wxFont
*arg1
= (wxFont
*) 0 ;
14790 wxString
*arg2
= 0 ;
14794 bool temp2
= false ;
14795 PyObject
* obj0
= 0 ;
14796 PyObject
* obj1
= 0 ;
14797 char * kwnames
[] = {
14798 (char *) "self",(char *) "info", NULL
14801 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Font_SetNativeFontInfoUserDesc",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14802 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14803 if (!SWIG_IsOK(res1
)) {
14804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetNativeFontInfoUserDesc" "', expected argument " "1"" of type '" "wxFont *""'");
14806 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14808 arg2
= wxString_in_helper(obj1
);
14809 if (arg2
== NULL
) SWIG_fail
;
14813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14814 result
= (bool)(arg1
)->SetNativeFontInfoUserDesc((wxString
const &)*arg2
);
14815 wxPyEndAllowThreads(__tstate
);
14816 if (PyErr_Occurred()) SWIG_fail
;
14819 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14835 SWIGINTERN PyObject
*_wrap_Font_GetFamilyString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14836 PyObject
*resultobj
= 0;
14837 wxFont
*arg1
= (wxFont
*) 0 ;
14841 PyObject
*swig_obj
[1] ;
14843 if (!args
) SWIG_fail
;
14844 swig_obj
[0] = args
;
14845 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14846 if (!SWIG_IsOK(res1
)) {
14847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetFamilyString" "', expected argument " "1"" of type '" "wxFont const *""'");
14849 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14852 result
= ((wxFont
const *)arg1
)->GetFamilyString();
14853 wxPyEndAllowThreads(__tstate
);
14854 if (PyErr_Occurred()) SWIG_fail
;
14858 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14860 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14869 SWIGINTERN PyObject
*_wrap_Font_GetStyleString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14870 PyObject
*resultobj
= 0;
14871 wxFont
*arg1
= (wxFont
*) 0 ;
14875 PyObject
*swig_obj
[1] ;
14877 if (!args
) SWIG_fail
;
14878 swig_obj
[0] = args
;
14879 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14880 if (!SWIG_IsOK(res1
)) {
14881 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetStyleString" "', expected argument " "1"" of type '" "wxFont const *""'");
14883 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14885 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14886 result
= ((wxFont
const *)arg1
)->GetStyleString();
14887 wxPyEndAllowThreads(__tstate
);
14888 if (PyErr_Occurred()) SWIG_fail
;
14892 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14894 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14903 SWIGINTERN PyObject
*_wrap_Font_GetWeightString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14904 PyObject
*resultobj
= 0;
14905 wxFont
*arg1
= (wxFont
*) 0 ;
14909 PyObject
*swig_obj
[1] ;
14911 if (!args
) SWIG_fail
;
14912 swig_obj
[0] = args
;
14913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14914 if (!SWIG_IsOK(res1
)) {
14915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetWeightString" "', expected argument " "1"" of type '" "wxFont const *""'");
14917 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14920 result
= ((wxFont
const *)arg1
)->GetWeightString();
14921 wxPyEndAllowThreads(__tstate
);
14922 if (PyErr_Occurred()) SWIG_fail
;
14926 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14928 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14937 SWIGINTERN PyObject
*_wrap_Font_SetNoAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14938 PyObject
*resultobj
= 0;
14939 wxFont
*arg1
= (wxFont
*) 0 ;
14940 bool arg2
= (bool) true ;
14945 PyObject
* obj0
= 0 ;
14946 PyObject
* obj1
= 0 ;
14947 char * kwnames
[] = {
14948 (char *) "self",(char *) "no", NULL
14951 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Font_SetNoAntiAliasing",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14952 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14953 if (!SWIG_IsOK(res1
)) {
14954 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_SetNoAntiAliasing" "', expected argument " "1"" of type '" "wxFont *""'");
14956 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14958 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
14959 if (!SWIG_IsOK(ecode2
)) {
14960 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Font_SetNoAntiAliasing" "', expected argument " "2"" of type '" "bool""'");
14962 arg2
= static_cast< bool >(val2
);
14965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14966 (arg1
)->SetNoAntiAliasing(arg2
);
14967 wxPyEndAllowThreads(__tstate
);
14968 if (PyErr_Occurred()) SWIG_fail
;
14970 resultobj
= SWIG_Py_Void();
14977 SWIGINTERN PyObject
*_wrap_Font_GetNoAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14978 PyObject
*resultobj
= 0;
14979 wxFont
*arg1
= (wxFont
*) 0 ;
14983 PyObject
*swig_obj
[1] ;
14985 if (!args
) SWIG_fail
;
14986 swig_obj
[0] = args
;
14987 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFont
, 0 | 0 );
14988 if (!SWIG_IsOK(res1
)) {
14989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Font_GetNoAntiAliasing" "', expected argument " "1"" of type '" "wxFont const *""'");
14991 arg1
= reinterpret_cast< wxFont
* >(argp1
);
14993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14994 result
= (bool)((wxFont
const *)arg1
)->GetNoAntiAliasing();
14995 wxPyEndAllowThreads(__tstate
);
14996 if (PyErr_Occurred()) SWIG_fail
;
14999 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15007 SWIGINTERN PyObject
*_wrap_Font_GetDefaultEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15008 PyObject
*resultobj
= 0;
15009 wxFontEncoding result
;
15011 if (!SWIG_Python_UnpackTuple(args
,"Font_GetDefaultEncoding",0,0,0)) SWIG_fail
;
15013 if (!wxPyCheckForApp()) SWIG_fail
;
15014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15015 result
= (wxFontEncoding
)wxFont::GetDefaultEncoding();
15016 wxPyEndAllowThreads(__tstate
);
15017 if (PyErr_Occurred()) SWIG_fail
;
15019 resultobj
= SWIG_From_int(static_cast< int >(result
));
15026 SWIGINTERN PyObject
*_wrap_Font_SetDefaultEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15027 PyObject
*resultobj
= 0;
15028 wxFontEncoding arg1
;
15031 PyObject
* obj0
= 0 ;
15032 char * kwnames
[] = {
15033 (char *) "encoding", NULL
15036 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Font_SetDefaultEncoding",kwnames
,&obj0
)) SWIG_fail
;
15037 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
15038 if (!SWIG_IsOK(ecode1
)) {
15039 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Font_SetDefaultEncoding" "', expected argument " "1"" of type '" "wxFontEncoding""'");
15041 arg1
= static_cast< wxFontEncoding
>(val1
);
15043 if (!wxPyCheckForApp()) SWIG_fail
;
15044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15045 wxFont::SetDefaultEncoding(arg1
);
15046 wxPyEndAllowThreads(__tstate
);
15047 if (PyErr_Occurred()) SWIG_fail
;
15049 resultobj
= SWIG_Py_Void();
15056 SWIGINTERN PyObject
*Font_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15058 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15059 SWIG_TypeNewClientData(SWIGTYPE_p_wxFont
, SWIG_NewClientData(obj
));
15060 return SWIG_Py_Void();
15063 SWIGINTERN PyObject
*Font_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15064 return SWIG_Python_InitShadowInstance(args
);
15067 SWIGINTERN PyObject
*_wrap_new_FontEnumerator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15068 PyObject
*resultobj
= 0;
15069 wxPyFontEnumerator
*result
= 0 ;
15071 if (!SWIG_Python_UnpackTuple(args
,"new_FontEnumerator",0,0,0)) SWIG_fail
;
15073 if (!wxPyCheckForApp()) SWIG_fail
;
15074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15075 result
= (wxPyFontEnumerator
*)new wxPyFontEnumerator();
15076 wxPyEndAllowThreads(__tstate
);
15077 if (PyErr_Occurred()) SWIG_fail
;
15079 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyFontEnumerator
, SWIG_POINTER_NEW
| 0 );
15086 SWIGINTERN PyObject
*_wrap_delete_FontEnumerator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15087 PyObject
*resultobj
= 0;
15088 wxPyFontEnumerator
*arg1
= (wxPyFontEnumerator
*) 0 ;
15091 PyObject
*swig_obj
[1] ;
15093 if (!args
) SWIG_fail
;
15094 swig_obj
[0] = args
;
15095 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyFontEnumerator
, SWIG_POINTER_DISOWN
| 0 );
15096 if (!SWIG_IsOK(res1
)) {
15097 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FontEnumerator" "', expected argument " "1"" of type '" "wxPyFontEnumerator *""'");
15099 arg1
= reinterpret_cast< wxPyFontEnumerator
* >(argp1
);
15101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15104 wxPyEndAllowThreads(__tstate
);
15105 if (PyErr_Occurred()) SWIG_fail
;
15107 resultobj
= SWIG_Py_Void();
15114 SWIGINTERN PyObject
*_wrap_FontEnumerator__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15115 PyObject
*resultobj
= 0;
15116 wxPyFontEnumerator
*arg1
= (wxPyFontEnumerator
*) 0 ;
15117 PyObject
*arg2
= (PyObject
*) 0 ;
15118 PyObject
*arg3
= (PyObject
*) 0 ;
15124 PyObject
* obj0
= 0 ;
15125 PyObject
* obj1
= 0 ;
15126 PyObject
* obj2
= 0 ;
15127 PyObject
* obj3
= 0 ;
15128 char * kwnames
[] = {
15129 (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL
15132 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FontEnumerator__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15133 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFontEnumerator
, 0 | 0 );
15134 if (!SWIG_IsOK(res1
)) {
15135 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontEnumerator__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyFontEnumerator *""'");
15137 arg1
= reinterpret_cast< wxPyFontEnumerator
* >(argp1
);
15140 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
15141 if (!SWIG_IsOK(ecode4
)) {
15142 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FontEnumerator__setCallbackInfo" "', expected argument " "4"" of type '" "bool""'");
15144 arg4
= static_cast< bool >(val4
);
15146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15147 (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
);
15148 wxPyEndAllowThreads(__tstate
);
15149 if (PyErr_Occurred()) SWIG_fail
;
15151 resultobj
= SWIG_Py_Void();
15158 SWIGINTERN PyObject
*_wrap_FontEnumerator_EnumerateFacenames(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15159 PyObject
*resultobj
= 0;
15160 wxPyFontEnumerator
*arg1
= (wxPyFontEnumerator
*) 0 ;
15161 wxFontEncoding arg2
= (wxFontEncoding
) wxFONTENCODING_SYSTEM
;
15162 bool arg3
= (bool) false ;
15170 PyObject
* obj0
= 0 ;
15171 PyObject
* obj1
= 0 ;
15172 PyObject
* obj2
= 0 ;
15173 char * kwnames
[] = {
15174 (char *) "self",(char *) "encoding",(char *) "fixedWidthOnly", NULL
15177 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:FontEnumerator_EnumerateFacenames",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15178 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFontEnumerator
, 0 | 0 );
15179 if (!SWIG_IsOK(res1
)) {
15180 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontEnumerator_EnumerateFacenames" "', expected argument " "1"" of type '" "wxPyFontEnumerator *""'");
15182 arg1
= reinterpret_cast< wxPyFontEnumerator
* >(argp1
);
15184 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15185 if (!SWIG_IsOK(ecode2
)) {
15186 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontEnumerator_EnumerateFacenames" "', expected argument " "2"" of type '" "wxFontEncoding""'");
15188 arg2
= static_cast< wxFontEncoding
>(val2
);
15191 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
15192 if (!SWIG_IsOK(ecode3
)) {
15193 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FontEnumerator_EnumerateFacenames" "', expected argument " "3"" of type '" "bool""'");
15195 arg3
= static_cast< bool >(val3
);
15198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15199 result
= (bool)(arg1
)->EnumerateFacenames(arg2
,arg3
);
15200 wxPyEndAllowThreads(__tstate
);
15201 if (PyErr_Occurred()) SWIG_fail
;
15204 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15212 SWIGINTERN PyObject
*_wrap_FontEnumerator_EnumerateEncodings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15213 PyObject
*resultobj
= 0;
15214 wxPyFontEnumerator
*arg1
= (wxPyFontEnumerator
*) 0 ;
15215 wxString
const &arg2_defvalue
= wxPyEmptyString
;
15216 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
15220 bool temp2
= false ;
15221 PyObject
* obj0
= 0 ;
15222 PyObject
* obj1
= 0 ;
15223 char * kwnames
[] = {
15224 (char *) "self",(char *) "facename", NULL
15227 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:FontEnumerator_EnumerateEncodings",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15228 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyFontEnumerator
, 0 | 0 );
15229 if (!SWIG_IsOK(res1
)) {
15230 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontEnumerator_EnumerateEncodings" "', expected argument " "1"" of type '" "wxPyFontEnumerator *""'");
15232 arg1
= reinterpret_cast< wxPyFontEnumerator
* >(argp1
);
15235 arg2
= wxString_in_helper(obj1
);
15236 if (arg2
== NULL
) SWIG_fail
;
15241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15242 result
= (bool)(arg1
)->EnumerateEncodings((wxString
const &)*arg2
);
15243 wxPyEndAllowThreads(__tstate
);
15244 if (PyErr_Occurred()) SWIG_fail
;
15247 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15263 SWIGINTERN PyObject
*_wrap_FontEnumerator_GetEncodings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15264 PyObject
*resultobj
= 0;
15265 PyObject
*result
= 0 ;
15267 if (!SWIG_Python_UnpackTuple(args
,"FontEnumerator_GetEncodings",0,0,0)) SWIG_fail
;
15269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15270 result
= (PyObject
*)wxPyFontEnumerator_GetEncodings();
15271 wxPyEndAllowThreads(__tstate
);
15272 if (PyErr_Occurred()) SWIG_fail
;
15274 resultobj
= result
;
15281 SWIGINTERN PyObject
*_wrap_FontEnumerator_GetFacenames(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15282 PyObject
*resultobj
= 0;
15283 PyObject
*result
= 0 ;
15285 if (!SWIG_Python_UnpackTuple(args
,"FontEnumerator_GetFacenames",0,0,0)) SWIG_fail
;
15287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15288 result
= (PyObject
*)wxPyFontEnumerator_GetFacenames();
15289 wxPyEndAllowThreads(__tstate
);
15290 if (PyErr_Occurred()) SWIG_fail
;
15292 resultobj
= result
;
15299 SWIGINTERN PyObject
*_wrap_FontEnumerator_IsValidFacename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15300 PyObject
*resultobj
= 0;
15301 wxString
*arg1
= 0 ;
15303 bool temp1
= false ;
15304 PyObject
* obj0
= 0 ;
15305 char * kwnames
[] = {
15306 (char *) "str", NULL
15309 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontEnumerator_IsValidFacename",kwnames
,&obj0
)) SWIG_fail
;
15311 arg1
= wxString_in_helper(obj0
);
15312 if (arg1
== NULL
) SWIG_fail
;
15316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15317 result
= (bool)wxPyFontEnumerator::IsValidFacename((wxString
const &)*arg1
);
15318 wxPyEndAllowThreads(__tstate
);
15319 if (PyErr_Occurred()) SWIG_fail
;
15322 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15338 SWIGINTERN PyObject
*FontEnumerator_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15340 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15341 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyFontEnumerator
, SWIG_NewClientData(obj
));
15342 return SWIG_Py_Void();
15345 SWIGINTERN PyObject
*FontEnumerator_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15346 return SWIG_Python_InitShadowInstance(args
);
15349 SWIGINTERN PyObject
*_wrap_LanguageInfo_Language_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15350 PyObject
*resultobj
= 0;
15351 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15357 PyObject
*swig_obj
[2] ;
15359 if (!SWIG_Python_UnpackTuple(args
,"LanguageInfo_Language_set",2,2,swig_obj
)) SWIG_fail
;
15360 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15361 if (!SWIG_IsOK(res1
)) {
15362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_Language_set" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15364 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15365 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
15366 if (!SWIG_IsOK(ecode2
)) {
15367 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "LanguageInfo_Language_set" "', expected argument " "2"" of type '" "int""'");
15369 arg2
= static_cast< int >(val2
);
15370 if (arg1
) (arg1
)->Language
= arg2
;
15372 resultobj
= SWIG_Py_Void();
15379 SWIGINTERN PyObject
*_wrap_LanguageInfo_Language_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15380 PyObject
*resultobj
= 0;
15381 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15385 PyObject
*swig_obj
[1] ;
15387 if (!args
) SWIG_fail
;
15388 swig_obj
[0] = args
;
15389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15390 if (!SWIG_IsOK(res1
)) {
15391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_Language_get" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15393 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15394 result
= (int) ((arg1
)->Language
);
15395 resultobj
= SWIG_From_int(static_cast< int >(result
));
15402 SWIGINTERN PyObject
*_wrap_LanguageInfo_CanonicalName_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15403 PyObject
*resultobj
= 0;
15404 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15405 wxString
*arg2
= (wxString
*) 0 ;
15408 bool temp2
= false ;
15409 PyObject
*swig_obj
[2] ;
15411 if (!SWIG_Python_UnpackTuple(args
,"LanguageInfo_CanonicalName_set",2,2,swig_obj
)) SWIG_fail
;
15412 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15413 if (!SWIG_IsOK(res1
)) {
15414 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_CanonicalName_set" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15416 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15418 arg2
= wxString_in_helper(swig_obj
[1]);
15419 if (arg2
== NULL
) SWIG_fail
;
15422 if (arg1
) (arg1
)->CanonicalName
= *arg2
;
15424 resultobj
= SWIG_Py_Void();
15439 SWIGINTERN PyObject
*_wrap_LanguageInfo_CanonicalName_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15440 PyObject
*resultobj
= 0;
15441 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15442 wxString
*result
= 0 ;
15445 PyObject
*swig_obj
[1] ;
15447 if (!args
) SWIG_fail
;
15448 swig_obj
[0] = args
;
15449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15450 if (!SWIG_IsOK(res1
)) {
15451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_CanonicalName_get" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15453 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15454 result
= (wxString
*)& ((arg1
)->CanonicalName
);
15457 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
15459 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
15468 SWIGINTERN PyObject
*_wrap_LanguageInfo_Description_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15469 PyObject
*resultobj
= 0;
15470 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15471 wxString
*arg2
= (wxString
*) 0 ;
15474 bool temp2
= false ;
15475 PyObject
*swig_obj
[2] ;
15477 if (!SWIG_Python_UnpackTuple(args
,"LanguageInfo_Description_set",2,2,swig_obj
)) SWIG_fail
;
15478 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15479 if (!SWIG_IsOK(res1
)) {
15480 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_Description_set" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15482 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15484 arg2
= wxString_in_helper(swig_obj
[1]);
15485 if (arg2
== NULL
) SWIG_fail
;
15488 if (arg1
) (arg1
)->Description
= *arg2
;
15490 resultobj
= SWIG_Py_Void();
15505 SWIGINTERN PyObject
*_wrap_LanguageInfo_Description_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15506 PyObject
*resultobj
= 0;
15507 wxLanguageInfo
*arg1
= (wxLanguageInfo
*) 0 ;
15508 wxString
*result
= 0 ;
15511 PyObject
*swig_obj
[1] ;
15513 if (!args
) SWIG_fail
;
15514 swig_obj
[0] = args
;
15515 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
15516 if (!SWIG_IsOK(res1
)) {
15517 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LanguageInfo_Description_get" "', expected argument " "1"" of type '" "wxLanguageInfo *""'");
15519 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
15520 result
= (wxString
*)& ((arg1
)->Description
);
15523 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
15525 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
15534 SWIGINTERN PyObject
*LanguageInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15536 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15537 SWIG_TypeNewClientData(SWIGTYPE_p_wxLanguageInfo
, SWIG_NewClientData(obj
));
15538 return SWIG_Py_Void();
15541 SWIGINTERN PyObject
*_wrap_new_Locale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15542 PyObject
*resultobj
= 0;
15543 int arg1
= (int) -1 ;
15544 int arg2
= (int) wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
;
15545 wxLocale
*result
= 0 ;
15550 PyObject
* obj0
= 0 ;
15551 PyObject
* obj1
= 0 ;
15552 char * kwnames
[] = {
15553 (char *) "language",(char *) "flags", NULL
15556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_Locale",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15558 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
15559 if (!SWIG_IsOK(ecode1
)) {
15560 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_Locale" "', expected argument " "1"" of type '" "int""'");
15562 arg1
= static_cast< int >(val1
);
15565 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15566 if (!SWIG_IsOK(ecode2
)) {
15567 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Locale" "', expected argument " "2"" of type '" "int""'");
15569 arg2
= static_cast< int >(val2
);
15572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15573 result
= (wxLocale
*)new_wxLocale(arg1
,arg2
);
15574 wxPyEndAllowThreads(__tstate
);
15575 if (PyErr_Occurred()) SWIG_fail
;
15577 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLocale
, SWIG_POINTER_NEW
| 0 );
15584 SWIGINTERN PyObject
*_wrap_delete_Locale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15585 PyObject
*resultobj
= 0;
15586 wxLocale
*arg1
= (wxLocale
*) 0 ;
15589 PyObject
*swig_obj
[1] ;
15591 if (!args
) SWIG_fail
;
15592 swig_obj
[0] = args
;
15593 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, SWIG_POINTER_DISOWN
| 0 );
15594 if (!SWIG_IsOK(res1
)) {
15595 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Locale" "', expected argument " "1"" of type '" "wxLocale *""'");
15597 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15602 wxPyEndAllowThreads(__tstate
);
15603 if (PyErr_Occurred()) SWIG_fail
;
15605 resultobj
= SWIG_Py_Void();
15612 SWIGINTERN PyObject
*_wrap_Locale_Init1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15613 PyObject
*resultobj
= 0;
15614 wxLocale
*arg1
= (wxLocale
*) 0 ;
15615 wxString
*arg2
= 0 ;
15616 wxString
const &arg3_defvalue
= wxPyEmptyString
;
15617 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
15618 wxString
const &arg4_defvalue
= wxPyEmptyString
;
15619 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
15620 bool arg5
= (bool) true ;
15621 bool arg6
= (bool) false ;
15625 bool temp2
= false ;
15626 bool temp3
= false ;
15627 bool temp4
= false ;
15632 PyObject
* obj0
= 0 ;
15633 PyObject
* obj1
= 0 ;
15634 PyObject
* obj2
= 0 ;
15635 PyObject
* obj3
= 0 ;
15636 PyObject
* obj4
= 0 ;
15637 PyObject
* obj5
= 0 ;
15638 char * kwnames
[] = {
15639 (char *) "self",(char *) "szName",(char *) "szShort",(char *) "szLocale",(char *) "bLoadDefault",(char *) "bConvertEncoding", NULL
15642 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:Locale_Init1",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15643 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15644 if (!SWIG_IsOK(res1
)) {
15645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_Init1" "', expected argument " "1"" of type '" "wxLocale *""'");
15647 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15649 arg2
= wxString_in_helper(obj1
);
15650 if (arg2
== NULL
) SWIG_fail
;
15655 arg3
= wxString_in_helper(obj2
);
15656 if (arg3
== NULL
) SWIG_fail
;
15662 arg4
= wxString_in_helper(obj3
);
15663 if (arg4
== NULL
) SWIG_fail
;
15668 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
15669 if (!SWIG_IsOK(ecode5
)) {
15670 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "Locale_Init1" "', expected argument " "5"" of type '" "bool""'");
15672 arg5
= static_cast< bool >(val5
);
15675 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
15676 if (!SWIG_IsOK(ecode6
)) {
15677 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "Locale_Init1" "', expected argument " "6"" of type '" "bool""'");
15679 arg6
= static_cast< bool >(val6
);
15682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15683 result
= (bool)wxLocale_Init1(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,arg6
);
15684 wxPyEndAllowThreads(__tstate
);
15685 if (PyErr_Occurred()) SWIG_fail
;
15688 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15720 SWIGINTERN PyObject
*_wrap_Locale_Init2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15721 PyObject
*resultobj
= 0;
15722 wxLocale
*arg1
= (wxLocale
*) 0 ;
15723 int arg2
= (int) wxLANGUAGE_DEFAULT
;
15724 int arg3
= (int) wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
;
15732 PyObject
* obj0
= 0 ;
15733 PyObject
* obj1
= 0 ;
15734 PyObject
* obj2
= 0 ;
15735 char * kwnames
[] = {
15736 (char *) "self",(char *) "language",(char *) "flags", NULL
15739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:Locale_Init2",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15741 if (!SWIG_IsOK(res1
)) {
15742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_Init2" "', expected argument " "1"" of type '" "wxLocale *""'");
15744 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15746 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15747 if (!SWIG_IsOK(ecode2
)) {
15748 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Locale_Init2" "', expected argument " "2"" of type '" "int""'");
15750 arg2
= static_cast< int >(val2
);
15753 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15754 if (!SWIG_IsOK(ecode3
)) {
15755 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Locale_Init2" "', expected argument " "3"" of type '" "int""'");
15757 arg3
= static_cast< int >(val3
);
15760 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15761 result
= (bool)wxLocale_Init2(arg1
,arg2
,arg3
);
15762 wxPyEndAllowThreads(__tstate
);
15763 if (PyErr_Occurred()) SWIG_fail
;
15766 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15774 SWIGINTERN PyObject
*_wrap_Locale_GetSystemLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15775 PyObject
*resultobj
= 0;
15778 if (!SWIG_Python_UnpackTuple(args
,"Locale_GetSystemLanguage",0,0,0)) SWIG_fail
;
15780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15781 result
= (int)wxLocale::GetSystemLanguage();
15782 wxPyEndAllowThreads(__tstate
);
15783 if (PyErr_Occurred()) SWIG_fail
;
15785 resultobj
= SWIG_From_int(static_cast< int >(result
));
15792 SWIGINTERN PyObject
*_wrap_Locale_GetSystemEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15793 PyObject
*resultobj
= 0;
15794 wxFontEncoding result
;
15796 if (!SWIG_Python_UnpackTuple(args
,"Locale_GetSystemEncoding",0,0,0)) SWIG_fail
;
15798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15799 result
= (wxFontEncoding
)wxLocale::GetSystemEncoding();
15800 wxPyEndAllowThreads(__tstate
);
15801 if (PyErr_Occurred()) SWIG_fail
;
15803 resultobj
= SWIG_From_int(static_cast< int >(result
));
15810 SWIGINTERN PyObject
*_wrap_Locale_GetSystemEncodingName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15811 PyObject
*resultobj
= 0;
15814 if (!SWIG_Python_UnpackTuple(args
,"Locale_GetSystemEncodingName",0,0,0)) SWIG_fail
;
15816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15817 result
= wxLocale::GetSystemEncodingName();
15818 wxPyEndAllowThreads(__tstate
);
15819 if (PyErr_Occurred()) SWIG_fail
;
15823 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
15825 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
15834 SWIGINTERN PyObject
*_wrap_Locale_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15835 PyObject
*resultobj
= 0;
15836 wxLocale
*arg1
= (wxLocale
*) 0 ;
15840 PyObject
*swig_obj
[1] ;
15842 if (!args
) SWIG_fail
;
15843 swig_obj
[0] = args
;
15844 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15845 if (!SWIG_IsOK(res1
)) {
15846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_IsOk" "', expected argument " "1"" of type '" "wxLocale const *""'");
15848 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15851 result
= (bool)((wxLocale
const *)arg1
)->IsOk();
15852 wxPyEndAllowThreads(__tstate
);
15853 if (PyErr_Occurred()) SWIG_fail
;
15856 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15864 SWIGINTERN PyObject
*_wrap_Locale_GetLocale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15865 PyObject
*resultobj
= 0;
15866 wxLocale
*arg1
= (wxLocale
*) 0 ;
15870 PyObject
*swig_obj
[1] ;
15872 if (!args
) SWIG_fail
;
15873 swig_obj
[0] = args
;
15874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15875 if (!SWIG_IsOK(res1
)) {
15876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetLocale" "', expected argument " "1"" of type '" "wxLocale const *""'");
15878 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15881 result
= ((wxLocale
const *)arg1
)->GetLocale();
15882 wxPyEndAllowThreads(__tstate
);
15883 if (PyErr_Occurred()) SWIG_fail
;
15887 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
15889 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
15898 SWIGINTERN PyObject
*_wrap_Locale_GetLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15899 PyObject
*resultobj
= 0;
15900 wxLocale
*arg1
= (wxLocale
*) 0 ;
15904 PyObject
*swig_obj
[1] ;
15906 if (!args
) SWIG_fail
;
15907 swig_obj
[0] = args
;
15908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15909 if (!SWIG_IsOK(res1
)) {
15910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetLanguage" "', expected argument " "1"" of type '" "wxLocale const *""'");
15912 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15915 result
= (int)((wxLocale
const *)arg1
)->GetLanguage();
15916 wxPyEndAllowThreads(__tstate
);
15917 if (PyErr_Occurred()) SWIG_fail
;
15919 resultobj
= SWIG_From_int(static_cast< int >(result
));
15926 SWIGINTERN PyObject
*_wrap_Locale_GetSysName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15927 PyObject
*resultobj
= 0;
15928 wxLocale
*arg1
= (wxLocale
*) 0 ;
15932 PyObject
*swig_obj
[1] ;
15934 if (!args
) SWIG_fail
;
15935 swig_obj
[0] = args
;
15936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15937 if (!SWIG_IsOK(res1
)) {
15938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetSysName" "', expected argument " "1"" of type '" "wxLocale const *""'");
15940 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15943 result
= ((wxLocale
const *)arg1
)->GetSysName();
15944 wxPyEndAllowThreads(__tstate
);
15945 if (PyErr_Occurred()) SWIG_fail
;
15949 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
15951 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
15960 SWIGINTERN PyObject
*_wrap_Locale_GetCanonicalName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15961 PyObject
*resultobj
= 0;
15962 wxLocale
*arg1
= (wxLocale
*) 0 ;
15966 PyObject
*swig_obj
[1] ;
15968 if (!args
) SWIG_fail
;
15969 swig_obj
[0] = args
;
15970 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
15971 if (!SWIG_IsOK(res1
)) {
15972 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetCanonicalName" "', expected argument " "1"" of type '" "wxLocale const *""'");
15974 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
15976 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15977 result
= ((wxLocale
const *)arg1
)->GetCanonicalName();
15978 wxPyEndAllowThreads(__tstate
);
15979 if (PyErr_Occurred()) SWIG_fail
;
15983 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
15985 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
15994 SWIGINTERN PyObject
*_wrap_Locale_AddCatalogLookupPathPrefix(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15995 PyObject
*resultobj
= 0;
15996 wxString
*arg1
= 0 ;
15997 bool temp1
= false ;
15998 PyObject
* obj0
= 0 ;
15999 char * kwnames
[] = {
16000 (char *) "prefix", NULL
16003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_AddCatalogLookupPathPrefix",kwnames
,&obj0
)) SWIG_fail
;
16005 arg1
= wxString_in_helper(obj0
);
16006 if (arg1
== NULL
) SWIG_fail
;
16010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16011 wxLocale::AddCatalogLookupPathPrefix((wxString
const &)*arg1
);
16012 wxPyEndAllowThreads(__tstate
);
16013 if (PyErr_Occurred()) SWIG_fail
;
16015 resultobj
= SWIG_Py_Void();
16030 SWIGINTERN PyObject
*_wrap_Locale_AddCatalog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16031 PyObject
*resultobj
= 0;
16032 wxLocale
*arg1
= (wxLocale
*) 0 ;
16033 wxString
*arg2
= 0 ;
16037 bool temp2
= false ;
16038 PyObject
* obj0
= 0 ;
16039 PyObject
* obj1
= 0 ;
16040 char * kwnames
[] = {
16041 (char *) "self",(char *) "szDomain", NULL
16044 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Locale_AddCatalog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16045 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
16046 if (!SWIG_IsOK(res1
)) {
16047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_AddCatalog" "', expected argument " "1"" of type '" "wxLocale *""'");
16049 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
16051 arg2
= wxString_in_helper(obj1
);
16052 if (arg2
== NULL
) SWIG_fail
;
16056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16057 result
= (bool)(arg1
)->AddCatalog((wxString
const &)*arg2
);
16058 wxPyEndAllowThreads(__tstate
);
16059 if (PyErr_Occurred()) SWIG_fail
;
16062 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16078 SWIGINTERN PyObject
*_wrap_Locale_IsAvailable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16079 PyObject
*resultobj
= 0;
16084 PyObject
* obj0
= 0 ;
16085 char * kwnames
[] = {
16086 (char *) "lang", NULL
16089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_IsAvailable",kwnames
,&obj0
)) SWIG_fail
;
16090 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
16091 if (!SWIG_IsOK(ecode1
)) {
16092 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Locale_IsAvailable" "', expected argument " "1"" of type '" "int""'");
16094 arg1
= static_cast< int >(val1
);
16096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16097 result
= (bool)wxLocale::IsAvailable(arg1
);
16098 wxPyEndAllowThreads(__tstate
);
16099 if (PyErr_Occurred()) SWIG_fail
;
16102 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16110 SWIGINTERN PyObject
*_wrap_Locale_IsLoaded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16111 PyObject
*resultobj
= 0;
16112 wxLocale
*arg1
= (wxLocale
*) 0 ;
16113 wxString
*arg2
= 0 ;
16117 bool temp2
= false ;
16118 PyObject
* obj0
= 0 ;
16119 PyObject
* obj1
= 0 ;
16120 char * kwnames
[] = {
16121 (char *) "self",(char *) "szDomain", NULL
16124 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Locale_IsLoaded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16125 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
16126 if (!SWIG_IsOK(res1
)) {
16127 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_IsLoaded" "', expected argument " "1"" of type '" "wxLocale const *""'");
16129 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
16131 arg2
= wxString_in_helper(obj1
);
16132 if (arg2
== NULL
) SWIG_fail
;
16136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16137 result
= (bool)((wxLocale
const *)arg1
)->IsLoaded((wxString
const &)*arg2
);
16138 wxPyEndAllowThreads(__tstate
);
16139 if (PyErr_Occurred()) SWIG_fail
;
16142 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16158 SWIGINTERN PyObject
*_wrap_Locale_GetLanguageInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16159 PyObject
*resultobj
= 0;
16161 wxLanguageInfo
*result
= 0 ;
16164 PyObject
* obj0
= 0 ;
16165 char * kwnames
[] = {
16166 (char *) "lang", NULL
16169 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_GetLanguageInfo",kwnames
,&obj0
)) SWIG_fail
;
16170 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
16171 if (!SWIG_IsOK(ecode1
)) {
16172 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Locale_GetLanguageInfo" "', expected argument " "1"" of type '" "int""'");
16174 arg1
= static_cast< int >(val1
);
16176 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16177 result
= (wxLanguageInfo
*)wxLocale::GetLanguageInfo(arg1
);
16178 wxPyEndAllowThreads(__tstate
);
16179 if (PyErr_Occurred()) SWIG_fail
;
16181 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
16188 SWIGINTERN PyObject
*_wrap_Locale_GetLanguageName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16189 PyObject
*resultobj
= 0;
16194 PyObject
* obj0
= 0 ;
16195 char * kwnames
[] = {
16196 (char *) "lang", NULL
16199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_GetLanguageName",kwnames
,&obj0
)) SWIG_fail
;
16200 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
16201 if (!SWIG_IsOK(ecode1
)) {
16202 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Locale_GetLanguageName" "', expected argument " "1"" of type '" "int""'");
16204 arg1
= static_cast< int >(val1
);
16206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16207 result
= wxLocale::GetLanguageName(arg1
);
16208 wxPyEndAllowThreads(__tstate
);
16209 if (PyErr_Occurred()) SWIG_fail
;
16213 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16215 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16224 SWIGINTERN PyObject
*_wrap_Locale_FindLanguageInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16225 PyObject
*resultobj
= 0;
16226 wxString
*arg1
= 0 ;
16227 wxLanguageInfo
*result
= 0 ;
16228 bool temp1
= false ;
16229 PyObject
* obj0
= 0 ;
16230 char * kwnames
[] = {
16231 (char *) "locale", NULL
16234 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_FindLanguageInfo",kwnames
,&obj0
)) SWIG_fail
;
16236 arg1
= wxString_in_helper(obj0
);
16237 if (arg1
== NULL
) SWIG_fail
;
16241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16242 result
= (wxLanguageInfo
*)wxLocale::FindLanguageInfo((wxString
const &)*arg1
);
16243 wxPyEndAllowThreads(__tstate
);
16244 if (PyErr_Occurred()) SWIG_fail
;
16246 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLanguageInfo
, 0 | 0 );
16261 SWIGINTERN PyObject
*_wrap_Locale_AddLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16262 PyObject
*resultobj
= 0;
16263 wxLanguageInfo
*arg1
= 0 ;
16266 PyObject
* obj0
= 0 ;
16267 char * kwnames
[] = {
16268 (char *) "info", NULL
16271 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Locale_AddLanguage",kwnames
,&obj0
)) SWIG_fail
;
16272 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxLanguageInfo
, 0 | 0);
16273 if (!SWIG_IsOK(res1
)) {
16274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_AddLanguage" "', expected argument " "1"" of type '" "wxLanguageInfo const &""'");
16277 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Locale_AddLanguage" "', expected argument " "1"" of type '" "wxLanguageInfo const &""'");
16279 arg1
= reinterpret_cast< wxLanguageInfo
* >(argp1
);
16281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16282 wxLocale::AddLanguage((wxLanguageInfo
const &)*arg1
);
16283 wxPyEndAllowThreads(__tstate
);
16284 if (PyErr_Occurred()) SWIG_fail
;
16286 resultobj
= SWIG_Py_Void();
16293 SWIGINTERN PyObject
*_wrap_Locale_GetString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16294 PyObject
*resultobj
= 0;
16295 wxLocale
*arg1
= (wxLocale
*) 0 ;
16296 wxString
*arg2
= 0 ;
16297 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16298 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16302 bool temp2
= false ;
16303 bool temp3
= false ;
16304 PyObject
* obj0
= 0 ;
16305 PyObject
* obj1
= 0 ;
16306 PyObject
* obj2
= 0 ;
16307 char * kwnames
[] = {
16308 (char *) "self",(char *) "szOrigString",(char *) "szDomain", NULL
16311 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Locale_GetString",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16312 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
16313 if (!SWIG_IsOK(res1
)) {
16314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetString" "', expected argument " "1"" of type '" "wxLocale const *""'");
16316 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
16318 arg2
= wxString_in_helper(obj1
);
16319 if (arg2
== NULL
) SWIG_fail
;
16324 arg3
= wxString_in_helper(obj2
);
16325 if (arg3
== NULL
) SWIG_fail
;
16330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16331 result
= ((wxLocale
const *)arg1
)->GetString((wxString
const &)*arg2
,(wxString
const &)*arg3
);
16332 wxPyEndAllowThreads(__tstate
);
16333 if (PyErr_Occurred()) SWIG_fail
;
16337 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16339 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16364 SWIGINTERN PyObject
*_wrap_Locale_GetName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16365 PyObject
*resultobj
= 0;
16366 wxLocale
*arg1
= (wxLocale
*) 0 ;
16367 wxString
*result
= 0 ;
16370 PyObject
*swig_obj
[1] ;
16372 if (!args
) SWIG_fail
;
16373 swig_obj
[0] = args
;
16374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLocale
, 0 | 0 );
16375 if (!SWIG_IsOK(res1
)) {
16376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Locale_GetName" "', expected argument " "1"" of type '" "wxLocale const *""'");
16378 arg1
= reinterpret_cast< wxLocale
* >(argp1
);
16380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16382 wxString
const &_result_ref
= ((wxLocale
const *)arg1
)->GetName();
16383 result
= (wxString
*) &_result_ref
;
16385 wxPyEndAllowThreads(__tstate
);
16386 if (PyErr_Occurred()) SWIG_fail
;
16390 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
16392 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
16401 SWIGINTERN PyObject
*Locale_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16403 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16404 SWIG_TypeNewClientData(SWIGTYPE_p_wxLocale
, SWIG_NewClientData(obj
));
16405 return SWIG_Py_Void();
16408 SWIGINTERN PyObject
*Locale_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16409 return SWIG_Python_InitShadowInstance(args
);
16412 SWIGINTERN PyObject
*_wrap_new_PyLocale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16413 PyObject
*resultobj
= 0;
16414 int arg1
= (int) -1 ;
16415 int arg2
= (int) wxLOCALE_LOAD_DEFAULT
|wxLOCALE_CONV_ENCODING
;
16416 wxPyLocale
*result
= 0 ;
16421 PyObject
* obj0
= 0 ;
16422 PyObject
* obj1
= 0 ;
16423 char * kwnames
[] = {
16424 (char *) "language",(char *) "flags", NULL
16427 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_PyLocale",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16429 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
16430 if (!SWIG_IsOK(ecode1
)) {
16431 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_PyLocale" "', expected argument " "1"" of type '" "int""'");
16433 arg1
= static_cast< int >(val1
);
16436 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16437 if (!SWIG_IsOK(ecode2
)) {
16438 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyLocale" "', expected argument " "2"" of type '" "int""'");
16440 arg2
= static_cast< int >(val2
);
16443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16444 result
= (wxPyLocale
*)new_wxPyLocale(arg1
,arg2
);
16445 wxPyEndAllowThreads(__tstate
);
16446 if (PyErr_Occurred()) SWIG_fail
;
16448 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyLocale
, SWIG_POINTER_NEW
| 0 );
16455 SWIGINTERN PyObject
*_wrap_delete_PyLocale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16456 PyObject
*resultobj
= 0;
16457 wxPyLocale
*arg1
= (wxPyLocale
*) 0 ;
16460 PyObject
*swig_obj
[1] ;
16462 if (!args
) SWIG_fail
;
16463 swig_obj
[0] = args
;
16464 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyLocale
, SWIG_POINTER_DISOWN
| 0 );
16465 if (!SWIG_IsOK(res1
)) {
16466 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PyLocale" "', expected argument " "1"" of type '" "wxPyLocale *""'");
16468 arg1
= reinterpret_cast< wxPyLocale
* >(argp1
);
16470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16473 wxPyEndAllowThreads(__tstate
);
16474 if (PyErr_Occurred()) SWIG_fail
;
16476 resultobj
= SWIG_Py_Void();
16483 SWIGINTERN PyObject
*_wrap_PyLocale__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16484 PyObject
*resultobj
= 0;
16485 wxPyLocale
*arg1
= (wxPyLocale
*) 0 ;
16486 PyObject
*arg2
= (PyObject
*) 0 ;
16487 PyObject
*arg3
= (PyObject
*) 0 ;
16490 PyObject
* obj0
= 0 ;
16491 PyObject
* obj1
= 0 ;
16492 PyObject
* obj2
= 0 ;
16493 char * kwnames
[] = {
16494 (char *) "self",(char *) "self",(char *) "_class", NULL
16497 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyLocale__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16498 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyLocale
, 0 | 0 );
16499 if (!SWIG_IsOK(res1
)) {
16500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyLocale__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyLocale *""'");
16502 arg1
= reinterpret_cast< wxPyLocale
* >(argp1
);
16506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16507 (arg1
)->_setCallbackInfo(arg2
,arg3
);
16508 wxPyEndAllowThreads(__tstate
);
16509 if (PyErr_Occurred()) SWIG_fail
;
16511 resultobj
= SWIG_Py_Void();
16518 SWIGINTERN PyObject
*_wrap_PyLocale_GetSingularString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16519 PyObject
*resultobj
= 0;
16520 wxPyLocale
*arg1
= (wxPyLocale
*) 0 ;
16521 wxChar
*arg2
= (wxChar
*) 0 ;
16522 wxChar
*arg3
= (wxChar
*) NULL
;
16523 wxChar
*result
= 0 ;
16530 PyObject
* obj0
= 0 ;
16531 PyObject
* obj1
= 0 ;
16532 PyObject
* obj2
= 0 ;
16533 char * kwnames
[] = {
16534 (char *) "self",(char *) "szOrigString",(char *) "szDomain", NULL
16537 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:PyLocale_GetSingularString",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16538 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyLocale
, 0 | 0 );
16539 if (!SWIG_IsOK(res1
)) {
16540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyLocale_GetSingularString" "', expected argument " "1"" of type '" "wxPyLocale const *""'");
16542 arg1
= reinterpret_cast< wxPyLocale
* >(argp1
);
16543 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxChar
, 0 | 0 );
16544 if (!SWIG_IsOK(res2
)) {
16545 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyLocale_GetSingularString" "', expected argument " "2"" of type '" "wxChar const *""'");
16547 arg2
= reinterpret_cast< wxChar
* >(argp2
);
16549 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxChar
, 0 | 0 );
16550 if (!SWIG_IsOK(res3
)) {
16551 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PyLocale_GetSingularString" "', expected argument " "3"" of type '" "wxChar const *""'");
16553 arg3
= reinterpret_cast< wxChar
* >(argp3
);
16556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16557 result
= (wxChar
*)((wxPyLocale
const *)arg1
)->GetSingularString((wxChar
const *)arg2
,(wxChar
const *)arg3
);
16558 wxPyEndAllowThreads(__tstate
);
16559 if (PyErr_Occurred()) SWIG_fail
;
16561 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxChar
, 0 | 0 );
16568 SWIGINTERN PyObject
*_wrap_PyLocale_GetPluralString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16569 PyObject
*resultobj
= 0;
16570 wxPyLocale
*arg1
= (wxPyLocale
*) 0 ;
16571 wxChar
*arg2
= (wxChar
*) 0 ;
16572 wxChar
*arg3
= (wxChar
*) 0 ;
16574 wxChar
*arg5
= (wxChar
*) NULL
;
16575 wxChar
*result
= 0 ;
16586 PyObject
* obj0
= 0 ;
16587 PyObject
* obj1
= 0 ;
16588 PyObject
* obj2
= 0 ;
16589 PyObject
* obj3
= 0 ;
16590 PyObject
* obj4
= 0 ;
16591 char * kwnames
[] = {
16592 (char *) "self",(char *) "szOrigString",(char *) "szOrigString2",(char *) "n",(char *) "szDomain", NULL
16595 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:PyLocale_GetPluralString",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
16596 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyLocale
, 0 | 0 );
16597 if (!SWIG_IsOK(res1
)) {
16598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyLocale_GetPluralString" "', expected argument " "1"" of type '" "wxPyLocale const *""'");
16600 arg1
= reinterpret_cast< wxPyLocale
* >(argp1
);
16601 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxChar
, 0 | 0 );
16602 if (!SWIG_IsOK(res2
)) {
16603 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyLocale_GetPluralString" "', expected argument " "2"" of type '" "wxChar const *""'");
16605 arg2
= reinterpret_cast< wxChar
* >(argp2
);
16606 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxChar
, 0 | 0 );
16607 if (!SWIG_IsOK(res3
)) {
16608 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PyLocale_GetPluralString" "', expected argument " "3"" of type '" "wxChar const *""'");
16610 arg3
= reinterpret_cast< wxChar
* >(argp3
);
16611 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
16612 if (!SWIG_IsOK(ecode4
)) {
16613 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyLocale_GetPluralString" "', expected argument " "4"" of type '" "size_t""'");
16615 arg4
= static_cast< size_t >(val4
);
16617 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxChar
, 0 | 0 );
16618 if (!SWIG_IsOK(res5
)) {
16619 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "PyLocale_GetPluralString" "', expected argument " "5"" of type '" "wxChar const *""'");
16621 arg5
= reinterpret_cast< wxChar
* >(argp5
);
16624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16625 result
= (wxChar
*)((wxPyLocale
const *)arg1
)->GetPluralString((wxChar
const *)arg2
,(wxChar
const *)arg3
,arg4
,(wxChar
const *)arg5
);
16626 wxPyEndAllowThreads(__tstate
);
16627 if (PyErr_Occurred()) SWIG_fail
;
16629 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxChar
, 0 | 0 );
16636 SWIGINTERN PyObject
*PyLocale_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16638 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16639 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyLocale
, SWIG_NewClientData(obj
));
16640 return SWIG_Py_Void();
16643 SWIGINTERN PyObject
*PyLocale_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16644 return SWIG_Python_InitShadowInstance(args
);
16647 SWIGINTERN PyObject
*_wrap_GetLocale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16648 PyObject
*resultobj
= 0;
16649 wxLocale
*result
= 0 ;
16651 if (!SWIG_Python_UnpackTuple(args
,"GetLocale",0,0,0)) SWIG_fail
;
16653 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16654 result
= (wxLocale
*)wxGetLocale();
16655 wxPyEndAllowThreads(__tstate
);
16656 if (PyErr_Occurred()) SWIG_fail
;
16658 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLocale
, 0 | 0 );
16665 SWIGINTERN PyObject
*_wrap_GetTranslation__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
16666 PyObject
*resultobj
= 0;
16667 wxString
*arg1
= 0 ;
16669 bool temp1
= false ;
16671 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
16673 arg1
= wxString_in_helper(swig_obj
[0]);
16674 if (arg1
== NULL
) SWIG_fail
;
16678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16679 result
= wxGetTranslation((wxString
const &)*arg1
);
16680 wxPyEndAllowThreads(__tstate
);
16681 if (PyErr_Occurred()) SWIG_fail
;
16685 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16687 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16704 SWIGINTERN PyObject
*_wrap_GetTranslation__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
16705 PyObject
*resultobj
= 0;
16706 wxString
*arg1
= 0 ;
16707 wxString
*arg2
= 0 ;
16709 bool temp1
= false ;
16710 bool temp2
= false ;
16712 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
16714 arg1
= wxString_in_helper(swig_obj
[0]);
16715 if (arg1
== NULL
) SWIG_fail
;
16719 arg2
= wxString_in_helper(swig_obj
[1]);
16720 if (arg2
== NULL
) SWIG_fail
;
16724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16725 result
= wxGetTranslation((wxString
const &)*arg1
,(wxString
const &)*arg2
);
16726 wxPyEndAllowThreads(__tstate
);
16727 if (PyErr_Occurred()) SWIG_fail
;
16731 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16733 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16758 SWIGINTERN PyObject
*_wrap_GetTranslation__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
16759 PyObject
*resultobj
= 0;
16760 wxString
*arg1
= 0 ;
16761 wxString
*arg2
= 0 ;
16764 bool temp1
= false ;
16765 bool temp2
= false ;
16769 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
16771 arg1
= wxString_in_helper(swig_obj
[0]);
16772 if (arg1
== NULL
) SWIG_fail
;
16776 arg2
= wxString_in_helper(swig_obj
[1]);
16777 if (arg2
== NULL
) SWIG_fail
;
16780 ecode3
= SWIG_AsVal_size_t(swig_obj
[2], &val3
);
16781 if (!SWIG_IsOK(ecode3
)) {
16782 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GetTranslation" "', expected argument " "3"" of type '" "size_t""'");
16784 arg3
= static_cast< size_t >(val3
);
16786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16787 result
= wxGetTranslation((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
);
16788 wxPyEndAllowThreads(__tstate
);
16789 if (PyErr_Occurred()) SWIG_fail
;
16793 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16795 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16820 SWIGINTERN PyObject
*_wrap_GetTranslation__SWIG_3(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
16821 PyObject
*resultobj
= 0;
16822 wxString
*arg1
= 0 ;
16823 wxString
*arg2
= 0 ;
16825 wxString
*arg4
= 0 ;
16827 bool temp1
= false ;
16828 bool temp2
= false ;
16831 bool temp4
= false ;
16833 if ((nobjs
< 4) || (nobjs
> 4)) SWIG_fail
;
16835 arg1
= wxString_in_helper(swig_obj
[0]);
16836 if (arg1
== NULL
) SWIG_fail
;
16840 arg2
= wxString_in_helper(swig_obj
[1]);
16841 if (arg2
== NULL
) SWIG_fail
;
16844 ecode3
= SWIG_AsVal_size_t(swig_obj
[2], &val3
);
16845 if (!SWIG_IsOK(ecode3
)) {
16846 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GetTranslation" "', expected argument " "3"" of type '" "size_t""'");
16848 arg3
= static_cast< size_t >(val3
);
16850 arg4
= wxString_in_helper(swig_obj
[3]);
16851 if (arg4
== NULL
) SWIG_fail
;
16855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16856 result
= wxGetTranslation((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,(wxString
const &)*arg4
);
16857 wxPyEndAllowThreads(__tstate
);
16858 if (PyErr_Occurred()) SWIG_fail
;
16862 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16864 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16897 SWIGINTERN PyObject
*_wrap_GetTranslation(PyObject
*self
, PyObject
*args
) {
16901 if (!(argc
= SWIG_Python_UnpackTuple(args
,"GetTranslation",0,4,argv
))) SWIG_fail
;
16904 return _wrap_GetTranslation__SWIG_0(self
, argc
, argv
);
16907 return _wrap_GetTranslation__SWIG_1(self
, argc
, argv
);
16910 return _wrap_GetTranslation__SWIG_2(self
, argc
, argv
);
16913 return _wrap_GetTranslation__SWIG_3(self
, argc
, argv
);
16917 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'GetTranslation'");
16922 SWIGINTERN PyObject
*_wrap_new_EncodingConverter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16923 PyObject
*resultobj
= 0;
16924 wxEncodingConverter
*result
= 0 ;
16926 if (!SWIG_Python_UnpackTuple(args
,"new_EncodingConverter",0,0,0)) SWIG_fail
;
16928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16929 result
= (wxEncodingConverter
*)new wxEncodingConverter();
16930 wxPyEndAllowThreads(__tstate
);
16931 if (PyErr_Occurred()) SWIG_fail
;
16933 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEncodingConverter
, SWIG_POINTER_NEW
| 0 );
16940 SWIGINTERN PyObject
*_wrap_delete_EncodingConverter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16941 PyObject
*resultobj
= 0;
16942 wxEncodingConverter
*arg1
= (wxEncodingConverter
*) 0 ;
16945 PyObject
*swig_obj
[1] ;
16947 if (!args
) SWIG_fail
;
16948 swig_obj
[0] = args
;
16949 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEncodingConverter
, SWIG_POINTER_DISOWN
| 0 );
16950 if (!SWIG_IsOK(res1
)) {
16951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_EncodingConverter" "', expected argument " "1"" of type '" "wxEncodingConverter *""'");
16953 arg1
= reinterpret_cast< wxEncodingConverter
* >(argp1
);
16955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16958 wxPyEndAllowThreads(__tstate
);
16959 if (PyErr_Occurred()) SWIG_fail
;
16961 resultobj
= SWIG_Py_Void();
16968 SWIGINTERN PyObject
*_wrap_EncodingConverter_Init(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16969 PyObject
*resultobj
= 0;
16970 wxEncodingConverter
*arg1
= (wxEncodingConverter
*) 0 ;
16971 wxFontEncoding arg2
;
16972 wxFontEncoding arg3
;
16973 int arg4
= (int) wxCONVERT_STRICT
;
16983 PyObject
* obj0
= 0 ;
16984 PyObject
* obj1
= 0 ;
16985 PyObject
* obj2
= 0 ;
16986 PyObject
* obj3
= 0 ;
16987 char * kwnames
[] = {
16988 (char *) "self",(char *) "input_enc",(char *) "output_enc",(char *) "method", NULL
16991 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:EncodingConverter_Init",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
16992 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEncodingConverter
, 0 | 0 );
16993 if (!SWIG_IsOK(res1
)) {
16994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "EncodingConverter_Init" "', expected argument " "1"" of type '" "wxEncodingConverter *""'");
16996 arg1
= reinterpret_cast< wxEncodingConverter
* >(argp1
);
16997 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16998 if (!SWIG_IsOK(ecode2
)) {
16999 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "EncodingConverter_Init" "', expected argument " "2"" of type '" "wxFontEncoding""'");
17001 arg2
= static_cast< wxFontEncoding
>(val2
);
17002 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17003 if (!SWIG_IsOK(ecode3
)) {
17004 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "EncodingConverter_Init" "', expected argument " "3"" of type '" "wxFontEncoding""'");
17006 arg3
= static_cast< wxFontEncoding
>(val3
);
17008 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17009 if (!SWIG_IsOK(ecode4
)) {
17010 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "EncodingConverter_Init" "', expected argument " "4"" of type '" "int""'");
17012 arg4
= static_cast< int >(val4
);
17015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17016 result
= (bool)(arg1
)->Init(arg2
,arg3
,arg4
);
17017 wxPyEndAllowThreads(__tstate
);
17018 if (PyErr_Occurred()) SWIG_fail
;
17021 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17029 SWIGINTERN PyObject
*_wrap_EncodingConverter_Convert(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17030 PyObject
*resultobj
= 0;
17031 wxEncodingConverter
*arg1
= (wxEncodingConverter
*) 0 ;
17032 wxString
*arg2
= 0 ;
17036 bool temp2
= false ;
17037 PyObject
* obj0
= 0 ;
17038 PyObject
* obj1
= 0 ;
17039 char * kwnames
[] = {
17040 (char *) "self",(char *) "input", NULL
17043 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:EncodingConverter_Convert",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17044 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEncodingConverter
, 0 | 0 );
17045 if (!SWIG_IsOK(res1
)) {
17046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "EncodingConverter_Convert" "', expected argument " "1"" of type '" "wxEncodingConverter *""'");
17048 arg1
= reinterpret_cast< wxEncodingConverter
* >(argp1
);
17050 arg2
= wxString_in_helper(obj1
);
17051 if (arg2
== NULL
) SWIG_fail
;
17055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17056 result
= (arg1
)->Convert((wxString
const &)*arg2
);
17057 wxPyEndAllowThreads(__tstate
);
17058 if (PyErr_Occurred()) SWIG_fail
;
17062 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17064 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17081 SWIGINTERN PyObject
*_wrap_EncodingConverter_GetPlatformEquivalents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17082 PyObject
*resultobj
= 0;
17083 wxFontEncoding arg1
;
17084 int arg2
= (int) wxPLATFORM_CURRENT
;
17085 wxFontEncodingArray result
;
17090 PyObject
* obj0
= 0 ;
17091 PyObject
* obj1
= 0 ;
17092 char * kwnames
[] = {
17093 (char *) "enc",(char *) "platform", NULL
17096 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:EncodingConverter_GetPlatformEquivalents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17097 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
17098 if (!SWIG_IsOK(ecode1
)) {
17099 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "EncodingConverter_GetPlatformEquivalents" "', expected argument " "1"" of type '" "wxFontEncoding""'");
17101 arg1
= static_cast< wxFontEncoding
>(val1
);
17103 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17104 if (!SWIG_IsOK(ecode2
)) {
17105 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "EncodingConverter_GetPlatformEquivalents" "', expected argument " "2"" of type '" "int""'");
17107 arg2
= static_cast< int >(val2
);
17110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17111 result
= wxEncodingConverter::GetPlatformEquivalents(arg1
,arg2
);
17112 wxPyEndAllowThreads(__tstate
);
17113 if (PyErr_Occurred()) SWIG_fail
;
17116 resultobj
= PyList_New(0);
17117 for (size_t i
=0; i
< (&result
)->GetCount(); i
++) {
17118 PyObject
* number
= PyInt_FromLong((&result
)->Item(i
));
17119 PyList_Append(resultobj
, number
);
17129 SWIGINTERN PyObject
*_wrap_EncodingConverter_GetAllEquivalents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17130 PyObject
*resultobj
= 0;
17131 wxFontEncoding arg1
;
17132 wxFontEncodingArray result
;
17135 PyObject
* obj0
= 0 ;
17136 char * kwnames
[] = {
17137 (char *) "enc", NULL
17140 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:EncodingConverter_GetAllEquivalents",kwnames
,&obj0
)) SWIG_fail
;
17141 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
17142 if (!SWIG_IsOK(ecode1
)) {
17143 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "EncodingConverter_GetAllEquivalents" "', expected argument " "1"" of type '" "wxFontEncoding""'");
17145 arg1
= static_cast< wxFontEncoding
>(val1
);
17147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17148 result
= wxEncodingConverter::GetAllEquivalents(arg1
);
17149 wxPyEndAllowThreads(__tstate
);
17150 if (PyErr_Occurred()) SWIG_fail
;
17153 resultobj
= PyList_New(0);
17154 for (size_t i
=0; i
< (&result
)->GetCount(); i
++) {
17155 PyObject
* number
= PyInt_FromLong((&result
)->Item(i
));
17156 PyList_Append(resultobj
, number
);
17166 SWIGINTERN PyObject
*_wrap_EncodingConverter_CanConvert(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17167 PyObject
*resultobj
= 0;
17168 wxFontEncoding arg1
;
17169 wxFontEncoding arg2
;
17175 PyObject
* obj0
= 0 ;
17176 PyObject
* obj1
= 0 ;
17177 char * kwnames
[] = {
17178 (char *) "encIn",(char *) "encOut", NULL
17181 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:EncodingConverter_CanConvert",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17182 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
17183 if (!SWIG_IsOK(ecode1
)) {
17184 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "EncodingConverter_CanConvert" "', expected argument " "1"" of type '" "wxFontEncoding""'");
17186 arg1
= static_cast< wxFontEncoding
>(val1
);
17187 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17188 if (!SWIG_IsOK(ecode2
)) {
17189 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "EncodingConverter_CanConvert" "', expected argument " "2"" of type '" "wxFontEncoding""'");
17191 arg2
= static_cast< wxFontEncoding
>(val2
);
17193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17194 result
= (bool)wxEncodingConverter::CanConvert(arg1
,arg2
);
17195 wxPyEndAllowThreads(__tstate
);
17196 if (PyErr_Occurred()) SWIG_fail
;
17199 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17207 SWIGINTERN PyObject
*EncodingConverter_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17209 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17210 SWIG_TypeNewClientData(SWIGTYPE_p_wxEncodingConverter
, SWIG_NewClientData(obj
));
17211 return SWIG_Py_Void();
17214 SWIGINTERN PyObject
*EncodingConverter_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17215 return SWIG_Python_InitShadowInstance(args
);
17218 SWIGINTERN PyObject
*_wrap_delete_DC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17219 PyObject
*resultobj
= 0;
17220 wxDC
*arg1
= (wxDC
*) 0 ;
17223 PyObject
*swig_obj
[1] ;
17225 if (!args
) SWIG_fail
;
17226 swig_obj
[0] = args
;
17227 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
17228 if (!SWIG_IsOK(res1
)) {
17229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DC" "', expected argument " "1"" of type '" "wxDC *""'");
17231 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17236 wxPyEndAllowThreads(__tstate
);
17237 if (PyErr_Occurred()) SWIG_fail
;
17239 resultobj
= SWIG_Py_Void();
17246 SWIGINTERN PyObject
*_wrap_DC_FloodFill(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17247 PyObject
*resultobj
= 0;
17248 wxDC
*arg1
= (wxDC
*) 0 ;
17251 wxColour
*arg4
= 0 ;
17252 int arg5
= (int) wxFLOOD_SURFACE
;
17263 PyObject
* obj0
= 0 ;
17264 PyObject
* obj1
= 0 ;
17265 PyObject
* obj2
= 0 ;
17266 PyObject
* obj3
= 0 ;
17267 PyObject
* obj4
= 0 ;
17268 char * kwnames
[] = {
17269 (char *) "self",(char *) "x",(char *) "y",(char *) "col",(char *) "style", NULL
17272 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:DC_FloodFill",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
17273 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17274 if (!SWIG_IsOK(res1
)) {
17275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_FloodFill" "', expected argument " "1"" of type '" "wxDC *""'");
17277 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17278 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17279 if (!SWIG_IsOK(ecode2
)) {
17280 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_FloodFill" "', expected argument " "2"" of type '" "int""'");
17282 arg2
= static_cast< int >(val2
);
17283 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17284 if (!SWIG_IsOK(ecode3
)) {
17285 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_FloodFill" "', expected argument " "3"" of type '" "int""'");
17287 arg3
= static_cast< int >(val3
);
17290 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
17293 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17294 if (!SWIG_IsOK(ecode5
)) {
17295 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_FloodFill" "', expected argument " "5"" of type '" "int""'");
17297 arg5
= static_cast< int >(val5
);
17300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17301 result
= (bool)(arg1
)->FloodFill(arg2
,arg3
,(wxColour
const &)*arg4
,arg5
);
17302 wxPyEndAllowThreads(__tstate
);
17303 if (PyErr_Occurred()) SWIG_fail
;
17306 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17314 SWIGINTERN PyObject
*_wrap_DC_FloodFillPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17315 PyObject
*resultobj
= 0;
17316 wxDC
*arg1
= (wxDC
*) 0 ;
17317 wxPoint
*arg2
= 0 ;
17318 wxColour
*arg3
= 0 ;
17319 int arg4
= (int) wxFLOOD_SURFACE
;
17327 PyObject
* obj0
= 0 ;
17328 PyObject
* obj1
= 0 ;
17329 PyObject
* obj2
= 0 ;
17330 PyObject
* obj3
= 0 ;
17331 char * kwnames
[] = {
17332 (char *) "self",(char *) "pt",(char *) "col",(char *) "style", NULL
17335 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:DC_FloodFillPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
17336 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17337 if (!SWIG_IsOK(res1
)) {
17338 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_FloodFillPoint" "', expected argument " "1"" of type '" "wxDC *""'");
17340 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17343 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17347 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
17350 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17351 if (!SWIG_IsOK(ecode4
)) {
17352 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_FloodFillPoint" "', expected argument " "4"" of type '" "int""'");
17354 arg4
= static_cast< int >(val4
);
17357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17358 result
= (bool)(arg1
)->FloodFill((wxPoint
const &)*arg2
,(wxColour
const &)*arg3
,arg4
);
17359 wxPyEndAllowThreads(__tstate
);
17360 if (PyErr_Occurred()) SWIG_fail
;
17363 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17371 SWIGINTERN PyObject
*_wrap_DC_GradientFillConcentric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17372 PyObject
*resultobj
= 0;
17373 wxDC
*arg1
= (wxDC
*) 0 ;
17375 wxColour
*arg3
= 0 ;
17376 wxColour
*arg4
= 0 ;
17377 wxPoint
*arg5
= 0 ;
17384 PyObject
* obj0
= 0 ;
17385 PyObject
* obj1
= 0 ;
17386 PyObject
* obj2
= 0 ;
17387 PyObject
* obj3
= 0 ;
17388 PyObject
* obj4
= 0 ;
17389 char * kwnames
[] = {
17390 (char *) "self",(char *) "rect",(char *) "initialColour",(char *) "destColour",(char *) "circleCenter", NULL
17393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_GradientFillConcentric",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
17394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17395 if (!SWIG_IsOK(res1
)) {
17396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GradientFillConcentric" "', expected argument " "1"" of type '" "wxDC *""'");
17398 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17401 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
17405 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
17409 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
17413 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
17416 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17417 (arg1
)->GradientFillConcentric((wxRect
const &)*arg2
,(wxColour
const &)*arg3
,(wxColour
const &)*arg4
,(wxPoint
const &)*arg5
);
17418 wxPyEndAllowThreads(__tstate
);
17419 if (PyErr_Occurred()) SWIG_fail
;
17421 resultobj
= SWIG_Py_Void();
17428 SWIGINTERN PyObject
*_wrap_DC_GradientFillLinear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17429 PyObject
*resultobj
= 0;
17430 wxDC
*arg1
= (wxDC
*) 0 ;
17432 wxColour
*arg3
= 0 ;
17433 wxColour
*arg4
= 0 ;
17434 wxDirection arg5
= (wxDirection
) wxEAST
;
17442 PyObject
* obj0
= 0 ;
17443 PyObject
* obj1
= 0 ;
17444 PyObject
* obj2
= 0 ;
17445 PyObject
* obj3
= 0 ;
17446 PyObject
* obj4
= 0 ;
17447 char * kwnames
[] = {
17448 (char *) "self",(char *) "rect",(char *) "initialColour",(char *) "destColour",(char *) "nDirection", NULL
17451 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:DC_GradientFillLinear",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
17452 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17453 if (!SWIG_IsOK(res1
)) {
17454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GradientFillLinear" "', expected argument " "1"" of type '" "wxDC *""'");
17456 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17459 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
17463 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
17467 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
17470 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17471 if (!SWIG_IsOK(ecode5
)) {
17472 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_GradientFillLinear" "', expected argument " "5"" of type '" "wxDirection""'");
17474 arg5
= static_cast< wxDirection
>(val5
);
17477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17478 (arg1
)->GradientFillLinear((wxRect
const &)*arg2
,(wxColour
const &)*arg3
,(wxColour
const &)*arg4
,arg5
);
17479 wxPyEndAllowThreads(__tstate
);
17480 if (PyErr_Occurred()) SWIG_fail
;
17482 resultobj
= SWIG_Py_Void();
17489 SWIGINTERN PyObject
*_wrap_DC_GetPixel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17490 PyObject
*resultobj
= 0;
17491 wxDC
*arg1
= (wxDC
*) 0 ;
17501 PyObject
* obj0
= 0 ;
17502 PyObject
* obj1
= 0 ;
17503 PyObject
* obj2
= 0 ;
17504 char * kwnames
[] = {
17505 (char *) "self",(char *) "x",(char *) "y", NULL
17508 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_GetPixel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17509 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17510 if (!SWIG_IsOK(res1
)) {
17511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetPixel" "', expected argument " "1"" of type '" "wxDC *""'");
17513 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17514 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17515 if (!SWIG_IsOK(ecode2
)) {
17516 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_GetPixel" "', expected argument " "2"" of type '" "int""'");
17518 arg2
= static_cast< int >(val2
);
17519 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17520 if (!SWIG_IsOK(ecode3
)) {
17521 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_GetPixel" "', expected argument " "3"" of type '" "int""'");
17523 arg3
= static_cast< int >(val3
);
17525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17526 result
= wxDC_GetPixel(arg1
,arg2
,arg3
);
17527 wxPyEndAllowThreads(__tstate
);
17528 if (PyErr_Occurred()) SWIG_fail
;
17530 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
17537 SWIGINTERN PyObject
*_wrap_DC_GetPixelPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17538 PyObject
*resultobj
= 0;
17539 wxDC
*arg1
= (wxDC
*) 0 ;
17540 wxPoint
*arg2
= 0 ;
17545 PyObject
* obj0
= 0 ;
17546 PyObject
* obj1
= 0 ;
17547 char * kwnames
[] = {
17548 (char *) "self",(char *) "pt", NULL
17551 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_GetPixelPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17552 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17553 if (!SWIG_IsOK(res1
)) {
17554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetPixelPoint" "', expected argument " "1"" of type '" "wxDC *""'");
17556 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17559 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17563 result
= wxDC_GetPixelPoint(arg1
,(wxPoint
const &)*arg2
);
17564 wxPyEndAllowThreads(__tstate
);
17565 if (PyErr_Occurred()) SWIG_fail
;
17567 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
17574 SWIGINTERN PyObject
*_wrap_DC_DrawLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17575 PyObject
*resultobj
= 0;
17576 wxDC
*arg1
= (wxDC
*) 0 ;
17591 PyObject
* obj0
= 0 ;
17592 PyObject
* obj1
= 0 ;
17593 PyObject
* obj2
= 0 ;
17594 PyObject
* obj3
= 0 ;
17595 PyObject
* obj4
= 0 ;
17596 char * kwnames
[] = {
17597 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2", NULL
17600 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawLine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
17601 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17602 if (!SWIG_IsOK(res1
)) {
17603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawLine" "', expected argument " "1"" of type '" "wxDC *""'");
17605 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17606 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17607 if (!SWIG_IsOK(ecode2
)) {
17608 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawLine" "', expected argument " "2"" of type '" "int""'");
17610 arg2
= static_cast< int >(val2
);
17611 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17612 if (!SWIG_IsOK(ecode3
)) {
17613 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawLine" "', expected argument " "3"" of type '" "int""'");
17615 arg3
= static_cast< int >(val3
);
17616 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17617 if (!SWIG_IsOK(ecode4
)) {
17618 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawLine" "', expected argument " "4"" of type '" "int""'");
17620 arg4
= static_cast< int >(val4
);
17621 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17622 if (!SWIG_IsOK(ecode5
)) {
17623 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawLine" "', expected argument " "5"" of type '" "int""'");
17625 arg5
= static_cast< int >(val5
);
17627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17628 (arg1
)->DrawLine(arg2
,arg3
,arg4
,arg5
);
17629 wxPyEndAllowThreads(__tstate
);
17630 if (PyErr_Occurred()) SWIG_fail
;
17632 resultobj
= SWIG_Py_Void();
17639 SWIGINTERN PyObject
*_wrap_DC_DrawLinePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17640 PyObject
*resultobj
= 0;
17641 wxDC
*arg1
= (wxDC
*) 0 ;
17642 wxPoint
*arg2
= 0 ;
17643 wxPoint
*arg3
= 0 ;
17648 PyObject
* obj0
= 0 ;
17649 PyObject
* obj1
= 0 ;
17650 PyObject
* obj2
= 0 ;
17651 char * kwnames
[] = {
17652 (char *) "self",(char *) "pt1",(char *) "pt2", NULL
17655 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawLinePoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17656 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17657 if (!SWIG_IsOK(res1
)) {
17658 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawLinePoint" "', expected argument " "1"" of type '" "wxDC *""'");
17660 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17663 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17667 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17671 (arg1
)->DrawLine((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
);
17672 wxPyEndAllowThreads(__tstate
);
17673 if (PyErr_Occurred()) SWIG_fail
;
17675 resultobj
= SWIG_Py_Void();
17682 SWIGINTERN PyObject
*_wrap_DC_CrossHair(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17683 PyObject
*resultobj
= 0;
17684 wxDC
*arg1
= (wxDC
*) 0 ;
17693 PyObject
* obj0
= 0 ;
17694 PyObject
* obj1
= 0 ;
17695 PyObject
* obj2
= 0 ;
17696 char * kwnames
[] = {
17697 (char *) "self",(char *) "x",(char *) "y", NULL
17700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_CrossHair",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17702 if (!SWIG_IsOK(res1
)) {
17703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CrossHair" "', expected argument " "1"" of type '" "wxDC *""'");
17705 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17706 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17707 if (!SWIG_IsOK(ecode2
)) {
17708 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_CrossHair" "', expected argument " "2"" of type '" "int""'");
17710 arg2
= static_cast< int >(val2
);
17711 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17712 if (!SWIG_IsOK(ecode3
)) {
17713 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_CrossHair" "', expected argument " "3"" of type '" "int""'");
17715 arg3
= static_cast< int >(val3
);
17717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17718 (arg1
)->CrossHair(arg2
,arg3
);
17719 wxPyEndAllowThreads(__tstate
);
17720 if (PyErr_Occurred()) SWIG_fail
;
17722 resultobj
= SWIG_Py_Void();
17729 SWIGINTERN PyObject
*_wrap_DC_CrossHairPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17730 PyObject
*resultobj
= 0;
17731 wxDC
*arg1
= (wxDC
*) 0 ;
17732 wxPoint
*arg2
= 0 ;
17736 PyObject
* obj0
= 0 ;
17737 PyObject
* obj1
= 0 ;
17738 char * kwnames
[] = {
17739 (char *) "self",(char *) "pt", NULL
17742 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_CrossHairPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17743 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17744 if (!SWIG_IsOK(res1
)) {
17745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CrossHairPoint" "', expected argument " "1"" of type '" "wxDC *""'");
17747 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17750 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17753 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17754 (arg1
)->CrossHair((wxPoint
const &)*arg2
);
17755 wxPyEndAllowThreads(__tstate
);
17756 if (PyErr_Occurred()) SWIG_fail
;
17758 resultobj
= SWIG_Py_Void();
17765 SWIGINTERN PyObject
*_wrap_DC_DrawArc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17766 PyObject
*resultobj
= 0;
17767 wxDC
*arg1
= (wxDC
*) 0 ;
17788 PyObject
* obj0
= 0 ;
17789 PyObject
* obj1
= 0 ;
17790 PyObject
* obj2
= 0 ;
17791 PyObject
* obj3
= 0 ;
17792 PyObject
* obj4
= 0 ;
17793 PyObject
* obj5
= 0 ;
17794 PyObject
* obj6
= 0 ;
17795 char * kwnames
[] = {
17796 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2",(char *) "xc",(char *) "yc", NULL
17799 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:DC_DrawArc",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
17800 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17801 if (!SWIG_IsOK(res1
)) {
17802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawArc" "', expected argument " "1"" of type '" "wxDC *""'");
17804 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17805 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17806 if (!SWIG_IsOK(ecode2
)) {
17807 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawArc" "', expected argument " "2"" of type '" "int""'");
17809 arg2
= static_cast< int >(val2
);
17810 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17811 if (!SWIG_IsOK(ecode3
)) {
17812 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawArc" "', expected argument " "3"" of type '" "int""'");
17814 arg3
= static_cast< int >(val3
);
17815 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17816 if (!SWIG_IsOK(ecode4
)) {
17817 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawArc" "', expected argument " "4"" of type '" "int""'");
17819 arg4
= static_cast< int >(val4
);
17820 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17821 if (!SWIG_IsOK(ecode5
)) {
17822 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawArc" "', expected argument " "5"" of type '" "int""'");
17824 arg5
= static_cast< int >(val5
);
17825 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
17826 if (!SWIG_IsOK(ecode6
)) {
17827 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_DrawArc" "', expected argument " "6"" of type '" "int""'");
17829 arg6
= static_cast< int >(val6
);
17830 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
17831 if (!SWIG_IsOK(ecode7
)) {
17832 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "DC_DrawArc" "', expected argument " "7"" of type '" "int""'");
17834 arg7
= static_cast< int >(val7
);
17836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17837 (arg1
)->DrawArc(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
17838 wxPyEndAllowThreads(__tstate
);
17839 if (PyErr_Occurred()) SWIG_fail
;
17841 resultobj
= SWIG_Py_Void();
17848 SWIGINTERN PyObject
*_wrap_DC_DrawArcPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17849 PyObject
*resultobj
= 0;
17850 wxDC
*arg1
= (wxDC
*) 0 ;
17851 wxPoint
*arg2
= 0 ;
17852 wxPoint
*arg3
= 0 ;
17853 wxPoint
*arg4
= 0 ;
17859 PyObject
* obj0
= 0 ;
17860 PyObject
* obj1
= 0 ;
17861 PyObject
* obj2
= 0 ;
17862 PyObject
* obj3
= 0 ;
17863 char * kwnames
[] = {
17864 (char *) "self",(char *) "pt1",(char *) "pt2",(char *) "center", NULL
17867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawArcPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
17868 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17869 if (!SWIG_IsOK(res1
)) {
17870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawArcPoint" "', expected argument " "1"" of type '" "wxDC *""'");
17872 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17875 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17879 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17883 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
17886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17887 (arg1
)->DrawArc((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
17888 wxPyEndAllowThreads(__tstate
);
17889 if (PyErr_Occurred()) SWIG_fail
;
17891 resultobj
= SWIG_Py_Void();
17898 SWIGINTERN PyObject
*_wrap_DC_DrawCheckMark(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17899 PyObject
*resultobj
= 0;
17900 wxDC
*arg1
= (wxDC
*) 0 ;
17915 PyObject
* obj0
= 0 ;
17916 PyObject
* obj1
= 0 ;
17917 PyObject
* obj2
= 0 ;
17918 PyObject
* obj3
= 0 ;
17919 PyObject
* obj4
= 0 ;
17920 char * kwnames
[] = {
17921 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
17924 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawCheckMark",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
17925 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17926 if (!SWIG_IsOK(res1
)) {
17927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawCheckMark" "', expected argument " "1"" of type '" "wxDC *""'");
17929 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17930 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17931 if (!SWIG_IsOK(ecode2
)) {
17932 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawCheckMark" "', expected argument " "2"" of type '" "int""'");
17934 arg2
= static_cast< int >(val2
);
17935 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17936 if (!SWIG_IsOK(ecode3
)) {
17937 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawCheckMark" "', expected argument " "3"" of type '" "int""'");
17939 arg3
= static_cast< int >(val3
);
17940 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17941 if (!SWIG_IsOK(ecode4
)) {
17942 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawCheckMark" "', expected argument " "4"" of type '" "int""'");
17944 arg4
= static_cast< int >(val4
);
17945 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17946 if (!SWIG_IsOK(ecode5
)) {
17947 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawCheckMark" "', expected argument " "5"" of type '" "int""'");
17949 arg5
= static_cast< int >(val5
);
17951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17952 (arg1
)->DrawCheckMark(arg2
,arg3
,arg4
,arg5
);
17953 wxPyEndAllowThreads(__tstate
);
17954 if (PyErr_Occurred()) SWIG_fail
;
17956 resultobj
= SWIG_Py_Void();
17963 SWIGINTERN PyObject
*_wrap_DC_DrawCheckMarkRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17964 PyObject
*resultobj
= 0;
17965 wxDC
*arg1
= (wxDC
*) 0 ;
17970 PyObject
* obj0
= 0 ;
17971 PyObject
* obj1
= 0 ;
17972 char * kwnames
[] = {
17973 (char *) "self",(char *) "rect", NULL
17976 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DrawCheckMarkRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17977 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
17978 if (!SWIG_IsOK(res1
)) {
17979 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawCheckMarkRect" "', expected argument " "1"" of type '" "wxDC *""'");
17981 arg1
= reinterpret_cast< wxDC
* >(argp1
);
17984 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
17987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17988 (arg1
)->DrawCheckMark((wxRect
const &)*arg2
);
17989 wxPyEndAllowThreads(__tstate
);
17990 if (PyErr_Occurred()) SWIG_fail
;
17992 resultobj
= SWIG_Py_Void();
17999 SWIGINTERN PyObject
*_wrap_DC_DrawEllipticArc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18000 PyObject
*resultobj
= 0;
18001 wxDC
*arg1
= (wxDC
*) 0 ;
18022 PyObject
* obj0
= 0 ;
18023 PyObject
* obj1
= 0 ;
18024 PyObject
* obj2
= 0 ;
18025 PyObject
* obj3
= 0 ;
18026 PyObject
* obj4
= 0 ;
18027 PyObject
* obj5
= 0 ;
18028 PyObject
* obj6
= 0 ;
18029 char * kwnames
[] = {
18030 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h",(char *) "start",(char *) "end", NULL
18033 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:DC_DrawEllipticArc",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
18034 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18035 if (!SWIG_IsOK(res1
)) {
18036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawEllipticArc" "', expected argument " "1"" of type '" "wxDC *""'");
18038 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18039 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18040 if (!SWIG_IsOK(ecode2
)) {
18041 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawEllipticArc" "', expected argument " "2"" of type '" "int""'");
18043 arg2
= static_cast< int >(val2
);
18044 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18045 if (!SWIG_IsOK(ecode3
)) {
18046 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawEllipticArc" "', expected argument " "3"" of type '" "int""'");
18048 arg3
= static_cast< int >(val3
);
18049 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18050 if (!SWIG_IsOK(ecode4
)) {
18051 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawEllipticArc" "', expected argument " "4"" of type '" "int""'");
18053 arg4
= static_cast< int >(val4
);
18054 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
18055 if (!SWIG_IsOK(ecode5
)) {
18056 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawEllipticArc" "', expected argument " "5"" of type '" "int""'");
18058 arg5
= static_cast< int >(val5
);
18059 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
18060 if (!SWIG_IsOK(ecode6
)) {
18061 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_DrawEllipticArc" "', expected argument " "6"" of type '" "double""'");
18063 arg6
= static_cast< double >(val6
);
18064 ecode7
= SWIG_AsVal_double(obj6
, &val7
);
18065 if (!SWIG_IsOK(ecode7
)) {
18066 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "DC_DrawEllipticArc" "', expected argument " "7"" of type '" "double""'");
18068 arg7
= static_cast< double >(val7
);
18070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18071 (arg1
)->DrawEllipticArc(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
18072 wxPyEndAllowThreads(__tstate
);
18073 if (PyErr_Occurred()) SWIG_fail
;
18075 resultobj
= SWIG_Py_Void();
18082 SWIGINTERN PyObject
*_wrap_DC_DrawEllipticArcPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18083 PyObject
*resultobj
= 0;
18084 wxDC
*arg1
= (wxDC
*) 0 ;
18085 wxPoint
*arg2
= 0 ;
18097 PyObject
* obj0
= 0 ;
18098 PyObject
* obj1
= 0 ;
18099 PyObject
* obj2
= 0 ;
18100 PyObject
* obj3
= 0 ;
18101 PyObject
* obj4
= 0 ;
18102 char * kwnames
[] = {
18103 (char *) "self",(char *) "pt",(char *) "sz",(char *) "start",(char *) "end", NULL
18106 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawEllipticArcPointSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
18107 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18108 if (!SWIG_IsOK(res1
)) {
18109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawEllipticArcPointSize" "', expected argument " "1"" of type '" "wxDC *""'");
18111 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18114 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18118 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
18120 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
18121 if (!SWIG_IsOK(ecode4
)) {
18122 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawEllipticArcPointSize" "', expected argument " "4"" of type '" "double""'");
18124 arg4
= static_cast< double >(val4
);
18125 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
18126 if (!SWIG_IsOK(ecode5
)) {
18127 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawEllipticArcPointSize" "', expected argument " "5"" of type '" "double""'");
18129 arg5
= static_cast< double >(val5
);
18131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18132 (arg1
)->DrawEllipticArc((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
,arg4
,arg5
);
18133 wxPyEndAllowThreads(__tstate
);
18134 if (PyErr_Occurred()) SWIG_fail
;
18136 resultobj
= SWIG_Py_Void();
18143 SWIGINTERN PyObject
*_wrap_DC_DrawPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18144 PyObject
*resultobj
= 0;
18145 wxDC
*arg1
= (wxDC
*) 0 ;
18154 PyObject
* obj0
= 0 ;
18155 PyObject
* obj1
= 0 ;
18156 PyObject
* obj2
= 0 ;
18157 char * kwnames
[] = {
18158 (char *) "self",(char *) "x",(char *) "y", NULL
18161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18163 if (!SWIG_IsOK(res1
)) {
18164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawPoint" "', expected argument " "1"" of type '" "wxDC *""'");
18166 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18167 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18168 if (!SWIG_IsOK(ecode2
)) {
18169 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawPoint" "', expected argument " "2"" of type '" "int""'");
18171 arg2
= static_cast< int >(val2
);
18172 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18173 if (!SWIG_IsOK(ecode3
)) {
18174 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawPoint" "', expected argument " "3"" of type '" "int""'");
18176 arg3
= static_cast< int >(val3
);
18178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18179 (arg1
)->DrawPoint(arg2
,arg3
);
18180 wxPyEndAllowThreads(__tstate
);
18181 if (PyErr_Occurred()) SWIG_fail
;
18183 resultobj
= SWIG_Py_Void();
18190 SWIGINTERN PyObject
*_wrap_DC_DrawPointPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18191 PyObject
*resultobj
= 0;
18192 wxDC
*arg1
= (wxDC
*) 0 ;
18193 wxPoint
*arg2
= 0 ;
18197 PyObject
* obj0
= 0 ;
18198 PyObject
* obj1
= 0 ;
18199 char * kwnames
[] = {
18200 (char *) "self",(char *) "pt", NULL
18203 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DrawPointPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18204 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18205 if (!SWIG_IsOK(res1
)) {
18206 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawPointPoint" "', expected argument " "1"" of type '" "wxDC *""'");
18208 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18211 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18215 (arg1
)->DrawPoint((wxPoint
const &)*arg2
);
18216 wxPyEndAllowThreads(__tstate
);
18217 if (PyErr_Occurred()) SWIG_fail
;
18219 resultobj
= SWIG_Py_Void();
18226 SWIGINTERN PyObject
*_wrap_DC_DrawRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18227 PyObject
*resultobj
= 0;
18228 wxDC
*arg1
= (wxDC
*) 0 ;
18243 PyObject
* obj0
= 0 ;
18244 PyObject
* obj1
= 0 ;
18245 PyObject
* obj2
= 0 ;
18246 PyObject
* obj3
= 0 ;
18247 PyObject
* obj4
= 0 ;
18248 char * kwnames
[] = {
18249 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
18252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
18253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18254 if (!SWIG_IsOK(res1
)) {
18255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRectangle" "', expected argument " "1"" of type '" "wxDC *""'");
18257 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18258 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18259 if (!SWIG_IsOK(ecode2
)) {
18260 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawRectangle" "', expected argument " "2"" of type '" "int""'");
18262 arg2
= static_cast< int >(val2
);
18263 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18264 if (!SWIG_IsOK(ecode3
)) {
18265 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawRectangle" "', expected argument " "3"" of type '" "int""'");
18267 arg3
= static_cast< int >(val3
);
18268 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18269 if (!SWIG_IsOK(ecode4
)) {
18270 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawRectangle" "', expected argument " "4"" of type '" "int""'");
18272 arg4
= static_cast< int >(val4
);
18273 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
18274 if (!SWIG_IsOK(ecode5
)) {
18275 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawRectangle" "', expected argument " "5"" of type '" "int""'");
18277 arg5
= static_cast< int >(val5
);
18279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18280 (arg1
)->DrawRectangle(arg2
,arg3
,arg4
,arg5
);
18281 wxPyEndAllowThreads(__tstate
);
18282 if (PyErr_Occurred()) SWIG_fail
;
18284 resultobj
= SWIG_Py_Void();
18291 SWIGINTERN PyObject
*_wrap_DC_DrawRectangleRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18292 PyObject
*resultobj
= 0;
18293 wxDC
*arg1
= (wxDC
*) 0 ;
18298 PyObject
* obj0
= 0 ;
18299 PyObject
* obj1
= 0 ;
18300 char * kwnames
[] = {
18301 (char *) "self",(char *) "rect", NULL
18304 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DrawRectangleRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18305 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18306 if (!SWIG_IsOK(res1
)) {
18307 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRectangleRect" "', expected argument " "1"" of type '" "wxDC *""'");
18309 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18312 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
18315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18316 (arg1
)->DrawRectangle((wxRect
const &)*arg2
);
18317 wxPyEndAllowThreads(__tstate
);
18318 if (PyErr_Occurred()) SWIG_fail
;
18320 resultobj
= SWIG_Py_Void();
18327 SWIGINTERN PyObject
*_wrap_DC_DrawRectanglePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18328 PyObject
*resultobj
= 0;
18329 wxDC
*arg1
= (wxDC
*) 0 ;
18330 wxPoint
*arg2
= 0 ;
18336 PyObject
* obj0
= 0 ;
18337 PyObject
* obj1
= 0 ;
18338 PyObject
* obj2
= 0 ;
18339 char * kwnames
[] = {
18340 (char *) "self",(char *) "pt",(char *) "sz", NULL
18343 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawRectanglePointSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18344 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18345 if (!SWIG_IsOK(res1
)) {
18346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRectanglePointSize" "', expected argument " "1"" of type '" "wxDC *""'");
18348 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18351 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18355 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
18358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18359 (arg1
)->DrawRectangle((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
18360 wxPyEndAllowThreads(__tstate
);
18361 if (PyErr_Occurred()) SWIG_fail
;
18363 resultobj
= SWIG_Py_Void();
18370 SWIGINTERN PyObject
*_wrap_DC_DrawRoundedRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18371 PyObject
*resultobj
= 0;
18372 wxDC
*arg1
= (wxDC
*) 0 ;
18390 PyObject
* obj0
= 0 ;
18391 PyObject
* obj1
= 0 ;
18392 PyObject
* obj2
= 0 ;
18393 PyObject
* obj3
= 0 ;
18394 PyObject
* obj4
= 0 ;
18395 PyObject
* obj5
= 0 ;
18396 char * kwnames
[] = {
18397 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "radius", NULL
18400 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:DC_DrawRoundedRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
18401 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18402 if (!SWIG_IsOK(res1
)) {
18403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "1"" of type '" "wxDC *""'");
18405 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18406 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18407 if (!SWIG_IsOK(ecode2
)) {
18408 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "2"" of type '" "int""'");
18410 arg2
= static_cast< int >(val2
);
18411 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18412 if (!SWIG_IsOK(ecode3
)) {
18413 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "3"" of type '" "int""'");
18415 arg3
= static_cast< int >(val3
);
18416 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18417 if (!SWIG_IsOK(ecode4
)) {
18418 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "4"" of type '" "int""'");
18420 arg4
= static_cast< int >(val4
);
18421 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
18422 if (!SWIG_IsOK(ecode5
)) {
18423 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "5"" of type '" "int""'");
18425 arg5
= static_cast< int >(val5
);
18426 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
18427 if (!SWIG_IsOK(ecode6
)) {
18428 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_DrawRoundedRectangle" "', expected argument " "6"" of type '" "double""'");
18430 arg6
= static_cast< double >(val6
);
18432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18433 (arg1
)->DrawRoundedRectangle(arg2
,arg3
,arg4
,arg5
,arg6
);
18434 wxPyEndAllowThreads(__tstate
);
18435 if (PyErr_Occurred()) SWIG_fail
;
18437 resultobj
= SWIG_Py_Void();
18444 SWIGINTERN PyObject
*_wrap_DC_DrawRoundedRectangleRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18445 PyObject
*resultobj
= 0;
18446 wxDC
*arg1
= (wxDC
*) 0 ;
18454 PyObject
* obj0
= 0 ;
18455 PyObject
* obj1
= 0 ;
18456 PyObject
* obj2
= 0 ;
18457 char * kwnames
[] = {
18458 (char *) "self",(char *) "r",(char *) "radius", NULL
18461 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawRoundedRectangleRect",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18462 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18463 if (!SWIG_IsOK(res1
)) {
18464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRoundedRectangleRect" "', expected argument " "1"" of type '" "wxDC *""'");
18466 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18469 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
18471 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
18472 if (!SWIG_IsOK(ecode3
)) {
18473 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawRoundedRectangleRect" "', expected argument " "3"" of type '" "double""'");
18475 arg3
= static_cast< double >(val3
);
18477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18478 (arg1
)->DrawRoundedRectangle((wxRect
const &)*arg2
,arg3
);
18479 wxPyEndAllowThreads(__tstate
);
18480 if (PyErr_Occurred()) SWIG_fail
;
18482 resultobj
= SWIG_Py_Void();
18489 SWIGINTERN PyObject
*_wrap_DC_DrawRoundedRectanglePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18490 PyObject
*resultobj
= 0;
18491 wxDC
*arg1
= (wxDC
*) 0 ;
18492 wxPoint
*arg2
= 0 ;
18501 PyObject
* obj0
= 0 ;
18502 PyObject
* obj1
= 0 ;
18503 PyObject
* obj2
= 0 ;
18504 PyObject
* obj3
= 0 ;
18505 char * kwnames
[] = {
18506 (char *) "self",(char *) "pt",(char *) "sz",(char *) "radius", NULL
18509 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawRoundedRectanglePointSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18510 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18511 if (!SWIG_IsOK(res1
)) {
18512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRoundedRectanglePointSize" "', expected argument " "1"" of type '" "wxDC *""'");
18514 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18517 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18521 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
18523 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
18524 if (!SWIG_IsOK(ecode4
)) {
18525 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawRoundedRectanglePointSize" "', expected argument " "4"" of type '" "double""'");
18527 arg4
= static_cast< double >(val4
);
18529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18530 (arg1
)->DrawRoundedRectangle((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
,arg4
);
18531 wxPyEndAllowThreads(__tstate
);
18532 if (PyErr_Occurred()) SWIG_fail
;
18534 resultobj
= SWIG_Py_Void();
18541 SWIGINTERN PyObject
*_wrap_DC_DrawCircle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18542 PyObject
*resultobj
= 0;
18543 wxDC
*arg1
= (wxDC
*) 0 ;
18555 PyObject
* obj0
= 0 ;
18556 PyObject
* obj1
= 0 ;
18557 PyObject
* obj2
= 0 ;
18558 PyObject
* obj3
= 0 ;
18559 char * kwnames
[] = {
18560 (char *) "self",(char *) "x",(char *) "y",(char *) "radius", NULL
18563 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawCircle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18564 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18565 if (!SWIG_IsOK(res1
)) {
18566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawCircle" "', expected argument " "1"" of type '" "wxDC *""'");
18568 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18569 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18570 if (!SWIG_IsOK(ecode2
)) {
18571 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawCircle" "', expected argument " "2"" of type '" "int""'");
18573 arg2
= static_cast< int >(val2
);
18574 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18575 if (!SWIG_IsOK(ecode3
)) {
18576 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawCircle" "', expected argument " "3"" of type '" "int""'");
18578 arg3
= static_cast< int >(val3
);
18579 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18580 if (!SWIG_IsOK(ecode4
)) {
18581 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawCircle" "', expected argument " "4"" of type '" "int""'");
18583 arg4
= static_cast< int >(val4
);
18585 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18586 (arg1
)->DrawCircle(arg2
,arg3
,arg4
);
18587 wxPyEndAllowThreads(__tstate
);
18588 if (PyErr_Occurred()) SWIG_fail
;
18590 resultobj
= SWIG_Py_Void();
18597 SWIGINTERN PyObject
*_wrap_DC_DrawCirclePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18598 PyObject
*resultobj
= 0;
18599 wxDC
*arg1
= (wxDC
*) 0 ;
18600 wxPoint
*arg2
= 0 ;
18607 PyObject
* obj0
= 0 ;
18608 PyObject
* obj1
= 0 ;
18609 PyObject
* obj2
= 0 ;
18610 char * kwnames
[] = {
18611 (char *) "self",(char *) "pt",(char *) "radius", NULL
18614 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawCirclePoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18615 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18616 if (!SWIG_IsOK(res1
)) {
18617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawCirclePoint" "', expected argument " "1"" of type '" "wxDC *""'");
18619 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18622 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18624 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18625 if (!SWIG_IsOK(ecode3
)) {
18626 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawCirclePoint" "', expected argument " "3"" of type '" "int""'");
18628 arg3
= static_cast< int >(val3
);
18630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18631 (arg1
)->DrawCircle((wxPoint
const &)*arg2
,arg3
);
18632 wxPyEndAllowThreads(__tstate
);
18633 if (PyErr_Occurred()) SWIG_fail
;
18635 resultobj
= SWIG_Py_Void();
18642 SWIGINTERN PyObject
*_wrap_DC_DrawEllipse(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18643 PyObject
*resultobj
= 0;
18644 wxDC
*arg1
= (wxDC
*) 0 ;
18659 PyObject
* obj0
= 0 ;
18660 PyObject
* obj1
= 0 ;
18661 PyObject
* obj2
= 0 ;
18662 PyObject
* obj3
= 0 ;
18663 PyObject
* obj4
= 0 ;
18664 char * kwnames
[] = {
18665 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
18668 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawEllipse",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
18669 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18670 if (!SWIG_IsOK(res1
)) {
18671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawEllipse" "', expected argument " "1"" of type '" "wxDC *""'");
18673 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18674 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18675 if (!SWIG_IsOK(ecode2
)) {
18676 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DrawEllipse" "', expected argument " "2"" of type '" "int""'");
18678 arg2
= static_cast< int >(val2
);
18679 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18680 if (!SWIG_IsOK(ecode3
)) {
18681 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawEllipse" "', expected argument " "3"" of type '" "int""'");
18683 arg3
= static_cast< int >(val3
);
18684 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18685 if (!SWIG_IsOK(ecode4
)) {
18686 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawEllipse" "', expected argument " "4"" of type '" "int""'");
18688 arg4
= static_cast< int >(val4
);
18689 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
18690 if (!SWIG_IsOK(ecode5
)) {
18691 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawEllipse" "', expected argument " "5"" of type '" "int""'");
18693 arg5
= static_cast< int >(val5
);
18695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18696 (arg1
)->DrawEllipse(arg2
,arg3
,arg4
,arg5
);
18697 wxPyEndAllowThreads(__tstate
);
18698 if (PyErr_Occurred()) SWIG_fail
;
18700 resultobj
= SWIG_Py_Void();
18707 SWIGINTERN PyObject
*_wrap_DC_DrawEllipseRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18708 PyObject
*resultobj
= 0;
18709 wxDC
*arg1
= (wxDC
*) 0 ;
18714 PyObject
* obj0
= 0 ;
18715 PyObject
* obj1
= 0 ;
18716 char * kwnames
[] = {
18717 (char *) "self",(char *) "rect", NULL
18720 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DrawEllipseRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18721 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18722 if (!SWIG_IsOK(res1
)) {
18723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawEllipseRect" "', expected argument " "1"" of type '" "wxDC *""'");
18725 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18728 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
18731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18732 (arg1
)->DrawEllipse((wxRect
const &)*arg2
);
18733 wxPyEndAllowThreads(__tstate
);
18734 if (PyErr_Occurred()) SWIG_fail
;
18736 resultobj
= SWIG_Py_Void();
18743 SWIGINTERN PyObject
*_wrap_DC_DrawEllipsePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18744 PyObject
*resultobj
= 0;
18745 wxDC
*arg1
= (wxDC
*) 0 ;
18746 wxPoint
*arg2
= 0 ;
18752 PyObject
* obj0
= 0 ;
18753 PyObject
* obj1
= 0 ;
18754 PyObject
* obj2
= 0 ;
18755 char * kwnames
[] = {
18756 (char *) "self",(char *) "pt",(char *) "sz", NULL
18759 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawEllipsePointSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18760 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18761 if (!SWIG_IsOK(res1
)) {
18762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawEllipsePointSize" "', expected argument " "1"" of type '" "wxDC *""'");
18764 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18767 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
18771 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
18774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18775 (arg1
)->DrawEllipse((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
18776 wxPyEndAllowThreads(__tstate
);
18777 if (PyErr_Occurred()) SWIG_fail
;
18779 resultobj
= SWIG_Py_Void();
18786 SWIGINTERN PyObject
*_wrap_DC_DrawIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18787 PyObject
*resultobj
= 0;
18788 wxDC
*arg1
= (wxDC
*) 0 ;
18800 PyObject
* obj0
= 0 ;
18801 PyObject
* obj1
= 0 ;
18802 PyObject
* obj2
= 0 ;
18803 PyObject
* obj3
= 0 ;
18804 char * kwnames
[] = {
18805 (char *) "self",(char *) "icon",(char *) "x",(char *) "y", NULL
18808 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawIcon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18809 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18810 if (!SWIG_IsOK(res1
)) {
18811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawIcon" "', expected argument " "1"" of type '" "wxDC *""'");
18813 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18814 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
18815 if (!SWIG_IsOK(res2
)) {
18816 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
18819 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
18821 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
18822 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18823 if (!SWIG_IsOK(ecode3
)) {
18824 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawIcon" "', expected argument " "3"" of type '" "int""'");
18826 arg3
= static_cast< int >(val3
);
18827 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18828 if (!SWIG_IsOK(ecode4
)) {
18829 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawIcon" "', expected argument " "4"" of type '" "int""'");
18831 arg4
= static_cast< int >(val4
);
18833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18834 (arg1
)->DrawIcon((wxIcon
const &)*arg2
,arg3
,arg4
);
18835 wxPyEndAllowThreads(__tstate
);
18836 if (PyErr_Occurred()) SWIG_fail
;
18838 resultobj
= SWIG_Py_Void();
18845 SWIGINTERN PyObject
*_wrap_DC_DrawIconPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18846 PyObject
*resultobj
= 0;
18847 wxDC
*arg1
= (wxDC
*) 0 ;
18849 wxPoint
*arg3
= 0 ;
18855 PyObject
* obj0
= 0 ;
18856 PyObject
* obj1
= 0 ;
18857 PyObject
* obj2
= 0 ;
18858 char * kwnames
[] = {
18859 (char *) "self",(char *) "icon",(char *) "pt", NULL
18862 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawIconPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18863 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18864 if (!SWIG_IsOK(res1
)) {
18865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawIconPoint" "', expected argument " "1"" of type '" "wxDC *""'");
18867 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18868 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
18869 if (!SWIG_IsOK(res2
)) {
18870 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_DrawIconPoint" "', expected argument " "2"" of type '" "wxIcon const &""'");
18873 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_DrawIconPoint" "', expected argument " "2"" of type '" "wxIcon const &""'");
18875 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
18878 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
18881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18882 (arg1
)->DrawIcon((wxIcon
const &)*arg2
,(wxPoint
const &)*arg3
);
18883 wxPyEndAllowThreads(__tstate
);
18884 if (PyErr_Occurred()) SWIG_fail
;
18886 resultobj
= SWIG_Py_Void();
18893 SWIGINTERN PyObject
*_wrap_DC_DrawBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18894 PyObject
*resultobj
= 0;
18895 wxDC
*arg1
= (wxDC
*) 0 ;
18896 wxBitmap
*arg2
= 0 ;
18899 bool arg5
= (bool) false ;
18910 PyObject
* obj0
= 0 ;
18911 PyObject
* obj1
= 0 ;
18912 PyObject
* obj2
= 0 ;
18913 PyObject
* obj3
= 0 ;
18914 PyObject
* obj4
= 0 ;
18915 char * kwnames
[] = {
18916 (char *) "self",(char *) "bmp",(char *) "x",(char *) "y",(char *) "useMask", NULL
18919 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:DC_DrawBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
18920 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18921 if (!SWIG_IsOK(res1
)) {
18922 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawBitmap" "', expected argument " "1"" of type '" "wxDC *""'");
18924 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18925 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
18926 if (!SWIG_IsOK(res2
)) {
18927 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
18930 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
18932 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
18933 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18934 if (!SWIG_IsOK(ecode3
)) {
18935 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawBitmap" "', expected argument " "3"" of type '" "int""'");
18937 arg3
= static_cast< int >(val3
);
18938 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18939 if (!SWIG_IsOK(ecode4
)) {
18940 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawBitmap" "', expected argument " "4"" of type '" "int""'");
18942 arg4
= static_cast< int >(val4
);
18944 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
18945 if (!SWIG_IsOK(ecode5
)) {
18946 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawBitmap" "', expected argument " "5"" of type '" "bool""'");
18948 arg5
= static_cast< bool >(val5
);
18951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18952 (arg1
)->DrawBitmap((wxBitmap
const &)*arg2
,arg3
,arg4
,arg5
);
18953 wxPyEndAllowThreads(__tstate
);
18954 if (PyErr_Occurred()) SWIG_fail
;
18956 resultobj
= SWIG_Py_Void();
18963 SWIGINTERN PyObject
*_wrap_DC_DrawBitmapPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18964 PyObject
*resultobj
= 0;
18965 wxDC
*arg1
= (wxDC
*) 0 ;
18966 wxBitmap
*arg2
= 0 ;
18967 wxPoint
*arg3
= 0 ;
18968 bool arg4
= (bool) false ;
18976 PyObject
* obj0
= 0 ;
18977 PyObject
* obj1
= 0 ;
18978 PyObject
* obj2
= 0 ;
18979 PyObject
* obj3
= 0 ;
18980 char * kwnames
[] = {
18981 (char *) "self",(char *) "bmp",(char *) "pt",(char *) "useMask", NULL
18984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:DC_DrawBitmapPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
18986 if (!SWIG_IsOK(res1
)) {
18987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawBitmapPoint" "', expected argument " "1"" of type '" "wxDC *""'");
18989 arg1
= reinterpret_cast< wxDC
* >(argp1
);
18990 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
18991 if (!SWIG_IsOK(res2
)) {
18992 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_DrawBitmapPoint" "', expected argument " "2"" of type '" "wxBitmap const &""'");
18995 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_DrawBitmapPoint" "', expected argument " "2"" of type '" "wxBitmap const &""'");
18997 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
19000 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
19003 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
19004 if (!SWIG_IsOK(ecode4
)) {
19005 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawBitmapPoint" "', expected argument " "4"" of type '" "bool""'");
19007 arg4
= static_cast< bool >(val4
);
19010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19011 (arg1
)->DrawBitmap((wxBitmap
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
);
19012 wxPyEndAllowThreads(__tstate
);
19013 if (PyErr_Occurred()) SWIG_fail
;
19015 resultobj
= SWIG_Py_Void();
19022 SWIGINTERN PyObject
*_wrap_DC_DrawText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19023 PyObject
*resultobj
= 0;
19024 wxDC
*arg1
= (wxDC
*) 0 ;
19025 wxString
*arg2
= 0 ;
19030 bool temp2
= false ;
19035 PyObject
* obj0
= 0 ;
19036 PyObject
* obj1
= 0 ;
19037 PyObject
* obj2
= 0 ;
19038 PyObject
* obj3
= 0 ;
19039 char * kwnames
[] = {
19040 (char *) "self",(char *) "text",(char *) "x",(char *) "y", NULL
19043 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
19044 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19045 if (!SWIG_IsOK(res1
)) {
19046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawText" "', expected argument " "1"" of type '" "wxDC *""'");
19048 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19050 arg2
= wxString_in_helper(obj1
);
19051 if (arg2
== NULL
) SWIG_fail
;
19054 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19055 if (!SWIG_IsOK(ecode3
)) {
19056 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawText" "', expected argument " "3"" of type '" "int""'");
19058 arg3
= static_cast< int >(val3
);
19059 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19060 if (!SWIG_IsOK(ecode4
)) {
19061 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawText" "', expected argument " "4"" of type '" "int""'");
19063 arg4
= static_cast< int >(val4
);
19065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19066 (arg1
)->DrawText((wxString
const &)*arg2
,arg3
,arg4
);
19067 wxPyEndAllowThreads(__tstate
);
19068 if (PyErr_Occurred()) SWIG_fail
;
19070 resultobj
= SWIG_Py_Void();
19085 SWIGINTERN PyObject
*_wrap_DC_DrawTextPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19086 PyObject
*resultobj
= 0;
19087 wxDC
*arg1
= (wxDC
*) 0 ;
19088 wxString
*arg2
= 0 ;
19089 wxPoint
*arg3
= 0 ;
19092 bool temp2
= false ;
19094 PyObject
* obj0
= 0 ;
19095 PyObject
* obj1
= 0 ;
19096 PyObject
* obj2
= 0 ;
19097 char * kwnames
[] = {
19098 (char *) "self",(char *) "text",(char *) "pt", NULL
19101 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_DrawTextPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19102 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19103 if (!SWIG_IsOK(res1
)) {
19104 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawTextPoint" "', expected argument " "1"" of type '" "wxDC *""'");
19106 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19108 arg2
= wxString_in_helper(obj1
);
19109 if (arg2
== NULL
) SWIG_fail
;
19114 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
19117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19118 (arg1
)->DrawText((wxString
const &)*arg2
,(wxPoint
const &)*arg3
);
19119 wxPyEndAllowThreads(__tstate
);
19120 if (PyErr_Occurred()) SWIG_fail
;
19122 resultobj
= SWIG_Py_Void();
19137 SWIGINTERN PyObject
*_wrap_DC_DrawRotatedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19138 PyObject
*resultobj
= 0;
19139 wxDC
*arg1
= (wxDC
*) 0 ;
19140 wxString
*arg2
= 0 ;
19146 bool temp2
= false ;
19153 PyObject
* obj0
= 0 ;
19154 PyObject
* obj1
= 0 ;
19155 PyObject
* obj2
= 0 ;
19156 PyObject
* obj3
= 0 ;
19157 PyObject
* obj4
= 0 ;
19158 char * kwnames
[] = {
19159 (char *) "self",(char *) "text",(char *) "x",(char *) "y",(char *) "angle", NULL
19162 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_DrawRotatedText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19163 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19164 if (!SWIG_IsOK(res1
)) {
19165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRotatedText" "', expected argument " "1"" of type '" "wxDC *""'");
19167 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19169 arg2
= wxString_in_helper(obj1
);
19170 if (arg2
== NULL
) SWIG_fail
;
19173 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19174 if (!SWIG_IsOK(ecode3
)) {
19175 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_DrawRotatedText" "', expected argument " "3"" of type '" "int""'");
19177 arg3
= static_cast< int >(val3
);
19178 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19179 if (!SWIG_IsOK(ecode4
)) {
19180 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawRotatedText" "', expected argument " "4"" of type '" "int""'");
19182 arg4
= static_cast< int >(val4
);
19183 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
19184 if (!SWIG_IsOK(ecode5
)) {
19185 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawRotatedText" "', expected argument " "5"" of type '" "double""'");
19187 arg5
= static_cast< double >(val5
);
19189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19190 (arg1
)->DrawRotatedText((wxString
const &)*arg2
,arg3
,arg4
,arg5
);
19191 wxPyEndAllowThreads(__tstate
);
19192 if (PyErr_Occurred()) SWIG_fail
;
19194 resultobj
= SWIG_Py_Void();
19209 SWIGINTERN PyObject
*_wrap_DC_DrawRotatedTextPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19210 PyObject
*resultobj
= 0;
19211 wxDC
*arg1
= (wxDC
*) 0 ;
19212 wxString
*arg2
= 0 ;
19213 wxPoint
*arg3
= 0 ;
19217 bool temp2
= false ;
19221 PyObject
* obj0
= 0 ;
19222 PyObject
* obj1
= 0 ;
19223 PyObject
* obj2
= 0 ;
19224 PyObject
* obj3
= 0 ;
19225 char * kwnames
[] = {
19226 (char *) "self",(char *) "text",(char *) "pt",(char *) "angle", NULL
19229 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC_DrawRotatedTextPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
19230 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19231 if (!SWIG_IsOK(res1
)) {
19232 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawRotatedTextPoint" "', expected argument " "1"" of type '" "wxDC *""'");
19234 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19236 arg2
= wxString_in_helper(obj1
);
19237 if (arg2
== NULL
) SWIG_fail
;
19242 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
19244 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
19245 if (!SWIG_IsOK(ecode4
)) {
19246 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawRotatedTextPoint" "', expected argument " "4"" of type '" "double""'");
19248 arg4
= static_cast< double >(val4
);
19250 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19251 (arg1
)->DrawRotatedText((wxString
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
);
19252 wxPyEndAllowThreads(__tstate
);
19253 if (PyErr_Occurred()) SWIG_fail
;
19255 resultobj
= SWIG_Py_Void();
19270 SWIGINTERN PyObject
*_wrap_DC_Blit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19271 PyObject
*resultobj
= 0;
19272 wxDC
*arg1
= (wxDC
*) 0 ;
19277 wxDC
*arg6
= (wxDC
*) 0 ;
19280 int arg9
= (int) wxCOPY
;
19281 bool arg10
= (bool) false ;
19282 int arg11
= (int) -1 ;
19283 int arg12
= (int) -1 ;
19309 PyObject
* obj0
= 0 ;
19310 PyObject
* obj1
= 0 ;
19311 PyObject
* obj2
= 0 ;
19312 PyObject
* obj3
= 0 ;
19313 PyObject
* obj4
= 0 ;
19314 PyObject
* obj5
= 0 ;
19315 PyObject
* obj6
= 0 ;
19316 PyObject
* obj7
= 0 ;
19317 PyObject
* obj8
= 0 ;
19318 PyObject
* obj9
= 0 ;
19319 PyObject
* obj10
= 0 ;
19320 PyObject
* obj11
= 0 ;
19321 char * kwnames
[] = {
19322 (char *) "self",(char *) "xdest",(char *) "ydest",(char *) "width",(char *) "height",(char *) "source",(char *) "xsrc",(char *) "ysrc",(char *) "rop",(char *) "useMask",(char *) "xsrcMask",(char *) "ysrcMask", NULL
19325 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO|OOOO:DC_Blit",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
,&obj11
)) SWIG_fail
;
19326 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19327 if (!SWIG_IsOK(res1
)) {
19328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_Blit" "', expected argument " "1"" of type '" "wxDC *""'");
19330 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19331 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19332 if (!SWIG_IsOK(ecode2
)) {
19333 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_Blit" "', expected argument " "2"" of type '" "int""'");
19335 arg2
= static_cast< int >(val2
);
19336 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19337 if (!SWIG_IsOK(ecode3
)) {
19338 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_Blit" "', expected argument " "3"" of type '" "int""'");
19340 arg3
= static_cast< int >(val3
);
19341 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19342 if (!SWIG_IsOK(ecode4
)) {
19343 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_Blit" "', expected argument " "4"" of type '" "int""'");
19345 arg4
= static_cast< int >(val4
);
19346 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19347 if (!SWIG_IsOK(ecode5
)) {
19348 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_Blit" "', expected argument " "5"" of type '" "int""'");
19350 arg5
= static_cast< int >(val5
);
19351 res6
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxDC
, 0 | 0 );
19352 if (!SWIG_IsOK(res6
)) {
19353 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DC_Blit" "', expected argument " "6"" of type '" "wxDC *""'");
19355 arg6
= reinterpret_cast< wxDC
* >(argp6
);
19356 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
19357 if (!SWIG_IsOK(ecode7
)) {
19358 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "DC_Blit" "', expected argument " "7"" of type '" "int""'");
19360 arg7
= static_cast< int >(val7
);
19361 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
19362 if (!SWIG_IsOK(ecode8
)) {
19363 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "DC_Blit" "', expected argument " "8"" of type '" "int""'");
19365 arg8
= static_cast< int >(val8
);
19367 ecode9
= SWIG_AsVal_int(obj8
, &val9
);
19368 if (!SWIG_IsOK(ecode9
)) {
19369 SWIG_exception_fail(SWIG_ArgError(ecode9
), "in method '" "DC_Blit" "', expected argument " "9"" of type '" "int""'");
19371 arg9
= static_cast< int >(val9
);
19374 ecode10
= SWIG_AsVal_bool(obj9
, &val10
);
19375 if (!SWIG_IsOK(ecode10
)) {
19376 SWIG_exception_fail(SWIG_ArgError(ecode10
), "in method '" "DC_Blit" "', expected argument " "10"" of type '" "bool""'");
19378 arg10
= static_cast< bool >(val10
);
19381 ecode11
= SWIG_AsVal_int(obj10
, &val11
);
19382 if (!SWIG_IsOK(ecode11
)) {
19383 SWIG_exception_fail(SWIG_ArgError(ecode11
), "in method '" "DC_Blit" "', expected argument " "11"" of type '" "int""'");
19385 arg11
= static_cast< int >(val11
);
19388 ecode12
= SWIG_AsVal_int(obj11
, &val12
);
19389 if (!SWIG_IsOK(ecode12
)) {
19390 SWIG_exception_fail(SWIG_ArgError(ecode12
), "in method '" "DC_Blit" "', expected argument " "12"" of type '" "int""'");
19392 arg12
= static_cast< int >(val12
);
19395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19396 result
= (bool)(arg1
)->Blit(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
,arg11
,arg12
);
19397 wxPyEndAllowThreads(__tstate
);
19398 if (PyErr_Occurred()) SWIG_fail
;
19401 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19409 SWIGINTERN PyObject
*_wrap_DC_BlitPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19410 PyObject
*resultobj
= 0;
19411 wxDC
*arg1
= (wxDC
*) 0 ;
19412 wxPoint
*arg2
= 0 ;
19414 wxDC
*arg4
= (wxDC
*) 0 ;
19415 wxPoint
*arg5
= 0 ;
19416 int arg6
= (int) wxCOPY
;
19417 bool arg7
= (bool) false ;
19418 wxPoint
const &arg8_defvalue
= wxDefaultPosition
;
19419 wxPoint
*arg8
= (wxPoint
*) &arg8_defvalue
;
19433 PyObject
* obj0
= 0 ;
19434 PyObject
* obj1
= 0 ;
19435 PyObject
* obj2
= 0 ;
19436 PyObject
* obj3
= 0 ;
19437 PyObject
* obj4
= 0 ;
19438 PyObject
* obj5
= 0 ;
19439 PyObject
* obj6
= 0 ;
19440 PyObject
* obj7
= 0 ;
19441 char * kwnames
[] = {
19442 (char *) "self",(char *) "destPt",(char *) "sz",(char *) "source",(char *) "srcPt",(char *) "rop",(char *) "useMask",(char *) "srcPtMask", NULL
19445 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOO:DC_BlitPointSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
19446 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19447 if (!SWIG_IsOK(res1
)) {
19448 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_BlitPointSize" "', expected argument " "1"" of type '" "wxDC *""'");
19450 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19453 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
19457 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
19459 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxDC
, 0 | 0 );
19460 if (!SWIG_IsOK(res4
)) {
19461 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "DC_BlitPointSize" "', expected argument " "4"" of type '" "wxDC *""'");
19463 arg4
= reinterpret_cast< wxDC
* >(argp4
);
19466 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
19469 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
19470 if (!SWIG_IsOK(ecode6
)) {
19471 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_BlitPointSize" "', expected argument " "6"" of type '" "int""'");
19473 arg6
= static_cast< int >(val6
);
19476 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
19477 if (!SWIG_IsOK(ecode7
)) {
19478 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "DC_BlitPointSize" "', expected argument " "7"" of type '" "bool""'");
19480 arg7
= static_cast< bool >(val7
);
19485 if ( ! wxPoint_helper(obj7
, &arg8
)) SWIG_fail
;
19489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19490 result
= (bool)(arg1
)->Blit((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
,arg4
,(wxPoint
const &)*arg5
,arg6
,arg7
,(wxPoint
const &)*arg8
);
19491 wxPyEndAllowThreads(__tstate
);
19492 if (PyErr_Occurred()) SWIG_fail
;
19495 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19503 SWIGINTERN PyObject
*_wrap_DC_SetClippingRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19504 PyObject
*resultobj
= 0;
19505 wxDC
*arg1
= (wxDC
*) 0 ;
19520 PyObject
* obj0
= 0 ;
19521 PyObject
* obj1
= 0 ;
19522 PyObject
* obj2
= 0 ;
19523 PyObject
* obj3
= 0 ;
19524 PyObject
* obj4
= 0 ;
19525 char * kwnames
[] = {
19526 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
19529 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC_SetClippingRegion",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19530 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19531 if (!SWIG_IsOK(res1
)) {
19532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetClippingRegion" "', expected argument " "1"" of type '" "wxDC *""'");
19534 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19535 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19536 if (!SWIG_IsOK(ecode2
)) {
19537 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetClippingRegion" "', expected argument " "2"" of type '" "int""'");
19539 arg2
= static_cast< int >(val2
);
19540 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19541 if (!SWIG_IsOK(ecode3
)) {
19542 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetClippingRegion" "', expected argument " "3"" of type '" "int""'");
19544 arg3
= static_cast< int >(val3
);
19545 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19546 if (!SWIG_IsOK(ecode4
)) {
19547 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_SetClippingRegion" "', expected argument " "4"" of type '" "int""'");
19549 arg4
= static_cast< int >(val4
);
19550 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19551 if (!SWIG_IsOK(ecode5
)) {
19552 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_SetClippingRegion" "', expected argument " "5"" of type '" "int""'");
19554 arg5
= static_cast< int >(val5
);
19556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19557 (arg1
)->SetClippingRegion(arg2
,arg3
,arg4
,arg5
);
19558 wxPyEndAllowThreads(__tstate
);
19559 if (PyErr_Occurred()) SWIG_fail
;
19561 resultobj
= SWIG_Py_Void();
19568 SWIGINTERN PyObject
*_wrap_DC_SetClippingRegionPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19569 PyObject
*resultobj
= 0;
19570 wxDC
*arg1
= (wxDC
*) 0 ;
19571 wxPoint
*arg2
= 0 ;
19577 PyObject
* obj0
= 0 ;
19578 PyObject
* obj1
= 0 ;
19579 PyObject
* obj2
= 0 ;
19580 char * kwnames
[] = {
19581 (char *) "self",(char *) "pt",(char *) "sz", NULL
19584 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetClippingRegionPointSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19585 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19586 if (!SWIG_IsOK(res1
)) {
19587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetClippingRegionPointSize" "', expected argument " "1"" of type '" "wxDC *""'");
19589 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19592 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
19596 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
19599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19600 (arg1
)->SetClippingRegion((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
19601 wxPyEndAllowThreads(__tstate
);
19602 if (PyErr_Occurred()) SWIG_fail
;
19604 resultobj
= SWIG_Py_Void();
19611 SWIGINTERN PyObject
*_wrap_DC_SetClippingRegionAsRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19612 PyObject
*resultobj
= 0;
19613 wxDC
*arg1
= (wxDC
*) 0 ;
19614 wxRegion
*arg2
= 0 ;
19619 PyObject
* obj0
= 0 ;
19620 PyObject
* obj1
= 0 ;
19621 char * kwnames
[] = {
19622 (char *) "self",(char *) "region", NULL
19625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetClippingRegionAsRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19627 if (!SWIG_IsOK(res1
)) {
19628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetClippingRegionAsRegion" "', expected argument " "1"" of type '" "wxDC *""'");
19630 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19631 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
19632 if (!SWIG_IsOK(res2
)) {
19633 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetClippingRegionAsRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
19636 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetClippingRegionAsRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
19638 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
19640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19641 (arg1
)->SetClippingRegion((wxRegion
const &)*arg2
);
19642 wxPyEndAllowThreads(__tstate
);
19643 if (PyErr_Occurred()) SWIG_fail
;
19645 resultobj
= SWIG_Py_Void();
19652 SWIGINTERN PyObject
*_wrap_DC_SetClippingRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19653 PyObject
*resultobj
= 0;
19654 wxDC
*arg1
= (wxDC
*) 0 ;
19659 PyObject
* obj0
= 0 ;
19660 PyObject
* obj1
= 0 ;
19661 char * kwnames
[] = {
19662 (char *) "self",(char *) "rect", NULL
19665 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetClippingRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19666 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19667 if (!SWIG_IsOK(res1
)) {
19668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetClippingRect" "', expected argument " "1"" of type '" "wxDC *""'");
19670 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19673 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
19676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19677 (arg1
)->SetClippingRegion((wxRect
const &)*arg2
);
19678 wxPyEndAllowThreads(__tstate
);
19679 if (PyErr_Occurred()) SWIG_fail
;
19681 resultobj
= SWIG_Py_Void();
19688 SWIGINTERN PyObject
*_wrap_DC_DrawLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19689 PyObject
*resultobj
= 0;
19690 wxDC
*arg1
= (wxDC
*) 0 ;
19692 wxPoint
*arg3
= (wxPoint
*) 0 ;
19693 int arg4
= (int) 0 ;
19694 int arg5
= (int) 0 ;
19701 PyObject
* obj0
= 0 ;
19702 PyObject
* obj1
= 0 ;
19703 PyObject
* obj2
= 0 ;
19704 PyObject
* obj3
= 0 ;
19705 char * kwnames
[] = {
19706 (char *) "self",(char *) "points",(char *) "xoffset",(char *) "yoffset", NULL
19709 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:DC_DrawLines",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
19710 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19711 if (!SWIG_IsOK(res1
)) {
19712 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawLines" "', expected argument " "1"" of type '" "wxDC *""'");
19714 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19716 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
19717 if (arg3
== NULL
) SWIG_fail
;
19720 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
19721 if (!SWIG_IsOK(ecode4
)) {
19722 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawLines" "', expected argument " "4"" of type '" "int""'");
19724 arg4
= static_cast< int >(val4
);
19727 ecode5
= SWIG_AsVal_int(obj3
, &val5
);
19728 if (!SWIG_IsOK(ecode5
)) {
19729 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawLines" "', expected argument " "5"" of type '" "int""'");
19731 arg5
= static_cast< int >(val5
);
19734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19735 (arg1
)->DrawLines(arg2
,arg3
,arg4
,arg5
);
19736 wxPyEndAllowThreads(__tstate
);
19737 if (PyErr_Occurred()) SWIG_fail
;
19739 resultobj
= SWIG_Py_Void();
19741 if (arg3
) delete [] arg3
;
19746 if (arg3
) delete [] arg3
;
19752 SWIGINTERN PyObject
*_wrap_DC_DrawPolygon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19753 PyObject
*resultobj
= 0;
19754 wxDC
*arg1
= (wxDC
*) 0 ;
19756 wxPoint
*arg3
= (wxPoint
*) 0 ;
19757 int arg4
= (int) 0 ;
19758 int arg5
= (int) 0 ;
19759 int arg6
= (int) wxODDEVEN_RULE
;
19768 PyObject
* obj0
= 0 ;
19769 PyObject
* obj1
= 0 ;
19770 PyObject
* obj2
= 0 ;
19771 PyObject
* obj3
= 0 ;
19772 PyObject
* obj4
= 0 ;
19773 char * kwnames
[] = {
19774 (char *) "self",(char *) "points",(char *) "xoffset",(char *) "yoffset",(char *) "fillStyle", NULL
19777 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:DC_DrawPolygon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19778 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19779 if (!SWIG_IsOK(res1
)) {
19780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawPolygon" "', expected argument " "1"" of type '" "wxDC *""'");
19782 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19784 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
19785 if (arg3
== NULL
) SWIG_fail
;
19788 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
19789 if (!SWIG_IsOK(ecode4
)) {
19790 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawPolygon" "', expected argument " "4"" of type '" "int""'");
19792 arg4
= static_cast< int >(val4
);
19795 ecode5
= SWIG_AsVal_int(obj3
, &val5
);
19796 if (!SWIG_IsOK(ecode5
)) {
19797 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawPolygon" "', expected argument " "5"" of type '" "int""'");
19799 arg5
= static_cast< int >(val5
);
19802 ecode6
= SWIG_AsVal_int(obj4
, &val6
);
19803 if (!SWIG_IsOK(ecode6
)) {
19804 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_DrawPolygon" "', expected argument " "6"" of type '" "int""'");
19806 arg6
= static_cast< int >(val6
);
19809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19810 (arg1
)->DrawPolygon(arg2
,arg3
,arg4
,arg5
,arg6
);
19811 wxPyEndAllowThreads(__tstate
);
19812 if (PyErr_Occurred()) SWIG_fail
;
19814 resultobj
= SWIG_Py_Void();
19816 if (arg3
) delete [] arg3
;
19821 if (arg3
) delete [] arg3
;
19827 SWIGINTERN PyObject
*_wrap_DC_DrawLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19828 PyObject
*resultobj
= 0;
19829 wxDC
*arg1
= (wxDC
*) 0 ;
19830 wxString
*arg2
= 0 ;
19832 int arg4
= (int) wxALIGN_LEFT
|wxALIGN_TOP
;
19833 int arg5
= (int) -1 ;
19836 bool temp2
= false ;
19842 PyObject
* obj0
= 0 ;
19843 PyObject
* obj1
= 0 ;
19844 PyObject
* obj2
= 0 ;
19845 PyObject
* obj3
= 0 ;
19846 PyObject
* obj4
= 0 ;
19847 char * kwnames
[] = {
19848 (char *) "self",(char *) "text",(char *) "rect",(char *) "alignment",(char *) "indexAccel", NULL
19851 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:DC_DrawLabel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19852 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19853 if (!SWIG_IsOK(res1
)) {
19854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawLabel" "', expected argument " "1"" of type '" "wxDC *""'");
19856 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19858 arg2
= wxString_in_helper(obj1
);
19859 if (arg2
== NULL
) SWIG_fail
;
19864 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
19867 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19868 if (!SWIG_IsOK(ecode4
)) {
19869 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DC_DrawLabel" "', expected argument " "4"" of type '" "int""'");
19871 arg4
= static_cast< int >(val4
);
19874 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19875 if (!SWIG_IsOK(ecode5
)) {
19876 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawLabel" "', expected argument " "5"" of type '" "int""'");
19878 arg5
= static_cast< int >(val5
);
19881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19882 (arg1
)->DrawLabel((wxString
const &)*arg2
,(wxRect
const &)*arg3
,arg4
,arg5
);
19883 wxPyEndAllowThreads(__tstate
);
19884 if (PyErr_Occurred()) SWIG_fail
;
19886 resultobj
= SWIG_Py_Void();
19901 SWIGINTERN PyObject
*_wrap_DC_DrawImageLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19902 PyObject
*resultobj
= 0;
19903 wxDC
*arg1
= (wxDC
*) 0 ;
19904 wxString
*arg2
= 0 ;
19905 wxBitmap
*arg3
= 0 ;
19907 int arg5
= (int) wxALIGN_LEFT
|wxALIGN_TOP
;
19908 int arg6
= (int) -1 ;
19912 bool temp2
= false ;
19920 PyObject
* obj0
= 0 ;
19921 PyObject
* obj1
= 0 ;
19922 PyObject
* obj2
= 0 ;
19923 PyObject
* obj3
= 0 ;
19924 PyObject
* obj4
= 0 ;
19925 PyObject
* obj5
= 0 ;
19926 char * kwnames
[] = {
19927 (char *) "self",(char *) "text",(char *) "image",(char *) "rect",(char *) "alignment",(char *) "indexAccel", NULL
19930 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:DC_DrawImageLabel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
19931 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
19932 if (!SWIG_IsOK(res1
)) {
19933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawImageLabel" "', expected argument " "1"" of type '" "wxDC *""'");
19935 arg1
= reinterpret_cast< wxDC
* >(argp1
);
19937 arg2
= wxString_in_helper(obj1
);
19938 if (arg2
== NULL
) SWIG_fail
;
19941 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
19942 if (!SWIG_IsOK(res3
)) {
19943 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DC_DrawImageLabel" "', expected argument " "3"" of type '" "wxBitmap const &""'");
19946 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_DrawImageLabel" "', expected argument " "3"" of type '" "wxBitmap const &""'");
19948 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
19951 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
19954 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19955 if (!SWIG_IsOK(ecode5
)) {
19956 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DC_DrawImageLabel" "', expected argument " "5"" of type '" "int""'");
19958 arg5
= static_cast< int >(val5
);
19961 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
19962 if (!SWIG_IsOK(ecode6
)) {
19963 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "DC_DrawImageLabel" "', expected argument " "6"" of type '" "int""'");
19965 arg6
= static_cast< int >(val6
);
19968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19969 result
= wxDC_DrawImageLabel(arg1
,(wxString
const &)*arg2
,(wxBitmap
const &)*arg3
,(wxRect
const &)*arg4
,arg5
,arg6
);
19970 wxPyEndAllowThreads(__tstate
);
19971 if (PyErr_Occurred()) SWIG_fail
;
19973 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
19988 SWIGINTERN PyObject
*_wrap_DC_DrawSpline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19989 PyObject
*resultobj
= 0;
19990 wxDC
*arg1
= (wxDC
*) 0 ;
19992 wxPoint
*arg3
= (wxPoint
*) 0 ;
19995 PyObject
* obj0
= 0 ;
19996 PyObject
* obj1
= 0 ;
19997 char * kwnames
[] = {
19998 (char *) "self",(char *) "points", NULL
20001 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DrawSpline",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20002 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20003 if (!SWIG_IsOK(res1
)) {
20004 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DrawSpline" "', expected argument " "1"" of type '" "wxDC *""'");
20006 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20008 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
20009 if (arg3
== NULL
) SWIG_fail
;
20012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20013 (arg1
)->DrawSpline(arg2
,arg3
);
20014 wxPyEndAllowThreads(__tstate
);
20015 if (PyErr_Occurred()) SWIG_fail
;
20017 resultobj
= SWIG_Py_Void();
20019 if (arg3
) delete [] arg3
;
20024 if (arg3
) delete [] arg3
;
20030 SWIGINTERN PyObject
*_wrap_DC_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20031 PyObject
*resultobj
= 0;
20032 wxDC
*arg1
= (wxDC
*) 0 ;
20035 PyObject
*swig_obj
[1] ;
20037 if (!args
) SWIG_fail
;
20038 swig_obj
[0] = args
;
20039 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20040 if (!SWIG_IsOK(res1
)) {
20041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_Clear" "', expected argument " "1"" of type '" "wxDC *""'");
20043 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20047 wxPyEndAllowThreads(__tstate
);
20048 if (PyErr_Occurred()) SWIG_fail
;
20050 resultobj
= SWIG_Py_Void();
20057 SWIGINTERN PyObject
*_wrap_DC_StartDoc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20058 PyObject
*resultobj
= 0;
20059 wxDC
*arg1
= (wxDC
*) 0 ;
20060 wxString
*arg2
= 0 ;
20064 bool temp2
= false ;
20065 PyObject
* obj0
= 0 ;
20066 PyObject
* obj1
= 0 ;
20067 char * kwnames
[] = {
20068 (char *) "self",(char *) "message", NULL
20071 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_StartDoc",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20072 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20073 if (!SWIG_IsOK(res1
)) {
20074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_StartDoc" "', expected argument " "1"" of type '" "wxDC *""'");
20076 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20078 arg2
= wxString_in_helper(obj1
);
20079 if (arg2
== NULL
) SWIG_fail
;
20083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20084 result
= (bool)(arg1
)->StartDoc((wxString
const &)*arg2
);
20085 wxPyEndAllowThreads(__tstate
);
20086 if (PyErr_Occurred()) SWIG_fail
;
20089 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20105 SWIGINTERN PyObject
*_wrap_DC_EndDoc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20106 PyObject
*resultobj
= 0;
20107 wxDC
*arg1
= (wxDC
*) 0 ;
20110 PyObject
*swig_obj
[1] ;
20112 if (!args
) SWIG_fail
;
20113 swig_obj
[0] = args
;
20114 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20115 if (!SWIG_IsOK(res1
)) {
20116 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_EndDoc" "', expected argument " "1"" of type '" "wxDC *""'");
20118 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20122 wxPyEndAllowThreads(__tstate
);
20123 if (PyErr_Occurred()) SWIG_fail
;
20125 resultobj
= SWIG_Py_Void();
20132 SWIGINTERN PyObject
*_wrap_DC_StartPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20133 PyObject
*resultobj
= 0;
20134 wxDC
*arg1
= (wxDC
*) 0 ;
20137 PyObject
*swig_obj
[1] ;
20139 if (!args
) SWIG_fail
;
20140 swig_obj
[0] = args
;
20141 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20142 if (!SWIG_IsOK(res1
)) {
20143 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_StartPage" "', expected argument " "1"" of type '" "wxDC *""'");
20145 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20148 (arg1
)->StartPage();
20149 wxPyEndAllowThreads(__tstate
);
20150 if (PyErr_Occurred()) SWIG_fail
;
20152 resultobj
= SWIG_Py_Void();
20159 SWIGINTERN PyObject
*_wrap_DC_EndPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20160 PyObject
*resultobj
= 0;
20161 wxDC
*arg1
= (wxDC
*) 0 ;
20164 PyObject
*swig_obj
[1] ;
20166 if (!args
) SWIG_fail
;
20167 swig_obj
[0] = args
;
20168 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20169 if (!SWIG_IsOK(res1
)) {
20170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_EndPage" "', expected argument " "1"" of type '" "wxDC *""'");
20172 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20176 wxPyEndAllowThreads(__tstate
);
20177 if (PyErr_Occurred()) SWIG_fail
;
20179 resultobj
= SWIG_Py_Void();
20186 SWIGINTERN PyObject
*_wrap_DC_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20187 PyObject
*resultobj
= 0;
20188 wxDC
*arg1
= (wxDC
*) 0 ;
20194 PyObject
* obj0
= 0 ;
20195 PyObject
* obj1
= 0 ;
20196 char * kwnames
[] = {
20197 (char *) "self",(char *) "font", NULL
20200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20202 if (!SWIG_IsOK(res1
)) {
20203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetFont" "', expected argument " "1"" of type '" "wxDC *""'");
20205 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20206 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
20207 if (!SWIG_IsOK(res2
)) {
20208 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
20211 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
20213 arg2
= reinterpret_cast< wxFont
* >(argp2
);
20215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20216 (arg1
)->SetFont((wxFont
const &)*arg2
);
20217 wxPyEndAllowThreads(__tstate
);
20218 if (PyErr_Occurred()) SWIG_fail
;
20220 resultobj
= SWIG_Py_Void();
20227 SWIGINTERN PyObject
*_wrap_DC_SetPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20228 PyObject
*resultobj
= 0;
20229 wxDC
*arg1
= (wxDC
*) 0 ;
20235 PyObject
* obj0
= 0 ;
20236 PyObject
* obj1
= 0 ;
20237 char * kwnames
[] = {
20238 (char *) "self",(char *) "pen", NULL
20241 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetPen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20242 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20243 if (!SWIG_IsOK(res1
)) {
20244 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetPen" "', expected argument " "1"" of type '" "wxDC *""'");
20246 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20247 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPen
, 0 | 0);
20248 if (!SWIG_IsOK(res2
)) {
20249 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
20252 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
20254 arg2
= reinterpret_cast< wxPen
* >(argp2
);
20256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20257 (arg1
)->SetPen((wxPen
const &)*arg2
);
20258 wxPyEndAllowThreads(__tstate
);
20259 if (PyErr_Occurred()) SWIG_fail
;
20261 resultobj
= SWIG_Py_Void();
20268 SWIGINTERN PyObject
*_wrap_DC_SetBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20269 PyObject
*resultobj
= 0;
20270 wxDC
*arg1
= (wxDC
*) 0 ;
20271 wxBrush
*arg2
= 0 ;
20276 PyObject
* obj0
= 0 ;
20277 PyObject
* obj1
= 0 ;
20278 char * kwnames
[] = {
20279 (char *) "self",(char *) "brush", NULL
20282 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetBrush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20283 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20284 if (!SWIG_IsOK(res1
)) {
20285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetBrush" "', expected argument " "1"" of type '" "wxDC *""'");
20287 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20288 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBrush
, 0 | 0);
20289 if (!SWIG_IsOK(res2
)) {
20290 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
20293 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
20295 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
20297 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20298 (arg1
)->SetBrush((wxBrush
const &)*arg2
);
20299 wxPyEndAllowThreads(__tstate
);
20300 if (PyErr_Occurred()) SWIG_fail
;
20302 resultobj
= SWIG_Py_Void();
20309 SWIGINTERN PyObject
*_wrap_DC_SetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20310 PyObject
*resultobj
= 0;
20311 wxDC
*arg1
= (wxDC
*) 0 ;
20312 wxBrush
*arg2
= 0 ;
20317 PyObject
* obj0
= 0 ;
20318 PyObject
* obj1
= 0 ;
20319 char * kwnames
[] = {
20320 (char *) "self",(char *) "brush", NULL
20323 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20324 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20325 if (!SWIG_IsOK(res1
)) {
20326 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetBackground" "', expected argument " "1"" of type '" "wxDC *""'");
20328 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20329 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBrush
, 0 | 0);
20330 if (!SWIG_IsOK(res2
)) {
20331 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetBackground" "', expected argument " "2"" of type '" "wxBrush const &""'");
20334 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetBackground" "', expected argument " "2"" of type '" "wxBrush const &""'");
20336 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
20338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20339 (arg1
)->SetBackground((wxBrush
const &)*arg2
);
20340 wxPyEndAllowThreads(__tstate
);
20341 if (PyErr_Occurred()) SWIG_fail
;
20343 resultobj
= SWIG_Py_Void();
20350 SWIGINTERN PyObject
*_wrap_DC_SetBackgroundMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20351 PyObject
*resultobj
= 0;
20352 wxDC
*arg1
= (wxDC
*) 0 ;
20358 PyObject
* obj0
= 0 ;
20359 PyObject
* obj1
= 0 ;
20360 char * kwnames
[] = {
20361 (char *) "self",(char *) "mode", NULL
20364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetBackgroundMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20365 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20366 if (!SWIG_IsOK(res1
)) {
20367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetBackgroundMode" "', expected argument " "1"" of type '" "wxDC *""'");
20369 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20370 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20371 if (!SWIG_IsOK(ecode2
)) {
20372 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetBackgroundMode" "', expected argument " "2"" of type '" "int""'");
20374 arg2
= static_cast< int >(val2
);
20376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20377 (arg1
)->SetBackgroundMode(arg2
);
20378 wxPyEndAllowThreads(__tstate
);
20379 if (PyErr_Occurred()) SWIG_fail
;
20381 resultobj
= SWIG_Py_Void();
20388 SWIGINTERN PyObject
*_wrap_DC_SetPalette(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20389 PyObject
*resultobj
= 0;
20390 wxDC
*arg1
= (wxDC
*) 0 ;
20391 wxPalette
*arg2
= 0 ;
20396 PyObject
* obj0
= 0 ;
20397 PyObject
* obj1
= 0 ;
20398 char * kwnames
[] = {
20399 (char *) "self",(char *) "palette", NULL
20402 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetPalette",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20403 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20404 if (!SWIG_IsOK(res1
)) {
20405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetPalette" "', expected argument " "1"" of type '" "wxDC *""'");
20407 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20408 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPalette
, 0 | 0);
20409 if (!SWIG_IsOK(res2
)) {
20410 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DC_SetPalette" "', expected argument " "2"" of type '" "wxPalette const &""'");
20413 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DC_SetPalette" "', expected argument " "2"" of type '" "wxPalette const &""'");
20415 arg2
= reinterpret_cast< wxPalette
* >(argp2
);
20417 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20418 (arg1
)->SetPalette((wxPalette
const &)*arg2
);
20419 wxPyEndAllowThreads(__tstate
);
20420 if (PyErr_Occurred()) SWIG_fail
;
20422 resultobj
= SWIG_Py_Void();
20429 SWIGINTERN PyObject
*_wrap_DC_DestroyClippingRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20430 PyObject
*resultobj
= 0;
20431 wxDC
*arg1
= (wxDC
*) 0 ;
20434 PyObject
*swig_obj
[1] ;
20436 if (!args
) SWIG_fail
;
20437 swig_obj
[0] = args
;
20438 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20439 if (!SWIG_IsOK(res1
)) {
20440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DestroyClippingRegion" "', expected argument " "1"" of type '" "wxDC *""'");
20442 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20444 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20445 (arg1
)->DestroyClippingRegion();
20446 wxPyEndAllowThreads(__tstate
);
20447 if (PyErr_Occurred()) SWIG_fail
;
20449 resultobj
= SWIG_Py_Void();
20456 SWIGINTERN PyObject
*_wrap_DC_GetClippingBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20457 PyObject
*resultobj
= 0;
20458 wxDC
*arg1
= (wxDC
*) 0 ;
20459 int *arg2
= (int *) 0 ;
20460 int *arg3
= (int *) 0 ;
20461 int *arg4
= (int *) 0 ;
20462 int *arg5
= (int *) 0 ;
20466 int res2
= SWIG_TMPOBJ
;
20468 int res3
= SWIG_TMPOBJ
;
20470 int res4
= SWIG_TMPOBJ
;
20472 int res5
= SWIG_TMPOBJ
;
20473 PyObject
*swig_obj
[1] ;
20479 if (!args
) SWIG_fail
;
20480 swig_obj
[0] = args
;
20481 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20482 if (!SWIG_IsOK(res1
)) {
20483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetClippingBox" "', expected argument " "1"" of type '" "wxDC const *""'");
20485 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20488 ((wxDC
const *)arg1
)->GetClippingBox(arg2
,arg3
,arg4
,arg5
);
20489 wxPyEndAllowThreads(__tstate
);
20490 if (PyErr_Occurred()) SWIG_fail
;
20492 resultobj
= SWIG_Py_Void();
20493 if (SWIG_IsTmpObj(res2
)) {
20494 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
20496 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20497 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
20499 if (SWIG_IsTmpObj(res3
)) {
20500 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
20502 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20503 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
20505 if (SWIG_IsTmpObj(res4
)) {
20506 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
20508 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20509 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
20511 if (SWIG_IsTmpObj(res5
)) {
20512 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
20514 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20515 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
20523 SWIGINTERN PyObject
*_wrap_DC_GetClippingRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20524 PyObject
*resultobj
= 0;
20525 wxDC
*arg1
= (wxDC
*) 0 ;
20529 PyObject
*swig_obj
[1] ;
20531 if (!args
) SWIG_fail
;
20532 swig_obj
[0] = args
;
20533 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20534 if (!SWIG_IsOK(res1
)) {
20535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetClippingRect" "', expected argument " "1"" of type '" "wxDC *""'");
20537 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20540 result
= wxDC_GetClippingRect(arg1
);
20541 wxPyEndAllowThreads(__tstate
);
20542 if (PyErr_Occurred()) SWIG_fail
;
20544 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
20551 SWIGINTERN PyObject
*_wrap_DC_GetCharHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20552 PyObject
*resultobj
= 0;
20553 wxDC
*arg1
= (wxDC
*) 0 ;
20557 PyObject
*swig_obj
[1] ;
20559 if (!args
) SWIG_fail
;
20560 swig_obj
[0] = args
;
20561 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20562 if (!SWIG_IsOK(res1
)) {
20563 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetCharHeight" "', expected argument " "1"" of type '" "wxDC const *""'");
20565 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20567 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20568 result
= (int)((wxDC
const *)arg1
)->GetCharHeight();
20569 wxPyEndAllowThreads(__tstate
);
20570 if (PyErr_Occurred()) SWIG_fail
;
20572 resultobj
= SWIG_From_int(static_cast< int >(result
));
20579 SWIGINTERN PyObject
*_wrap_DC_GetCharWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20580 PyObject
*resultobj
= 0;
20581 wxDC
*arg1
= (wxDC
*) 0 ;
20585 PyObject
*swig_obj
[1] ;
20587 if (!args
) SWIG_fail
;
20588 swig_obj
[0] = args
;
20589 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20590 if (!SWIG_IsOK(res1
)) {
20591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetCharWidth" "', expected argument " "1"" of type '" "wxDC const *""'");
20593 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20596 result
= (int)((wxDC
const *)arg1
)->GetCharWidth();
20597 wxPyEndAllowThreads(__tstate
);
20598 if (PyErr_Occurred()) SWIG_fail
;
20600 resultobj
= SWIG_From_int(static_cast< int >(result
));
20607 SWIGINTERN PyObject
*_wrap_DC_GetTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20608 PyObject
*resultobj
= 0;
20609 wxDC
*arg1
= (wxDC
*) 0 ;
20610 wxString
*arg2
= 0 ;
20611 int *arg3
= (int *) 0 ;
20612 int *arg4
= (int *) 0 ;
20615 bool temp2
= false ;
20617 int res3
= SWIG_TMPOBJ
;
20619 int res4
= SWIG_TMPOBJ
;
20620 PyObject
* obj0
= 0 ;
20621 PyObject
* obj1
= 0 ;
20622 char * kwnames
[] = {
20623 (char *) "self",(char *) "string", NULL
20628 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_GetTextExtent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20629 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20630 if (!SWIG_IsOK(res1
)) {
20631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetTextExtent" "', expected argument " "1"" of type '" "wxDC *""'");
20633 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20635 arg2
= wxString_in_helper(obj1
);
20636 if (arg2
== NULL
) SWIG_fail
;
20640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20641 (arg1
)->GetTextExtent((wxString
const &)*arg2
,arg3
,arg4
);
20642 wxPyEndAllowThreads(__tstate
);
20643 if (PyErr_Occurred()) SWIG_fail
;
20645 resultobj
= SWIG_Py_Void();
20646 if (SWIG_IsTmpObj(res3
)) {
20647 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
20649 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20650 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
20652 if (SWIG_IsTmpObj(res4
)) {
20653 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
20655 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20656 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
20672 SWIGINTERN PyObject
*_wrap_DC_GetFullTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20673 PyObject
*resultobj
= 0;
20674 wxDC
*arg1
= (wxDC
*) 0 ;
20675 wxString
*arg2
= 0 ;
20676 int *arg3
= (int *) 0 ;
20677 int *arg4
= (int *) 0 ;
20678 int *arg5
= (int *) 0 ;
20679 int *arg6
= (int *) 0 ;
20680 wxFont
*arg7
= (wxFont
*) NULL
;
20683 bool temp2
= false ;
20685 int res3
= SWIG_TMPOBJ
;
20687 int res4
= SWIG_TMPOBJ
;
20689 int res5
= SWIG_TMPOBJ
;
20691 int res6
= SWIG_TMPOBJ
;
20694 PyObject
* obj0
= 0 ;
20695 PyObject
* obj1
= 0 ;
20696 PyObject
* obj2
= 0 ;
20697 char * kwnames
[] = {
20698 (char *) "self",(char *) "string",(char *) "font", NULL
20705 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DC_GetFullTextExtent",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20706 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20707 if (!SWIG_IsOK(res1
)) {
20708 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetFullTextExtent" "', expected argument " "1"" of type '" "wxDC *""'");
20710 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20712 arg2
= wxString_in_helper(obj1
);
20713 if (arg2
== NULL
) SWIG_fail
;
20717 res7
= SWIG_ConvertPtr(obj2
, &argp7
,SWIGTYPE_p_wxFont
, 0 | 0 );
20718 if (!SWIG_IsOK(res7
)) {
20719 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "DC_GetFullTextExtent" "', expected argument " "7"" of type '" "wxFont *""'");
20721 arg7
= reinterpret_cast< wxFont
* >(argp7
);
20724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20725 (arg1
)->GetTextExtent((wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
20726 wxPyEndAllowThreads(__tstate
);
20727 if (PyErr_Occurred()) SWIG_fail
;
20729 resultobj
= SWIG_Py_Void();
20730 if (SWIG_IsTmpObj(res3
)) {
20731 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
20733 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20734 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
20736 if (SWIG_IsTmpObj(res4
)) {
20737 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
20739 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20740 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
20742 if (SWIG_IsTmpObj(res5
)) {
20743 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
20745 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20746 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
20748 if (SWIG_IsTmpObj(res6
)) {
20749 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg6
)));
20751 int new_flags
= SWIG_IsNewObj(res6
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20752 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg6
), SWIGTYPE_p_int
, new_flags
));
20768 SWIGINTERN PyObject
*_wrap_DC_GetMultiLineTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20769 PyObject
*resultobj
= 0;
20770 wxDC
*arg1
= (wxDC
*) 0 ;
20771 wxString
*arg2
= 0 ;
20772 int *arg3
= (int *) 0 ;
20773 int *arg4
= (int *) 0 ;
20774 int *arg5
= (int *) 0 ;
20775 wxFont
*arg6
= (wxFont
*) NULL
;
20778 bool temp2
= false ;
20780 int res3
= SWIG_TMPOBJ
;
20782 int res4
= SWIG_TMPOBJ
;
20784 int res5
= SWIG_TMPOBJ
;
20787 PyObject
* obj0
= 0 ;
20788 PyObject
* obj1
= 0 ;
20789 PyObject
* obj2
= 0 ;
20790 char * kwnames
[] = {
20791 (char *) "self",(char *) "text",(char *) "font", NULL
20797 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:DC_GetMultiLineTextExtent",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20798 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20799 if (!SWIG_IsOK(res1
)) {
20800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetMultiLineTextExtent" "', expected argument " "1"" of type '" "wxDC *""'");
20802 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20804 arg2
= wxString_in_helper(obj1
);
20805 if (arg2
== NULL
) SWIG_fail
;
20809 res6
= SWIG_ConvertPtr(obj2
, &argp6
,SWIGTYPE_p_wxFont
, 0 | 0 );
20810 if (!SWIG_IsOK(res6
)) {
20811 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DC_GetMultiLineTextExtent" "', expected argument " "6"" of type '" "wxFont *""'");
20813 arg6
= reinterpret_cast< wxFont
* >(argp6
);
20816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20817 (arg1
)->GetMultiLineTextExtent((wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
);
20818 wxPyEndAllowThreads(__tstate
);
20819 if (PyErr_Occurred()) SWIG_fail
;
20821 resultobj
= SWIG_Py_Void();
20822 if (SWIG_IsTmpObj(res3
)) {
20823 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
20825 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20826 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
20828 if (SWIG_IsTmpObj(res4
)) {
20829 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
20831 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20832 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
20834 if (SWIG_IsTmpObj(res5
)) {
20835 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
20837 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20838 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
20854 SWIGINTERN PyObject
*_wrap_DC_GetPartialTextExtents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20855 PyObject
*resultobj
= 0;
20856 wxDC
*arg1
= (wxDC
*) 0 ;
20857 wxString
*arg2
= 0 ;
20861 bool temp2
= false ;
20862 PyObject
* obj0
= 0 ;
20863 PyObject
* obj1
= 0 ;
20864 char * kwnames
[] = {
20865 (char *) "self",(char *) "text", NULL
20868 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_GetPartialTextExtents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20869 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20870 if (!SWIG_IsOK(res1
)) {
20871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetPartialTextExtents" "', expected argument " "1"" of type '" "wxDC *""'");
20873 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20875 arg2
= wxString_in_helper(obj1
);
20876 if (arg2
== NULL
) SWIG_fail
;
20880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20881 result
= wxDC_GetPartialTextExtents(arg1
,(wxString
const &)*arg2
);
20882 wxPyEndAllowThreads(__tstate
);
20883 if (PyErr_Occurred()) SWIG_fail
;
20886 resultobj
= wxArrayInt2PyList_helper(result
);
20902 SWIGINTERN PyObject
*_wrap_DC_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20903 PyObject
*resultobj
= 0;
20904 wxDC
*arg1
= (wxDC
*) 0 ;
20908 PyObject
*swig_obj
[1] ;
20910 if (!args
) SWIG_fail
;
20911 swig_obj
[0] = args
;
20912 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20913 if (!SWIG_IsOK(res1
)) {
20914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetSize" "', expected argument " "1"" of type '" "wxDC *""'");
20916 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20919 result
= (arg1
)->GetSize();
20920 wxPyEndAllowThreads(__tstate
);
20921 if (PyErr_Occurred()) SWIG_fail
;
20923 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
20930 SWIGINTERN PyObject
*_wrap_DC_GetSizeTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20931 PyObject
*resultobj
= 0;
20932 wxDC
*arg1
= (wxDC
*) 0 ;
20933 int *arg2
= (int *) 0 ;
20934 int *arg3
= (int *) 0 ;
20938 int res2
= SWIG_TMPOBJ
;
20940 int res3
= SWIG_TMPOBJ
;
20941 PyObject
*swig_obj
[1] ;
20945 if (!args
) SWIG_fail
;
20946 swig_obj
[0] = args
;
20947 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20948 if (!SWIG_IsOK(res1
)) {
20949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetSizeTuple" "', expected argument " "1"" of type '" "wxDC *""'");
20951 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20953 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20954 (arg1
)->GetSize(arg2
,arg3
);
20955 wxPyEndAllowThreads(__tstate
);
20956 if (PyErr_Occurred()) SWIG_fail
;
20958 resultobj
= SWIG_Py_Void();
20959 if (SWIG_IsTmpObj(res2
)) {
20960 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
20962 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20963 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
20965 if (SWIG_IsTmpObj(res3
)) {
20966 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
20968 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
20969 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
20977 SWIGINTERN PyObject
*_wrap_DC_GetSizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20978 PyObject
*resultobj
= 0;
20979 wxDC
*arg1
= (wxDC
*) 0 ;
20983 PyObject
*swig_obj
[1] ;
20985 if (!args
) SWIG_fail
;
20986 swig_obj
[0] = args
;
20987 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
20988 if (!SWIG_IsOK(res1
)) {
20989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetSizeMM" "', expected argument " "1"" of type '" "wxDC const *""'");
20991 arg1
= reinterpret_cast< wxDC
* >(argp1
);
20993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20994 result
= ((wxDC
const *)arg1
)->GetSizeMM();
20995 wxPyEndAllowThreads(__tstate
);
20996 if (PyErr_Occurred()) SWIG_fail
;
20998 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21005 SWIGINTERN PyObject
*_wrap_DC_GetSizeMMTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21006 PyObject
*resultobj
= 0;
21007 wxDC
*arg1
= (wxDC
*) 0 ;
21008 int *arg2
= (int *) 0 ;
21009 int *arg3
= (int *) 0 ;
21013 int res2
= SWIG_TMPOBJ
;
21015 int res3
= SWIG_TMPOBJ
;
21016 PyObject
*swig_obj
[1] ;
21020 if (!args
) SWIG_fail
;
21021 swig_obj
[0] = args
;
21022 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21023 if (!SWIG_IsOK(res1
)) {
21024 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetSizeMMTuple" "', expected argument " "1"" of type '" "wxDC const *""'");
21026 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21029 ((wxDC
const *)arg1
)->GetSizeMM(arg2
,arg3
);
21030 wxPyEndAllowThreads(__tstate
);
21031 if (PyErr_Occurred()) SWIG_fail
;
21033 resultobj
= SWIG_Py_Void();
21034 if (SWIG_IsTmpObj(res2
)) {
21035 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21037 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21038 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21040 if (SWIG_IsTmpObj(res3
)) {
21041 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21043 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21044 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21052 SWIGINTERN PyObject
*_wrap_DC_DeviceToLogicalX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21053 PyObject
*resultobj
= 0;
21054 wxDC
*arg1
= (wxDC
*) 0 ;
21061 PyObject
* obj0
= 0 ;
21062 PyObject
* obj1
= 0 ;
21063 char * kwnames
[] = {
21064 (char *) "self",(char *) "x", NULL
21067 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DeviceToLogicalX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21068 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21069 if (!SWIG_IsOK(res1
)) {
21070 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DeviceToLogicalX" "', expected argument " "1"" of type '" "wxDC const *""'");
21072 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21073 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21074 if (!SWIG_IsOK(ecode2
)) {
21075 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DeviceToLogicalX" "', expected argument " "2"" of type '" "int""'");
21077 arg2
= static_cast< int >(val2
);
21079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21080 result
= (int)((wxDC
const *)arg1
)->DeviceToLogicalX(arg2
);
21081 wxPyEndAllowThreads(__tstate
);
21082 if (PyErr_Occurred()) SWIG_fail
;
21084 resultobj
= SWIG_From_int(static_cast< int >(result
));
21091 SWIGINTERN PyObject
*_wrap_DC_DeviceToLogicalY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21092 PyObject
*resultobj
= 0;
21093 wxDC
*arg1
= (wxDC
*) 0 ;
21100 PyObject
* obj0
= 0 ;
21101 PyObject
* obj1
= 0 ;
21102 char * kwnames
[] = {
21103 (char *) "self",(char *) "y", NULL
21106 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DeviceToLogicalY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21107 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21108 if (!SWIG_IsOK(res1
)) {
21109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DeviceToLogicalY" "', expected argument " "1"" of type '" "wxDC const *""'");
21111 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21112 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21113 if (!SWIG_IsOK(ecode2
)) {
21114 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DeviceToLogicalY" "', expected argument " "2"" of type '" "int""'");
21116 arg2
= static_cast< int >(val2
);
21118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21119 result
= (int)((wxDC
const *)arg1
)->DeviceToLogicalY(arg2
);
21120 wxPyEndAllowThreads(__tstate
);
21121 if (PyErr_Occurred()) SWIG_fail
;
21123 resultobj
= SWIG_From_int(static_cast< int >(result
));
21130 SWIGINTERN PyObject
*_wrap_DC_DeviceToLogicalXRel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21131 PyObject
*resultobj
= 0;
21132 wxDC
*arg1
= (wxDC
*) 0 ;
21139 PyObject
* obj0
= 0 ;
21140 PyObject
* obj1
= 0 ;
21141 char * kwnames
[] = {
21142 (char *) "self",(char *) "x", NULL
21145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DeviceToLogicalXRel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21146 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21147 if (!SWIG_IsOK(res1
)) {
21148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DeviceToLogicalXRel" "', expected argument " "1"" of type '" "wxDC const *""'");
21150 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21151 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21152 if (!SWIG_IsOK(ecode2
)) {
21153 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DeviceToLogicalXRel" "', expected argument " "2"" of type '" "int""'");
21155 arg2
= static_cast< int >(val2
);
21157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21158 result
= (int)((wxDC
const *)arg1
)->DeviceToLogicalXRel(arg2
);
21159 wxPyEndAllowThreads(__tstate
);
21160 if (PyErr_Occurred()) SWIG_fail
;
21162 resultobj
= SWIG_From_int(static_cast< int >(result
));
21169 SWIGINTERN PyObject
*_wrap_DC_DeviceToLogicalYRel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21170 PyObject
*resultobj
= 0;
21171 wxDC
*arg1
= (wxDC
*) 0 ;
21178 PyObject
* obj0
= 0 ;
21179 PyObject
* obj1
= 0 ;
21180 char * kwnames
[] = {
21181 (char *) "self",(char *) "y", NULL
21184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_DeviceToLogicalYRel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21185 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21186 if (!SWIG_IsOK(res1
)) {
21187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_DeviceToLogicalYRel" "', expected argument " "1"" of type '" "wxDC const *""'");
21189 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21190 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21191 if (!SWIG_IsOK(ecode2
)) {
21192 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_DeviceToLogicalYRel" "', expected argument " "2"" of type '" "int""'");
21194 arg2
= static_cast< int >(val2
);
21196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21197 result
= (int)((wxDC
const *)arg1
)->DeviceToLogicalYRel(arg2
);
21198 wxPyEndAllowThreads(__tstate
);
21199 if (PyErr_Occurred()) SWIG_fail
;
21201 resultobj
= SWIG_From_int(static_cast< int >(result
));
21208 SWIGINTERN PyObject
*_wrap_DC_LogicalToDeviceX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21209 PyObject
*resultobj
= 0;
21210 wxDC
*arg1
= (wxDC
*) 0 ;
21217 PyObject
* obj0
= 0 ;
21218 PyObject
* obj1
= 0 ;
21219 char * kwnames
[] = {
21220 (char *) "self",(char *) "x", NULL
21223 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_LogicalToDeviceX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21224 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21225 if (!SWIG_IsOK(res1
)) {
21226 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_LogicalToDeviceX" "', expected argument " "1"" of type '" "wxDC const *""'");
21228 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21229 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21230 if (!SWIG_IsOK(ecode2
)) {
21231 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_LogicalToDeviceX" "', expected argument " "2"" of type '" "int""'");
21233 arg2
= static_cast< int >(val2
);
21235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21236 result
= (int)((wxDC
const *)arg1
)->LogicalToDeviceX(arg2
);
21237 wxPyEndAllowThreads(__tstate
);
21238 if (PyErr_Occurred()) SWIG_fail
;
21240 resultobj
= SWIG_From_int(static_cast< int >(result
));
21247 SWIGINTERN PyObject
*_wrap_DC_LogicalToDeviceY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21248 PyObject
*resultobj
= 0;
21249 wxDC
*arg1
= (wxDC
*) 0 ;
21256 PyObject
* obj0
= 0 ;
21257 PyObject
* obj1
= 0 ;
21258 char * kwnames
[] = {
21259 (char *) "self",(char *) "y", NULL
21262 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_LogicalToDeviceY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21263 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21264 if (!SWIG_IsOK(res1
)) {
21265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_LogicalToDeviceY" "', expected argument " "1"" of type '" "wxDC const *""'");
21267 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21268 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21269 if (!SWIG_IsOK(ecode2
)) {
21270 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_LogicalToDeviceY" "', expected argument " "2"" of type '" "int""'");
21272 arg2
= static_cast< int >(val2
);
21274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21275 result
= (int)((wxDC
const *)arg1
)->LogicalToDeviceY(arg2
);
21276 wxPyEndAllowThreads(__tstate
);
21277 if (PyErr_Occurred()) SWIG_fail
;
21279 resultobj
= SWIG_From_int(static_cast< int >(result
));
21286 SWIGINTERN PyObject
*_wrap_DC_LogicalToDeviceXRel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21287 PyObject
*resultobj
= 0;
21288 wxDC
*arg1
= (wxDC
*) 0 ;
21295 PyObject
* obj0
= 0 ;
21296 PyObject
* obj1
= 0 ;
21297 char * kwnames
[] = {
21298 (char *) "self",(char *) "x", NULL
21301 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_LogicalToDeviceXRel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21302 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21303 if (!SWIG_IsOK(res1
)) {
21304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_LogicalToDeviceXRel" "', expected argument " "1"" of type '" "wxDC const *""'");
21306 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21307 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21308 if (!SWIG_IsOK(ecode2
)) {
21309 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_LogicalToDeviceXRel" "', expected argument " "2"" of type '" "int""'");
21311 arg2
= static_cast< int >(val2
);
21313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21314 result
= (int)((wxDC
const *)arg1
)->LogicalToDeviceXRel(arg2
);
21315 wxPyEndAllowThreads(__tstate
);
21316 if (PyErr_Occurred()) SWIG_fail
;
21318 resultobj
= SWIG_From_int(static_cast< int >(result
));
21325 SWIGINTERN PyObject
*_wrap_DC_LogicalToDeviceYRel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21326 PyObject
*resultobj
= 0;
21327 wxDC
*arg1
= (wxDC
*) 0 ;
21334 PyObject
* obj0
= 0 ;
21335 PyObject
* obj1
= 0 ;
21336 char * kwnames
[] = {
21337 (char *) "self",(char *) "y", NULL
21340 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_LogicalToDeviceYRel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21341 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21342 if (!SWIG_IsOK(res1
)) {
21343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_LogicalToDeviceYRel" "', expected argument " "1"" of type '" "wxDC const *""'");
21345 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21346 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21347 if (!SWIG_IsOK(ecode2
)) {
21348 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_LogicalToDeviceYRel" "', expected argument " "2"" of type '" "int""'");
21350 arg2
= static_cast< int >(val2
);
21352 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21353 result
= (int)((wxDC
const *)arg1
)->LogicalToDeviceYRel(arg2
);
21354 wxPyEndAllowThreads(__tstate
);
21355 if (PyErr_Occurred()) SWIG_fail
;
21357 resultobj
= SWIG_From_int(static_cast< int >(result
));
21364 SWIGINTERN PyObject
*_wrap_DC_CanDrawBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21365 PyObject
*resultobj
= 0;
21366 wxDC
*arg1
= (wxDC
*) 0 ;
21370 PyObject
*swig_obj
[1] ;
21372 if (!args
) SWIG_fail
;
21373 swig_obj
[0] = args
;
21374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21375 if (!SWIG_IsOK(res1
)) {
21376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CanDrawBitmap" "', expected argument " "1"" of type '" "wxDC const *""'");
21378 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21381 result
= (bool)((wxDC
const *)arg1
)->CanDrawBitmap();
21382 wxPyEndAllowThreads(__tstate
);
21383 if (PyErr_Occurred()) SWIG_fail
;
21386 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21394 SWIGINTERN PyObject
*_wrap_DC_CanGetTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21395 PyObject
*resultobj
= 0;
21396 wxDC
*arg1
= (wxDC
*) 0 ;
21400 PyObject
*swig_obj
[1] ;
21402 if (!args
) SWIG_fail
;
21403 swig_obj
[0] = args
;
21404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21405 if (!SWIG_IsOK(res1
)) {
21406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CanGetTextExtent" "', expected argument " "1"" of type '" "wxDC const *""'");
21408 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21411 result
= (bool)((wxDC
const *)arg1
)->CanGetTextExtent();
21412 wxPyEndAllowThreads(__tstate
);
21413 if (PyErr_Occurred()) SWIG_fail
;
21416 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21424 SWIGINTERN PyObject
*_wrap_DC_GetDepth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21425 PyObject
*resultobj
= 0;
21426 wxDC
*arg1
= (wxDC
*) 0 ;
21430 PyObject
*swig_obj
[1] ;
21432 if (!args
) SWIG_fail
;
21433 swig_obj
[0] = args
;
21434 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21435 if (!SWIG_IsOK(res1
)) {
21436 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetDepth" "', expected argument " "1"" of type '" "wxDC const *""'");
21438 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21441 result
= (int)((wxDC
const *)arg1
)->GetDepth();
21442 wxPyEndAllowThreads(__tstate
);
21443 if (PyErr_Occurred()) SWIG_fail
;
21445 resultobj
= SWIG_From_int(static_cast< int >(result
));
21452 SWIGINTERN PyObject
*_wrap_DC_GetPPI(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21453 PyObject
*resultobj
= 0;
21454 wxDC
*arg1
= (wxDC
*) 0 ;
21458 PyObject
*swig_obj
[1] ;
21460 if (!args
) SWIG_fail
;
21461 swig_obj
[0] = args
;
21462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21463 if (!SWIG_IsOK(res1
)) {
21464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetPPI" "', expected argument " "1"" of type '" "wxDC const *""'");
21466 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21469 result
= ((wxDC
const *)arg1
)->GetPPI();
21470 wxPyEndAllowThreads(__tstate
);
21471 if (PyErr_Occurred()) SWIG_fail
;
21473 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21480 SWIGINTERN PyObject
*_wrap_DC_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21481 PyObject
*resultobj
= 0;
21482 wxDC
*arg1
= (wxDC
*) 0 ;
21486 PyObject
*swig_obj
[1] ;
21488 if (!args
) SWIG_fail
;
21489 swig_obj
[0] = args
;
21490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21491 if (!SWIG_IsOK(res1
)) {
21492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_IsOk" "', expected argument " "1"" of type '" "wxDC const *""'");
21494 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21497 result
= (bool)((wxDC
const *)arg1
)->IsOk();
21498 wxPyEndAllowThreads(__tstate
);
21499 if (PyErr_Occurred()) SWIG_fail
;
21502 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21510 SWIGINTERN PyObject
*_wrap_DC_GetBackgroundMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21511 PyObject
*resultobj
= 0;
21512 wxDC
*arg1
= (wxDC
*) 0 ;
21516 PyObject
*swig_obj
[1] ;
21518 if (!args
) SWIG_fail
;
21519 swig_obj
[0] = args
;
21520 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21521 if (!SWIG_IsOK(res1
)) {
21522 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetBackgroundMode" "', expected argument " "1"" of type '" "wxDC const *""'");
21524 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21526 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21527 result
= (int)((wxDC
const *)arg1
)->GetBackgroundMode();
21528 wxPyEndAllowThreads(__tstate
);
21529 if (PyErr_Occurred()) SWIG_fail
;
21531 resultobj
= SWIG_From_int(static_cast< int >(result
));
21538 SWIGINTERN PyObject
*_wrap_DC_GetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21539 PyObject
*resultobj
= 0;
21540 wxDC
*arg1
= (wxDC
*) 0 ;
21541 wxBrush
*result
= 0 ;
21544 PyObject
*swig_obj
[1] ;
21546 if (!args
) SWIG_fail
;
21547 swig_obj
[0] = args
;
21548 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21549 if (!SWIG_IsOK(res1
)) {
21550 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetBackground" "', expected argument " "1"" of type '" "wxDC const *""'");
21552 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21554 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21556 wxBrush
const &_result_ref
= ((wxDC
const *)arg1
)->GetBackground();
21557 result
= (wxBrush
*) &_result_ref
;
21559 wxPyEndAllowThreads(__tstate
);
21560 if (PyErr_Occurred()) SWIG_fail
;
21563 wxBrush
* resultptr
= new wxBrush(*result
);
21564 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBrush
, 1);
21572 SWIGINTERN PyObject
*_wrap_DC_GetBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21573 PyObject
*resultobj
= 0;
21574 wxDC
*arg1
= (wxDC
*) 0 ;
21575 wxBrush
*result
= 0 ;
21578 PyObject
*swig_obj
[1] ;
21580 if (!args
) SWIG_fail
;
21581 swig_obj
[0] = args
;
21582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21583 if (!SWIG_IsOK(res1
)) {
21584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetBrush" "', expected argument " "1"" of type '" "wxDC const *""'");
21586 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21590 wxBrush
const &_result_ref
= ((wxDC
const *)arg1
)->GetBrush();
21591 result
= (wxBrush
*) &_result_ref
;
21593 wxPyEndAllowThreads(__tstate
);
21594 if (PyErr_Occurred()) SWIG_fail
;
21597 wxBrush
* resultptr
= new wxBrush(*result
);
21598 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBrush
, 1);
21606 SWIGINTERN PyObject
*_wrap_DC_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21607 PyObject
*resultobj
= 0;
21608 wxDC
*arg1
= (wxDC
*) 0 ;
21609 wxFont
*result
= 0 ;
21612 PyObject
*swig_obj
[1] ;
21614 if (!args
) SWIG_fail
;
21615 swig_obj
[0] = args
;
21616 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21617 if (!SWIG_IsOK(res1
)) {
21618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetFont" "', expected argument " "1"" of type '" "wxDC const *""'");
21620 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21624 wxFont
const &_result_ref
= ((wxDC
const *)arg1
)->GetFont();
21625 result
= (wxFont
*) &_result_ref
;
21627 wxPyEndAllowThreads(__tstate
);
21628 if (PyErr_Occurred()) SWIG_fail
;
21631 wxFont
* resultptr
= new wxFont(*result
);
21632 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxFont
, 1);
21640 SWIGINTERN PyObject
*_wrap_DC_GetPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21641 PyObject
*resultobj
= 0;
21642 wxDC
*arg1
= (wxDC
*) 0 ;
21643 wxPen
*result
= 0 ;
21646 PyObject
*swig_obj
[1] ;
21648 if (!args
) SWIG_fail
;
21649 swig_obj
[0] = args
;
21650 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21651 if (!SWIG_IsOK(res1
)) {
21652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetPen" "', expected argument " "1"" of type '" "wxDC const *""'");
21654 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21658 wxPen
const &_result_ref
= ((wxDC
const *)arg1
)->GetPen();
21659 result
= (wxPen
*) &_result_ref
;
21661 wxPyEndAllowThreads(__tstate
);
21662 if (PyErr_Occurred()) SWIG_fail
;
21665 wxPen
* resultptr
= new wxPen(*result
);
21666 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxPen
, 1);
21674 SWIGINTERN PyObject
*_wrap_DC_GetTextBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21675 PyObject
*resultobj
= 0;
21676 wxDC
*arg1
= (wxDC
*) 0 ;
21677 wxColour
*result
= 0 ;
21680 PyObject
*swig_obj
[1] ;
21682 if (!args
) SWIG_fail
;
21683 swig_obj
[0] = args
;
21684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21685 if (!SWIG_IsOK(res1
)) {
21686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetTextBackground" "', expected argument " "1"" of type '" "wxDC const *""'");
21688 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21692 wxColour
const &_result_ref
= ((wxDC
const *)arg1
)->GetTextBackground();
21693 result
= (wxColour
*) &_result_ref
;
21695 wxPyEndAllowThreads(__tstate
);
21696 if (PyErr_Occurred()) SWIG_fail
;
21698 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
21705 SWIGINTERN PyObject
*_wrap_DC_GetTextForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21706 PyObject
*resultobj
= 0;
21707 wxDC
*arg1
= (wxDC
*) 0 ;
21708 wxColour
*result
= 0 ;
21711 PyObject
*swig_obj
[1] ;
21713 if (!args
) SWIG_fail
;
21714 swig_obj
[0] = args
;
21715 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21716 if (!SWIG_IsOK(res1
)) {
21717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetTextForeground" "', expected argument " "1"" of type '" "wxDC const *""'");
21719 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21723 wxColour
const &_result_ref
= ((wxDC
const *)arg1
)->GetTextForeground();
21724 result
= (wxColour
*) &_result_ref
;
21726 wxPyEndAllowThreads(__tstate
);
21727 if (PyErr_Occurred()) SWIG_fail
;
21729 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
21736 SWIGINTERN PyObject
*_wrap_DC_SetTextForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21737 PyObject
*resultobj
= 0;
21738 wxDC
*arg1
= (wxDC
*) 0 ;
21739 wxColour
*arg2
= 0 ;
21743 PyObject
* obj0
= 0 ;
21744 PyObject
* obj1
= 0 ;
21745 char * kwnames
[] = {
21746 (char *) "self",(char *) "colour", NULL
21749 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetTextForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21750 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21751 if (!SWIG_IsOK(res1
)) {
21752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetTextForeground" "', expected argument " "1"" of type '" "wxDC *""'");
21754 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21757 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
21760 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21761 (arg1
)->SetTextForeground((wxColour
const &)*arg2
);
21762 wxPyEndAllowThreads(__tstate
);
21763 if (PyErr_Occurred()) SWIG_fail
;
21765 resultobj
= SWIG_Py_Void();
21772 SWIGINTERN PyObject
*_wrap_DC_SetTextBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21773 PyObject
*resultobj
= 0;
21774 wxDC
*arg1
= (wxDC
*) 0 ;
21775 wxColour
*arg2
= 0 ;
21779 PyObject
* obj0
= 0 ;
21780 PyObject
* obj1
= 0 ;
21781 char * kwnames
[] = {
21782 (char *) "self",(char *) "colour", NULL
21785 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetTextBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21786 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21787 if (!SWIG_IsOK(res1
)) {
21788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetTextBackground" "', expected argument " "1"" of type '" "wxDC *""'");
21790 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21793 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
21796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21797 (arg1
)->SetTextBackground((wxColour
const &)*arg2
);
21798 wxPyEndAllowThreads(__tstate
);
21799 if (PyErr_Occurred()) SWIG_fail
;
21801 resultobj
= SWIG_Py_Void();
21808 SWIGINTERN PyObject
*_wrap_DC_GetMapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21809 PyObject
*resultobj
= 0;
21810 wxDC
*arg1
= (wxDC
*) 0 ;
21814 PyObject
*swig_obj
[1] ;
21816 if (!args
) SWIG_fail
;
21817 swig_obj
[0] = args
;
21818 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21819 if (!SWIG_IsOK(res1
)) {
21820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetMapMode" "', expected argument " "1"" of type '" "wxDC const *""'");
21822 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21825 result
= (int)((wxDC
const *)arg1
)->GetMapMode();
21826 wxPyEndAllowThreads(__tstate
);
21827 if (PyErr_Occurred()) SWIG_fail
;
21829 resultobj
= SWIG_From_int(static_cast< int >(result
));
21836 SWIGINTERN PyObject
*_wrap_DC_SetMapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21837 PyObject
*resultobj
= 0;
21838 wxDC
*arg1
= (wxDC
*) 0 ;
21844 PyObject
* obj0
= 0 ;
21845 PyObject
* obj1
= 0 ;
21846 char * kwnames
[] = {
21847 (char *) "self",(char *) "mode", NULL
21850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetMapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21852 if (!SWIG_IsOK(res1
)) {
21853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetMapMode" "', expected argument " "1"" of type '" "wxDC *""'");
21855 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21856 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21857 if (!SWIG_IsOK(ecode2
)) {
21858 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetMapMode" "', expected argument " "2"" of type '" "int""'");
21860 arg2
= static_cast< int >(val2
);
21862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21863 (arg1
)->SetMapMode(arg2
);
21864 wxPyEndAllowThreads(__tstate
);
21865 if (PyErr_Occurred()) SWIG_fail
;
21867 resultobj
= SWIG_Py_Void();
21874 SWIGINTERN PyObject
*_wrap_DC_GetUserScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21875 PyObject
*resultobj
= 0;
21876 wxDC
*arg1
= (wxDC
*) 0 ;
21877 double *arg2
= (double *) 0 ;
21878 double *arg3
= (double *) 0 ;
21882 int res2
= SWIG_TMPOBJ
;
21884 int res3
= SWIG_TMPOBJ
;
21885 PyObject
*swig_obj
[1] ;
21889 if (!args
) SWIG_fail
;
21890 swig_obj
[0] = args
;
21891 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21892 if (!SWIG_IsOK(res1
)) {
21893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetUserScale" "', expected argument " "1"" of type '" "wxDC const *""'");
21895 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21898 ((wxDC
const *)arg1
)->GetUserScale(arg2
,arg3
);
21899 wxPyEndAllowThreads(__tstate
);
21900 if (PyErr_Occurred()) SWIG_fail
;
21902 resultobj
= SWIG_Py_Void();
21903 if (SWIG_IsTmpObj(res2
)) {
21904 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg2
)));
21906 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21907 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_double
, new_flags
));
21909 if (SWIG_IsTmpObj(res3
)) {
21910 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg3
)));
21912 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21913 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_double
, new_flags
));
21921 SWIGINTERN PyObject
*_wrap_DC_SetUserScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21922 PyObject
*resultobj
= 0;
21923 wxDC
*arg1
= (wxDC
*) 0 ;
21932 PyObject
* obj0
= 0 ;
21933 PyObject
* obj1
= 0 ;
21934 PyObject
* obj2
= 0 ;
21935 char * kwnames
[] = {
21936 (char *) "self",(char *) "x",(char *) "y", NULL
21939 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetUserScale",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21940 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21941 if (!SWIG_IsOK(res1
)) {
21942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetUserScale" "', expected argument " "1"" of type '" "wxDC *""'");
21944 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21945 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
21946 if (!SWIG_IsOK(ecode2
)) {
21947 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetUserScale" "', expected argument " "2"" of type '" "double""'");
21949 arg2
= static_cast< double >(val2
);
21950 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
21951 if (!SWIG_IsOK(ecode3
)) {
21952 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetUserScale" "', expected argument " "3"" of type '" "double""'");
21954 arg3
= static_cast< double >(val3
);
21956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21957 (arg1
)->SetUserScale(arg2
,arg3
);
21958 wxPyEndAllowThreads(__tstate
);
21959 if (PyErr_Occurred()) SWIG_fail
;
21961 resultobj
= SWIG_Py_Void();
21968 SWIGINTERN PyObject
*_wrap_DC_GetLogicalScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21969 PyObject
*resultobj
= 0;
21970 wxDC
*arg1
= (wxDC
*) 0 ;
21971 double *arg2
= (double *) 0 ;
21972 double *arg3
= (double *) 0 ;
21976 int res2
= SWIG_TMPOBJ
;
21978 int res3
= SWIG_TMPOBJ
;
21979 PyObject
*swig_obj
[1] ;
21983 if (!args
) SWIG_fail
;
21984 swig_obj
[0] = args
;
21985 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
21986 if (!SWIG_IsOK(res1
)) {
21987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetLogicalScale" "', expected argument " "1"" of type '" "wxDC *""'");
21989 arg1
= reinterpret_cast< wxDC
* >(argp1
);
21991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21992 (arg1
)->GetLogicalScale(arg2
,arg3
);
21993 wxPyEndAllowThreads(__tstate
);
21994 if (PyErr_Occurred()) SWIG_fail
;
21996 resultobj
= SWIG_Py_Void();
21997 if (SWIG_IsTmpObj(res2
)) {
21998 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg2
)));
22000 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22001 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_double
, new_flags
));
22003 if (SWIG_IsTmpObj(res3
)) {
22004 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg3
)));
22006 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22007 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_double
, new_flags
));
22015 SWIGINTERN PyObject
*_wrap_DC_SetLogicalScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22016 PyObject
*resultobj
= 0;
22017 wxDC
*arg1
= (wxDC
*) 0 ;
22026 PyObject
* obj0
= 0 ;
22027 PyObject
* obj1
= 0 ;
22028 PyObject
* obj2
= 0 ;
22029 char * kwnames
[] = {
22030 (char *) "self",(char *) "x",(char *) "y", NULL
22033 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetLogicalScale",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22034 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22035 if (!SWIG_IsOK(res1
)) {
22036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetLogicalScale" "', expected argument " "1"" of type '" "wxDC *""'");
22038 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22039 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
22040 if (!SWIG_IsOK(ecode2
)) {
22041 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetLogicalScale" "', expected argument " "2"" of type '" "double""'");
22043 arg2
= static_cast< double >(val2
);
22044 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
22045 if (!SWIG_IsOK(ecode3
)) {
22046 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetLogicalScale" "', expected argument " "3"" of type '" "double""'");
22048 arg3
= static_cast< double >(val3
);
22050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22051 (arg1
)->SetLogicalScale(arg2
,arg3
);
22052 wxPyEndAllowThreads(__tstate
);
22053 if (PyErr_Occurred()) SWIG_fail
;
22055 resultobj
= SWIG_Py_Void();
22062 SWIGINTERN PyObject
*_wrap_DC_GetLogicalOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22063 PyObject
*resultobj
= 0;
22064 wxDC
*arg1
= (wxDC
*) 0 ;
22068 PyObject
*swig_obj
[1] ;
22070 if (!args
) SWIG_fail
;
22071 swig_obj
[0] = args
;
22072 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22073 if (!SWIG_IsOK(res1
)) {
22074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetLogicalOrigin" "', expected argument " "1"" of type '" "wxDC const *""'");
22076 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22079 result
= ((wxDC
const *)arg1
)->GetLogicalOrigin();
22080 wxPyEndAllowThreads(__tstate
);
22081 if (PyErr_Occurred()) SWIG_fail
;
22083 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
22090 SWIGINTERN PyObject
*_wrap_DC_GetLogicalOriginTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22091 PyObject
*resultobj
= 0;
22092 wxDC
*arg1
= (wxDC
*) 0 ;
22093 int *arg2
= (int *) 0 ;
22094 int *arg3
= (int *) 0 ;
22098 int res2
= SWIG_TMPOBJ
;
22100 int res3
= SWIG_TMPOBJ
;
22101 PyObject
*swig_obj
[1] ;
22105 if (!args
) SWIG_fail
;
22106 swig_obj
[0] = args
;
22107 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22108 if (!SWIG_IsOK(res1
)) {
22109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetLogicalOriginTuple" "', expected argument " "1"" of type '" "wxDC const *""'");
22111 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22114 ((wxDC
const *)arg1
)->GetLogicalOrigin(arg2
,arg3
);
22115 wxPyEndAllowThreads(__tstate
);
22116 if (PyErr_Occurred()) SWIG_fail
;
22118 resultobj
= SWIG_Py_Void();
22119 if (SWIG_IsTmpObj(res2
)) {
22120 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22122 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22123 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22125 if (SWIG_IsTmpObj(res3
)) {
22126 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22128 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22129 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22137 SWIGINTERN PyObject
*_wrap_DC_SetLogicalOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22138 PyObject
*resultobj
= 0;
22139 wxDC
*arg1
= (wxDC
*) 0 ;
22148 PyObject
* obj0
= 0 ;
22149 PyObject
* obj1
= 0 ;
22150 PyObject
* obj2
= 0 ;
22151 char * kwnames
[] = {
22152 (char *) "self",(char *) "x",(char *) "y", NULL
22155 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetLogicalOrigin",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22156 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22157 if (!SWIG_IsOK(res1
)) {
22158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetLogicalOrigin" "', expected argument " "1"" of type '" "wxDC *""'");
22160 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22161 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22162 if (!SWIG_IsOK(ecode2
)) {
22163 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetLogicalOrigin" "', expected argument " "2"" of type '" "int""'");
22165 arg2
= static_cast< int >(val2
);
22166 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22167 if (!SWIG_IsOK(ecode3
)) {
22168 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetLogicalOrigin" "', expected argument " "3"" of type '" "int""'");
22170 arg3
= static_cast< int >(val3
);
22172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22173 (arg1
)->SetLogicalOrigin(arg2
,arg3
);
22174 wxPyEndAllowThreads(__tstate
);
22175 if (PyErr_Occurred()) SWIG_fail
;
22177 resultobj
= SWIG_Py_Void();
22184 SWIGINTERN PyObject
*_wrap_DC_SetLogicalOriginPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22185 PyObject
*resultobj
= 0;
22186 wxDC
*arg1
= (wxDC
*) 0 ;
22187 wxPoint
*arg2
= 0 ;
22191 PyObject
* obj0
= 0 ;
22192 PyObject
* obj1
= 0 ;
22193 char * kwnames
[] = {
22194 (char *) "self",(char *) "point", NULL
22197 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetLogicalOriginPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22198 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22199 if (!SWIG_IsOK(res1
)) {
22200 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetLogicalOriginPoint" "', expected argument " "1"" of type '" "wxDC *""'");
22202 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22205 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
22208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22209 wxDC_SetLogicalOriginPoint(arg1
,(wxPoint
const &)*arg2
);
22210 wxPyEndAllowThreads(__tstate
);
22211 if (PyErr_Occurred()) SWIG_fail
;
22213 resultobj
= SWIG_Py_Void();
22220 SWIGINTERN PyObject
*_wrap_DC_GetDeviceOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22221 PyObject
*resultobj
= 0;
22222 wxDC
*arg1
= (wxDC
*) 0 ;
22226 PyObject
*swig_obj
[1] ;
22228 if (!args
) SWIG_fail
;
22229 swig_obj
[0] = args
;
22230 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22231 if (!SWIG_IsOK(res1
)) {
22232 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetDeviceOrigin" "', expected argument " "1"" of type '" "wxDC const *""'");
22234 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22236 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22237 result
= ((wxDC
const *)arg1
)->GetDeviceOrigin();
22238 wxPyEndAllowThreads(__tstate
);
22239 if (PyErr_Occurred()) SWIG_fail
;
22241 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
22248 SWIGINTERN PyObject
*_wrap_DC_GetDeviceOriginTuple(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22249 PyObject
*resultobj
= 0;
22250 wxDC
*arg1
= (wxDC
*) 0 ;
22251 int *arg2
= (int *) 0 ;
22252 int *arg3
= (int *) 0 ;
22256 int res2
= SWIG_TMPOBJ
;
22258 int res3
= SWIG_TMPOBJ
;
22259 PyObject
*swig_obj
[1] ;
22263 if (!args
) SWIG_fail
;
22264 swig_obj
[0] = args
;
22265 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22266 if (!SWIG_IsOK(res1
)) {
22267 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetDeviceOriginTuple" "', expected argument " "1"" of type '" "wxDC const *""'");
22269 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22272 ((wxDC
const *)arg1
)->GetDeviceOrigin(arg2
,arg3
);
22273 wxPyEndAllowThreads(__tstate
);
22274 if (PyErr_Occurred()) SWIG_fail
;
22276 resultobj
= SWIG_Py_Void();
22277 if (SWIG_IsTmpObj(res2
)) {
22278 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22280 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22281 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22283 if (SWIG_IsTmpObj(res3
)) {
22284 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22286 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22287 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22295 SWIGINTERN PyObject
*_wrap_DC_SetDeviceOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22296 PyObject
*resultobj
= 0;
22297 wxDC
*arg1
= (wxDC
*) 0 ;
22306 PyObject
* obj0
= 0 ;
22307 PyObject
* obj1
= 0 ;
22308 PyObject
* obj2
= 0 ;
22309 char * kwnames
[] = {
22310 (char *) "self",(char *) "x",(char *) "y", NULL
22313 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetDeviceOrigin",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22314 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22315 if (!SWIG_IsOK(res1
)) {
22316 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetDeviceOrigin" "', expected argument " "1"" of type '" "wxDC *""'");
22318 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22319 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22320 if (!SWIG_IsOK(ecode2
)) {
22321 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetDeviceOrigin" "', expected argument " "2"" of type '" "int""'");
22323 arg2
= static_cast< int >(val2
);
22324 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22325 if (!SWIG_IsOK(ecode3
)) {
22326 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetDeviceOrigin" "', expected argument " "3"" of type '" "int""'");
22328 arg3
= static_cast< int >(val3
);
22330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22331 (arg1
)->SetDeviceOrigin(arg2
,arg3
);
22332 wxPyEndAllowThreads(__tstate
);
22333 if (PyErr_Occurred()) SWIG_fail
;
22335 resultobj
= SWIG_Py_Void();
22342 SWIGINTERN PyObject
*_wrap_DC_SetDeviceOriginPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22343 PyObject
*resultobj
= 0;
22344 wxDC
*arg1
= (wxDC
*) 0 ;
22345 wxPoint
*arg2
= 0 ;
22349 PyObject
* obj0
= 0 ;
22350 PyObject
* obj1
= 0 ;
22351 char * kwnames
[] = {
22352 (char *) "self",(char *) "point", NULL
22355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetDeviceOriginPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22357 if (!SWIG_IsOK(res1
)) {
22358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetDeviceOriginPoint" "', expected argument " "1"" of type '" "wxDC *""'");
22360 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22363 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
22366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22367 wxDC_SetDeviceOriginPoint(arg1
,(wxPoint
const &)*arg2
);
22368 wxPyEndAllowThreads(__tstate
);
22369 if (PyErr_Occurred()) SWIG_fail
;
22371 resultobj
= SWIG_Py_Void();
22378 SWIGINTERN PyObject
*_wrap_DC_SetAxisOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22379 PyObject
*resultobj
= 0;
22380 wxDC
*arg1
= (wxDC
*) 0 ;
22389 PyObject
* obj0
= 0 ;
22390 PyObject
* obj1
= 0 ;
22391 PyObject
* obj2
= 0 ;
22392 char * kwnames
[] = {
22393 (char *) "self",(char *) "xLeftRight",(char *) "yBottomUp", NULL
22396 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_SetAxisOrientation",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22397 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22398 if (!SWIG_IsOK(res1
)) {
22399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetAxisOrientation" "', expected argument " "1"" of type '" "wxDC *""'");
22401 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22402 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
22403 if (!SWIG_IsOK(ecode2
)) {
22404 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetAxisOrientation" "', expected argument " "2"" of type '" "bool""'");
22406 arg2
= static_cast< bool >(val2
);
22407 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
22408 if (!SWIG_IsOK(ecode3
)) {
22409 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_SetAxisOrientation" "', expected argument " "3"" of type '" "bool""'");
22411 arg3
= static_cast< bool >(val3
);
22413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22414 (arg1
)->SetAxisOrientation(arg2
,arg3
);
22415 wxPyEndAllowThreads(__tstate
);
22416 if (PyErr_Occurred()) SWIG_fail
;
22418 resultobj
= SWIG_Py_Void();
22425 SWIGINTERN PyObject
*_wrap_DC_GetLogicalFunction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22426 PyObject
*resultobj
= 0;
22427 wxDC
*arg1
= (wxDC
*) 0 ;
22431 PyObject
*swig_obj
[1] ;
22433 if (!args
) SWIG_fail
;
22434 swig_obj
[0] = args
;
22435 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22436 if (!SWIG_IsOK(res1
)) {
22437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetLogicalFunction" "', expected argument " "1"" of type '" "wxDC const *""'");
22439 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22442 result
= (int)((wxDC
const *)arg1
)->GetLogicalFunction();
22443 wxPyEndAllowThreads(__tstate
);
22444 if (PyErr_Occurred()) SWIG_fail
;
22446 resultobj
= SWIG_From_int(static_cast< int >(result
));
22453 SWIGINTERN PyObject
*_wrap_DC_SetLogicalFunction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22454 PyObject
*resultobj
= 0;
22455 wxDC
*arg1
= (wxDC
*) 0 ;
22461 PyObject
* obj0
= 0 ;
22462 PyObject
* obj1
= 0 ;
22463 char * kwnames
[] = {
22464 (char *) "self",(char *) "function", NULL
22467 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetLogicalFunction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22468 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22469 if (!SWIG_IsOK(res1
)) {
22470 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetLogicalFunction" "', expected argument " "1"" of type '" "wxDC *""'");
22472 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22473 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22474 if (!SWIG_IsOK(ecode2
)) {
22475 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetLogicalFunction" "', expected argument " "2"" of type '" "int""'");
22477 arg2
= static_cast< int >(val2
);
22479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22480 (arg1
)->SetLogicalFunction(arg2
);
22481 wxPyEndAllowThreads(__tstate
);
22482 if (PyErr_Occurred()) SWIG_fail
;
22484 resultobj
= SWIG_Py_Void();
22491 SWIGINTERN PyObject
*_wrap_DC_ComputeScaleAndOrigin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22492 PyObject
*resultobj
= 0;
22493 wxDC
*arg1
= (wxDC
*) 0 ;
22496 PyObject
*swig_obj
[1] ;
22498 if (!args
) SWIG_fail
;
22499 swig_obj
[0] = args
;
22500 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22501 if (!SWIG_IsOK(res1
)) {
22502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_ComputeScaleAndOrigin" "', expected argument " "1"" of type '" "wxDC *""'");
22504 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22507 (arg1
)->ComputeScaleAndOrigin();
22508 wxPyEndAllowThreads(__tstate
);
22509 if (PyErr_Occurred()) SWIG_fail
;
22511 resultobj
= SWIG_Py_Void();
22518 SWIGINTERN PyObject
*_wrap_DC_CalcBoundingBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22519 PyObject
*resultobj
= 0;
22520 wxDC
*arg1
= (wxDC
*) 0 ;
22529 PyObject
* obj0
= 0 ;
22530 PyObject
* obj1
= 0 ;
22531 PyObject
* obj2
= 0 ;
22532 char * kwnames
[] = {
22533 (char *) "self",(char *) "x",(char *) "y", NULL
22536 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DC_CalcBoundingBox",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22537 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22538 if (!SWIG_IsOK(res1
)) {
22539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CalcBoundingBox" "', expected argument " "1"" of type '" "wxDC *""'");
22541 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22542 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22543 if (!SWIG_IsOK(ecode2
)) {
22544 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_CalcBoundingBox" "', expected argument " "2"" of type '" "int""'");
22546 arg2
= static_cast< int >(val2
);
22547 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22548 if (!SWIG_IsOK(ecode3
)) {
22549 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DC_CalcBoundingBox" "', expected argument " "3"" of type '" "int""'");
22551 arg3
= static_cast< int >(val3
);
22553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22554 (arg1
)->CalcBoundingBox(arg2
,arg3
);
22555 wxPyEndAllowThreads(__tstate
);
22556 if (PyErr_Occurred()) SWIG_fail
;
22558 resultobj
= SWIG_Py_Void();
22565 SWIGINTERN PyObject
*_wrap_DC_CalcBoundingBoxPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22566 PyObject
*resultobj
= 0;
22567 wxDC
*arg1
= (wxDC
*) 0 ;
22568 wxPoint
*arg2
= 0 ;
22572 PyObject
* obj0
= 0 ;
22573 PyObject
* obj1
= 0 ;
22574 char * kwnames
[] = {
22575 (char *) "self",(char *) "point", NULL
22578 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_CalcBoundingBoxPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22579 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22580 if (!SWIG_IsOK(res1
)) {
22581 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_CalcBoundingBoxPoint" "', expected argument " "1"" of type '" "wxDC *""'");
22583 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22586 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
22589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22590 wxDC_CalcBoundingBoxPoint(arg1
,(wxPoint
const &)*arg2
);
22591 wxPyEndAllowThreads(__tstate
);
22592 if (PyErr_Occurred()) SWIG_fail
;
22594 resultobj
= SWIG_Py_Void();
22601 SWIGINTERN PyObject
*_wrap_DC_ResetBoundingBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22602 PyObject
*resultobj
= 0;
22603 wxDC
*arg1
= (wxDC
*) 0 ;
22606 PyObject
*swig_obj
[1] ;
22608 if (!args
) SWIG_fail
;
22609 swig_obj
[0] = args
;
22610 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22611 if (!SWIG_IsOK(res1
)) {
22612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_ResetBoundingBox" "', expected argument " "1"" of type '" "wxDC *""'");
22614 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22617 (arg1
)->ResetBoundingBox();
22618 wxPyEndAllowThreads(__tstate
);
22619 if (PyErr_Occurred()) SWIG_fail
;
22621 resultobj
= SWIG_Py_Void();
22628 SWIGINTERN PyObject
*_wrap_DC_MinX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22629 PyObject
*resultobj
= 0;
22630 wxDC
*arg1
= (wxDC
*) 0 ;
22634 PyObject
*swig_obj
[1] ;
22636 if (!args
) SWIG_fail
;
22637 swig_obj
[0] = args
;
22638 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22639 if (!SWIG_IsOK(res1
)) {
22640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_MinX" "', expected argument " "1"" of type '" "wxDC const *""'");
22642 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22645 result
= (int)((wxDC
const *)arg1
)->MinX();
22646 wxPyEndAllowThreads(__tstate
);
22647 if (PyErr_Occurred()) SWIG_fail
;
22649 resultobj
= SWIG_From_int(static_cast< int >(result
));
22656 SWIGINTERN PyObject
*_wrap_DC_MaxX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22657 PyObject
*resultobj
= 0;
22658 wxDC
*arg1
= (wxDC
*) 0 ;
22662 PyObject
*swig_obj
[1] ;
22664 if (!args
) SWIG_fail
;
22665 swig_obj
[0] = args
;
22666 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22667 if (!SWIG_IsOK(res1
)) {
22668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_MaxX" "', expected argument " "1"" of type '" "wxDC const *""'");
22670 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22673 result
= (int)((wxDC
const *)arg1
)->MaxX();
22674 wxPyEndAllowThreads(__tstate
);
22675 if (PyErr_Occurred()) SWIG_fail
;
22677 resultobj
= SWIG_From_int(static_cast< int >(result
));
22684 SWIGINTERN PyObject
*_wrap_DC_MinY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22685 PyObject
*resultobj
= 0;
22686 wxDC
*arg1
= (wxDC
*) 0 ;
22690 PyObject
*swig_obj
[1] ;
22692 if (!args
) SWIG_fail
;
22693 swig_obj
[0] = args
;
22694 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22695 if (!SWIG_IsOK(res1
)) {
22696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_MinY" "', expected argument " "1"" of type '" "wxDC const *""'");
22698 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22701 result
= (int)((wxDC
const *)arg1
)->MinY();
22702 wxPyEndAllowThreads(__tstate
);
22703 if (PyErr_Occurred()) SWIG_fail
;
22705 resultobj
= SWIG_From_int(static_cast< int >(result
));
22712 SWIGINTERN PyObject
*_wrap_DC_MaxY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22713 PyObject
*resultobj
= 0;
22714 wxDC
*arg1
= (wxDC
*) 0 ;
22718 PyObject
*swig_obj
[1] ;
22720 if (!args
) SWIG_fail
;
22721 swig_obj
[0] = args
;
22722 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22723 if (!SWIG_IsOK(res1
)) {
22724 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_MaxY" "', expected argument " "1"" of type '" "wxDC const *""'");
22726 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22728 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22729 result
= (int)((wxDC
const *)arg1
)->MaxY();
22730 wxPyEndAllowThreads(__tstate
);
22731 if (PyErr_Occurred()) SWIG_fail
;
22733 resultobj
= SWIG_From_int(static_cast< int >(result
));
22740 SWIGINTERN PyObject
*_wrap_DC_GetBoundingBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22741 PyObject
*resultobj
= 0;
22742 wxDC
*arg1
= (wxDC
*) 0 ;
22743 int *arg2
= (int *) 0 ;
22744 int *arg3
= (int *) 0 ;
22745 int *arg4
= (int *) 0 ;
22746 int *arg5
= (int *) 0 ;
22750 int res2
= SWIG_TMPOBJ
;
22752 int res3
= SWIG_TMPOBJ
;
22754 int res4
= SWIG_TMPOBJ
;
22756 int res5
= SWIG_TMPOBJ
;
22757 PyObject
*swig_obj
[1] ;
22763 if (!args
) SWIG_fail
;
22764 swig_obj
[0] = args
;
22765 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22766 if (!SWIG_IsOK(res1
)) {
22767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetBoundingBox" "', expected argument " "1"" of type '" "wxDC *""'");
22769 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22772 wxDC_GetBoundingBox(arg1
,arg2
,arg3
,arg4
,arg5
);
22773 wxPyEndAllowThreads(__tstate
);
22774 if (PyErr_Occurred()) SWIG_fail
;
22776 resultobj
= SWIG_Py_Void();
22777 if (SWIG_IsTmpObj(res2
)) {
22778 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22780 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22781 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22783 if (SWIG_IsTmpObj(res3
)) {
22784 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22786 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22787 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22789 if (SWIG_IsTmpObj(res4
)) {
22790 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
22792 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22793 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
22795 if (SWIG_IsTmpObj(res5
)) {
22796 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
22798 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22799 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
22807 SWIGINTERN PyObject
*_wrap_DC_GetLayoutDirection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22808 PyObject
*resultobj
= 0;
22809 wxDC
*arg1
= (wxDC
*) 0 ;
22810 wxLayoutDirection result
;
22813 PyObject
*swig_obj
[1] ;
22815 if (!args
) SWIG_fail
;
22816 swig_obj
[0] = args
;
22817 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22818 if (!SWIG_IsOK(res1
)) {
22819 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_GetLayoutDirection" "', expected argument " "1"" of type '" "wxDC const *""'");
22821 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22824 result
= (wxLayoutDirection
)((wxDC
const *)arg1
)->GetLayoutDirection();
22825 wxPyEndAllowThreads(__tstate
);
22826 if (PyErr_Occurred()) SWIG_fail
;
22828 resultobj
= SWIG_From_int(static_cast< int >(result
));
22835 SWIGINTERN PyObject
*_wrap_DC_SetLayoutDirection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22836 PyObject
*resultobj
= 0;
22837 wxDC
*arg1
= (wxDC
*) 0 ;
22838 wxLayoutDirection arg2
;
22843 PyObject
* obj0
= 0 ;
22844 PyObject
* obj1
= 0 ;
22845 char * kwnames
[] = {
22846 (char *) "self",(char *) "dir", NULL
22849 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DC_SetLayoutDirection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22850 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22851 if (!SWIG_IsOK(res1
)) {
22852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC_SetLayoutDirection" "', expected argument " "1"" of type '" "wxDC *""'");
22854 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22855 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22856 if (!SWIG_IsOK(ecode2
)) {
22857 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DC_SetLayoutDirection" "', expected argument " "2"" of type '" "wxLayoutDirection""'");
22859 arg2
= static_cast< wxLayoutDirection
>(val2
);
22861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22862 (arg1
)->SetLayoutDirection(arg2
);
22863 wxPyEndAllowThreads(__tstate
);
22864 if (PyErr_Occurred()) SWIG_fail
;
22866 resultobj
= SWIG_Py_Void();
22873 SWIGINTERN PyObject
*_wrap_DC__DrawPointList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22874 PyObject
*resultobj
= 0;
22875 wxDC
*arg1
= (wxDC
*) 0 ;
22876 PyObject
*arg2
= (PyObject
*) 0 ;
22877 PyObject
*arg3
= (PyObject
*) 0 ;
22878 PyObject
*arg4
= (PyObject
*) 0 ;
22879 PyObject
*result
= 0 ;
22882 PyObject
* obj0
= 0 ;
22883 PyObject
* obj1
= 0 ;
22884 PyObject
* obj2
= 0 ;
22885 PyObject
* obj3
= 0 ;
22886 char * kwnames
[] = {
22887 (char *) "self",(char *) "pyCoords",(char *) "pyPens",(char *) "pyBrushes", NULL
22890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC__DrawPointList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
22891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22892 if (!SWIG_IsOK(res1
)) {
22893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawPointList" "', expected argument " "1"" of type '" "wxDC *""'");
22895 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22901 result
= (PyObject
*)wxDC__DrawPointList(arg1
,arg2
,arg3
,arg4
);
22902 wxPyEndAllowThreads(__tstate
);
22903 if (PyErr_Occurred()) SWIG_fail
;
22905 resultobj
= result
;
22912 SWIGINTERN PyObject
*_wrap_DC__DrawLineList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22913 PyObject
*resultobj
= 0;
22914 wxDC
*arg1
= (wxDC
*) 0 ;
22915 PyObject
*arg2
= (PyObject
*) 0 ;
22916 PyObject
*arg3
= (PyObject
*) 0 ;
22917 PyObject
*arg4
= (PyObject
*) 0 ;
22918 PyObject
*result
= 0 ;
22921 PyObject
* obj0
= 0 ;
22922 PyObject
* obj1
= 0 ;
22923 PyObject
* obj2
= 0 ;
22924 PyObject
* obj3
= 0 ;
22925 char * kwnames
[] = {
22926 (char *) "self",(char *) "pyCoords",(char *) "pyPens",(char *) "pyBrushes", NULL
22929 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC__DrawLineList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
22930 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22931 if (!SWIG_IsOK(res1
)) {
22932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawLineList" "', expected argument " "1"" of type '" "wxDC *""'");
22934 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22940 result
= (PyObject
*)wxDC__DrawLineList(arg1
,arg2
,arg3
,arg4
);
22941 wxPyEndAllowThreads(__tstate
);
22942 if (PyErr_Occurred()) SWIG_fail
;
22944 resultobj
= result
;
22951 SWIGINTERN PyObject
*_wrap_DC__DrawRectangleList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22952 PyObject
*resultobj
= 0;
22953 wxDC
*arg1
= (wxDC
*) 0 ;
22954 PyObject
*arg2
= (PyObject
*) 0 ;
22955 PyObject
*arg3
= (PyObject
*) 0 ;
22956 PyObject
*arg4
= (PyObject
*) 0 ;
22957 PyObject
*result
= 0 ;
22960 PyObject
* obj0
= 0 ;
22961 PyObject
* obj1
= 0 ;
22962 PyObject
* obj2
= 0 ;
22963 PyObject
* obj3
= 0 ;
22964 char * kwnames
[] = {
22965 (char *) "self",(char *) "pyCoords",(char *) "pyPens",(char *) "pyBrushes", NULL
22968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC__DrawRectangleList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
22969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
22970 if (!SWIG_IsOK(res1
)) {
22971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawRectangleList" "', expected argument " "1"" of type '" "wxDC *""'");
22973 arg1
= reinterpret_cast< wxDC
* >(argp1
);
22978 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22979 result
= (PyObject
*)wxDC__DrawRectangleList(arg1
,arg2
,arg3
,arg4
);
22980 wxPyEndAllowThreads(__tstate
);
22981 if (PyErr_Occurred()) SWIG_fail
;
22983 resultobj
= result
;
22990 SWIGINTERN PyObject
*_wrap_DC__DrawEllipseList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22991 PyObject
*resultobj
= 0;
22992 wxDC
*arg1
= (wxDC
*) 0 ;
22993 PyObject
*arg2
= (PyObject
*) 0 ;
22994 PyObject
*arg3
= (PyObject
*) 0 ;
22995 PyObject
*arg4
= (PyObject
*) 0 ;
22996 PyObject
*result
= 0 ;
22999 PyObject
* obj0
= 0 ;
23000 PyObject
* obj1
= 0 ;
23001 PyObject
* obj2
= 0 ;
23002 PyObject
* obj3
= 0 ;
23003 char * kwnames
[] = {
23004 (char *) "self",(char *) "pyCoords",(char *) "pyPens",(char *) "pyBrushes", NULL
23007 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC__DrawEllipseList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23008 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23009 if (!SWIG_IsOK(res1
)) {
23010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawEllipseList" "', expected argument " "1"" of type '" "wxDC *""'");
23012 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23018 result
= (PyObject
*)wxDC__DrawEllipseList(arg1
,arg2
,arg3
,arg4
);
23019 wxPyEndAllowThreads(__tstate
);
23020 if (PyErr_Occurred()) SWIG_fail
;
23022 resultobj
= result
;
23029 SWIGINTERN PyObject
*_wrap_DC__DrawPolygonList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23030 PyObject
*resultobj
= 0;
23031 wxDC
*arg1
= (wxDC
*) 0 ;
23032 PyObject
*arg2
= (PyObject
*) 0 ;
23033 PyObject
*arg3
= (PyObject
*) 0 ;
23034 PyObject
*arg4
= (PyObject
*) 0 ;
23035 PyObject
*result
= 0 ;
23038 PyObject
* obj0
= 0 ;
23039 PyObject
* obj1
= 0 ;
23040 PyObject
* obj2
= 0 ;
23041 PyObject
* obj3
= 0 ;
23042 char * kwnames
[] = {
23043 (char *) "self",(char *) "pyCoords",(char *) "pyPens",(char *) "pyBrushes", NULL
23046 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DC__DrawPolygonList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
23047 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23048 if (!SWIG_IsOK(res1
)) {
23049 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawPolygonList" "', expected argument " "1"" of type '" "wxDC *""'");
23051 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23057 result
= (PyObject
*)wxDC__DrawPolygonList(arg1
,arg2
,arg3
,arg4
);
23058 wxPyEndAllowThreads(__tstate
);
23059 if (PyErr_Occurred()) SWIG_fail
;
23061 resultobj
= result
;
23068 SWIGINTERN PyObject
*_wrap_DC__DrawTextList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23069 PyObject
*resultobj
= 0;
23070 wxDC
*arg1
= (wxDC
*) 0 ;
23071 PyObject
*arg2
= (PyObject
*) 0 ;
23072 PyObject
*arg3
= (PyObject
*) 0 ;
23073 PyObject
*arg4
= (PyObject
*) 0 ;
23074 PyObject
*arg5
= (PyObject
*) 0 ;
23075 PyObject
*result
= 0 ;
23078 PyObject
* obj0
= 0 ;
23079 PyObject
* obj1
= 0 ;
23080 PyObject
* obj2
= 0 ;
23081 PyObject
* obj3
= 0 ;
23082 PyObject
* obj4
= 0 ;
23083 char * kwnames
[] = {
23084 (char *) "self",(char *) "textList",(char *) "pyPoints",(char *) "foregroundList",(char *) "backgroundList", NULL
23087 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DC__DrawTextList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
23088 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23089 if (!SWIG_IsOK(res1
)) {
23090 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DC__DrawTextList" "', expected argument " "1"" of type '" "wxDC *""'");
23092 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23099 result
= (PyObject
*)wxDC__DrawTextList(arg1
,arg2
,arg3
,arg4
,arg5
);
23100 wxPyEndAllowThreads(__tstate
);
23101 if (PyErr_Occurred()) SWIG_fail
;
23103 resultobj
= result
;
23110 SWIGINTERN PyObject
*DC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23112 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23113 SWIG_TypeNewClientData(SWIGTYPE_p_wxDC
, SWIG_NewClientData(obj
));
23114 return SWIG_Py_Void();
23117 SWIGINTERN PyObject
*_wrap_new_MemoryDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23118 PyObject
*resultobj
= 0;
23119 wxBitmap
const &arg1_defvalue
= wxNullBitmap
;
23120 wxBitmap
*arg1
= (wxBitmap
*) &arg1_defvalue
;
23121 wxMemoryDC
*result
= 0 ;
23124 PyObject
* obj0
= 0 ;
23125 char * kwnames
[] = {
23126 (char *) "bitmap", NULL
23129 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_MemoryDC",kwnames
,&obj0
)) SWIG_fail
;
23131 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
23132 if (!SWIG_IsOK(res1
)) {
23133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MemoryDC" "', expected argument " "1"" of type '" "wxBitmap const &""'");
23136 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_MemoryDC" "', expected argument " "1"" of type '" "wxBitmap const &""'");
23138 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
23141 if (!wxPyCheckForApp()) SWIG_fail
;
23142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23143 result
= (wxMemoryDC
*)new wxMemoryDC((wxBitmap
const &)*arg1
);
23144 wxPyEndAllowThreads(__tstate
);
23145 if (PyErr_Occurred()) SWIG_fail
;
23147 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMemoryDC
, SWIG_POINTER_NEW
| 0 );
23154 SWIGINTERN PyObject
*_wrap_new_MemoryDCFromDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23155 PyObject
*resultobj
= 0;
23156 wxDC
*arg1
= (wxDC
*) 0 ;
23157 wxMemoryDC
*result
= 0 ;
23160 PyObject
* obj0
= 0 ;
23161 char * kwnames
[] = {
23162 (char *) "oldDC", NULL
23165 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_MemoryDCFromDC",kwnames
,&obj0
)) SWIG_fail
;
23166 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23167 if (!SWIG_IsOK(res1
)) {
23168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MemoryDCFromDC" "', expected argument " "1"" of type '" "wxDC *""'");
23170 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23172 if (!wxPyCheckForApp()) SWIG_fail
;
23173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23174 result
= (wxMemoryDC
*)new wxMemoryDC(arg1
);
23175 wxPyEndAllowThreads(__tstate
);
23176 if (PyErr_Occurred()) SWIG_fail
;
23178 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMemoryDC
, SWIG_POINTER_OWN
| 0 );
23185 SWIGINTERN PyObject
*_wrap_MemoryDC_SelectObject(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23186 PyObject
*resultobj
= 0;
23187 wxMemoryDC
*arg1
= (wxMemoryDC
*) 0 ;
23188 wxBitmap
*arg2
= 0 ;
23193 PyObject
* obj0
= 0 ;
23194 PyObject
* obj1
= 0 ;
23195 char * kwnames
[] = {
23196 (char *) "self",(char *) "bitmap", NULL
23199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MemoryDC_SelectObject",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMemoryDC
, 0 | 0 );
23201 if (!SWIG_IsOK(res1
)) {
23202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MemoryDC_SelectObject" "', expected argument " "1"" of type '" "wxMemoryDC *""'");
23204 arg1
= reinterpret_cast< wxMemoryDC
* >(argp1
);
23205 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
23206 if (!SWIG_IsOK(res2
)) {
23207 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MemoryDC_SelectObject" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23210 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "MemoryDC_SelectObject" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23212 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
23214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23215 (arg1
)->SelectObject((wxBitmap
const &)*arg2
);
23216 wxPyEndAllowThreads(__tstate
);
23217 if (PyErr_Occurred()) SWIG_fail
;
23219 resultobj
= SWIG_Py_Void();
23226 SWIGINTERN PyObject
*MemoryDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23228 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23229 SWIG_TypeNewClientData(SWIGTYPE_p_wxMemoryDC
, SWIG_NewClientData(obj
));
23230 return SWIG_Py_Void();
23233 SWIGINTERN PyObject
*MemoryDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23234 return SWIG_Python_InitShadowInstance(args
);
23237 SWIGINTERN PyObject
*_wrap_new_ScreenDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23238 PyObject
*resultobj
= 0;
23239 wxScreenDC
*result
= 0 ;
23241 if (!SWIG_Python_UnpackTuple(args
,"new_ScreenDC",0,0,0)) SWIG_fail
;
23243 if (!wxPyCheckForApp()) SWIG_fail
;
23244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23245 result
= (wxScreenDC
*)new wxScreenDC();
23246 wxPyEndAllowThreads(__tstate
);
23247 if (PyErr_Occurred()) SWIG_fail
;
23249 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxScreenDC
, SWIG_POINTER_NEW
| 0 );
23256 SWIGINTERN PyObject
*_wrap_ScreenDC_StartDrawingOnTopWin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23257 PyObject
*resultobj
= 0;
23258 wxScreenDC
*arg1
= (wxScreenDC
*) 0 ;
23259 wxWindow
*arg2
= (wxWindow
*) 0 ;
23265 PyObject
* obj0
= 0 ;
23266 PyObject
* obj1
= 0 ;
23267 char * kwnames
[] = {
23268 (char *) "self",(char *) "window", NULL
23271 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScreenDC_StartDrawingOnTopWin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23272 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScreenDC
, 0 | 0 );
23273 if (!SWIG_IsOK(res1
)) {
23274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScreenDC_StartDrawingOnTopWin" "', expected argument " "1"" of type '" "wxScreenDC *""'");
23276 arg1
= reinterpret_cast< wxScreenDC
* >(argp1
);
23277 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23278 if (!SWIG_IsOK(res2
)) {
23279 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScreenDC_StartDrawingOnTopWin" "', expected argument " "2"" of type '" "wxWindow *""'");
23281 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
23283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23284 result
= (bool)(arg1
)->StartDrawingOnTop(arg2
);
23285 wxPyEndAllowThreads(__tstate
);
23286 if (PyErr_Occurred()) SWIG_fail
;
23289 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23297 SWIGINTERN PyObject
*_wrap_ScreenDC_StartDrawingOnTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23298 PyObject
*resultobj
= 0;
23299 wxScreenDC
*arg1
= (wxScreenDC
*) 0 ;
23300 wxRect
*arg2
= (wxRect
*) NULL
;
23306 PyObject
* obj0
= 0 ;
23307 PyObject
* obj1
= 0 ;
23308 char * kwnames
[] = {
23309 (char *) "self",(char *) "rect", NULL
23312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ScreenDC_StartDrawingOnTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23313 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScreenDC
, 0 | 0 );
23314 if (!SWIG_IsOK(res1
)) {
23315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScreenDC_StartDrawingOnTop" "', expected argument " "1"" of type '" "wxScreenDC *""'");
23317 arg1
= reinterpret_cast< wxScreenDC
* >(argp1
);
23319 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
23320 if (!SWIG_IsOK(res2
)) {
23321 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScreenDC_StartDrawingOnTop" "', expected argument " "2"" of type '" "wxRect *""'");
23323 arg2
= reinterpret_cast< wxRect
* >(argp2
);
23326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23327 result
= (bool)(arg1
)->StartDrawingOnTop(arg2
);
23328 wxPyEndAllowThreads(__tstate
);
23329 if (PyErr_Occurred()) SWIG_fail
;
23332 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23340 SWIGINTERN PyObject
*_wrap_ScreenDC_EndDrawingOnTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23341 PyObject
*resultobj
= 0;
23342 wxScreenDC
*arg1
= (wxScreenDC
*) 0 ;
23346 PyObject
*swig_obj
[1] ;
23348 if (!args
) SWIG_fail
;
23349 swig_obj
[0] = args
;
23350 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScreenDC
, 0 | 0 );
23351 if (!SWIG_IsOK(res1
)) {
23352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScreenDC_EndDrawingOnTop" "', expected argument " "1"" of type '" "wxScreenDC *""'");
23354 arg1
= reinterpret_cast< wxScreenDC
* >(argp1
);
23356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23357 result
= (bool)(arg1
)->EndDrawingOnTop();
23358 wxPyEndAllowThreads(__tstate
);
23359 if (PyErr_Occurred()) SWIG_fail
;
23362 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23370 SWIGINTERN PyObject
*ScreenDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23372 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23373 SWIG_TypeNewClientData(SWIGTYPE_p_wxScreenDC
, SWIG_NewClientData(obj
));
23374 return SWIG_Py_Void();
23377 SWIGINTERN PyObject
*ScreenDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23378 return SWIG_Python_InitShadowInstance(args
);
23381 SWIGINTERN PyObject
*_wrap_new_WindowDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23382 PyObject
*resultobj
= 0;
23383 wxWindow
*arg1
= (wxWindow
*) 0 ;
23384 wxWindowDC
*result
= 0 ;
23387 PyObject
* obj0
= 0 ;
23388 char * kwnames
[] = {
23389 (char *) "win", NULL
23392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_WindowDC",kwnames
,&obj0
)) SWIG_fail
;
23393 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23394 if (!SWIG_IsOK(res1
)) {
23395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_WindowDC" "', expected argument " "1"" of type '" "wxWindow *""'");
23397 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23399 if (!wxPyCheckForApp()) SWIG_fail
;
23400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23401 result
= (wxWindowDC
*)new wxWindowDC(arg1
);
23402 wxPyEndAllowThreads(__tstate
);
23403 if (PyErr_Occurred()) SWIG_fail
;
23405 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxWindowDC
, SWIG_POINTER_NEW
| 0 );
23412 SWIGINTERN PyObject
*WindowDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23414 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23415 SWIG_TypeNewClientData(SWIGTYPE_p_wxWindowDC
, SWIG_NewClientData(obj
));
23416 return SWIG_Py_Void();
23419 SWIGINTERN PyObject
*WindowDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23420 return SWIG_Python_InitShadowInstance(args
);
23423 SWIGINTERN PyObject
*_wrap_new_ClientDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23424 PyObject
*resultobj
= 0;
23425 wxWindow
*arg1
= (wxWindow
*) 0 ;
23426 wxClientDC
*result
= 0 ;
23429 PyObject
* obj0
= 0 ;
23430 char * kwnames
[] = {
23431 (char *) "win", NULL
23434 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_ClientDC",kwnames
,&obj0
)) SWIG_fail
;
23435 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23436 if (!SWIG_IsOK(res1
)) {
23437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ClientDC" "', expected argument " "1"" of type '" "wxWindow *""'");
23439 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23441 if (!wxPyCheckForApp()) SWIG_fail
;
23442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23443 result
= (wxClientDC
*)new wxClientDC(arg1
);
23444 wxPyEndAllowThreads(__tstate
);
23445 if (PyErr_Occurred()) SWIG_fail
;
23447 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxClientDC
, SWIG_POINTER_NEW
| 0 );
23454 SWIGINTERN PyObject
*ClientDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23456 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23457 SWIG_TypeNewClientData(SWIGTYPE_p_wxClientDC
, SWIG_NewClientData(obj
));
23458 return SWIG_Py_Void();
23461 SWIGINTERN PyObject
*ClientDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23462 return SWIG_Python_InitShadowInstance(args
);
23465 SWIGINTERN PyObject
*_wrap_new_PaintDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23466 PyObject
*resultobj
= 0;
23467 wxWindow
*arg1
= (wxWindow
*) 0 ;
23468 wxPaintDC
*result
= 0 ;
23471 PyObject
* obj0
= 0 ;
23472 char * kwnames
[] = {
23473 (char *) "win", NULL
23476 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_PaintDC",kwnames
,&obj0
)) SWIG_fail
;
23477 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23478 if (!SWIG_IsOK(res1
)) {
23479 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PaintDC" "', expected argument " "1"" of type '" "wxWindow *""'");
23481 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23483 if (!wxPyCheckForApp()) SWIG_fail
;
23484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23485 result
= (wxPaintDC
*)new wxPaintDC(arg1
);
23486 wxPyEndAllowThreads(__tstate
);
23487 if (PyErr_Occurred()) SWIG_fail
;
23489 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaintDC
, SWIG_POINTER_NEW
| 0 );
23496 SWIGINTERN PyObject
*PaintDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23498 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23499 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaintDC
, SWIG_NewClientData(obj
));
23500 return SWIG_Py_Void();
23503 SWIGINTERN PyObject
*PaintDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23504 return SWIG_Python_InitShadowInstance(args
);
23507 SWIGINTERN PyObject
*_wrap_new_BufferedDC__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
23508 PyObject
*resultobj
= 0;
23509 wxDC
*arg1
= (wxDC
*) 0 ;
23510 wxBitmap
const &arg2_defvalue
= wxNullBitmap
;
23511 wxBitmap
*arg2
= (wxBitmap
*) &arg2_defvalue
;
23512 int arg3
= (int) wxBUFFER_CLIENT_AREA
;
23513 wxBufferedDC
*result
= 0 ;
23521 if ((nobjs
< 1) || (nobjs
> 3)) SWIG_fail
;
23522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23523 if (!SWIG_IsOK(res1
)) {
23524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BufferedDC" "', expected argument " "1"" of type '" "wxDC *""'");
23526 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23528 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
23529 if (!SWIG_IsOK(res2
)) {
23530 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_BufferedDC" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23533 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BufferedDC" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23535 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
23538 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
23539 if (!SWIG_IsOK(ecode3
)) {
23540 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_BufferedDC" "', expected argument " "3"" of type '" "int""'");
23542 arg3
= static_cast< int >(val3
);
23545 if (!wxPyCheckForApp()) SWIG_fail
;
23546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23547 result
= (wxBufferedDC
*)new wxBufferedDC(arg1
,(wxBitmap
const &)*arg2
,arg3
);
23548 wxPyEndAllowThreads(__tstate
);
23549 if (PyErr_Occurred()) SWIG_fail
;
23551 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBufferedDC
, SWIG_POINTER_NEW
| 0 );
23558 SWIGINTERN PyObject
*_wrap_new_BufferedDC__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
23559 PyObject
*resultobj
= 0;
23560 wxDC
*arg1
= (wxDC
*) 0 ;
23562 int arg3
= (int) wxBUFFER_CLIENT_AREA
;
23563 wxBufferedDC
*result
= 0 ;
23570 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
23571 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDC
, 0 | 0 );
23572 if (!SWIG_IsOK(res1
)) {
23573 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BufferedDC" "', expected argument " "1"" of type '" "wxDC *""'");
23575 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23578 if ( ! wxSize_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
23581 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
23582 if (!SWIG_IsOK(ecode3
)) {
23583 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_BufferedDC" "', expected argument " "3"" of type '" "int""'");
23585 arg3
= static_cast< int >(val3
);
23588 if (!wxPyCheckForApp()) SWIG_fail
;
23589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23590 result
= (wxBufferedDC
*)new wxBufferedDC(arg1
,(wxSize
const &)*arg2
,arg3
);
23591 wxPyEndAllowThreads(__tstate
);
23592 if (PyErr_Occurred()) SWIG_fail
;
23594 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBufferedDC
, SWIG_POINTER_NEW
| 0 );
23601 SWIGINTERN PyObject
*_wrap_new_BufferedDC(PyObject
*self
, PyObject
*args
) {
23605 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_BufferedDC",0,3,argv
))) SWIG_fail
;
23607 if ((argc
>= 1) && (argc
<= 3)) {
23611 int res
= SWIG_ConvertPtr(argv
[1], 0, SWIGTYPE_p_wxBitmap
, 0);
23612 _v
= SWIG_CheckState(res
);
23614 if (!_v
) goto check_1
;
23616 return _wrap_new_BufferedDC__SWIG_0(self
, argc
, argv
);
23620 if ((argc
>= 2) && (argc
<= 3)) {
23621 return _wrap_new_BufferedDC__SWIG_1(self
, argc
, argv
);
23625 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_BufferedDC'");
23630 SWIGINTERN PyObject
*_wrap_delete_BufferedDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23631 PyObject
*resultobj
= 0;
23632 wxBufferedDC
*arg1
= (wxBufferedDC
*) 0 ;
23635 PyObject
*swig_obj
[1] ;
23637 if (!args
) SWIG_fail
;
23638 swig_obj
[0] = args
;
23639 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBufferedDC
, SWIG_POINTER_DISOWN
| 0 );
23640 if (!SWIG_IsOK(res1
)) {
23641 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_BufferedDC" "', expected argument " "1"" of type '" "wxBufferedDC *""'");
23643 arg1
= reinterpret_cast< wxBufferedDC
* >(argp1
);
23645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23648 wxPyEndAllowThreads(__tstate
);
23649 if (PyErr_Occurred()) SWIG_fail
;
23651 resultobj
= SWIG_Py_Void();
23658 SWIGINTERN PyObject
*_wrap_BufferedDC_UnMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23659 PyObject
*resultobj
= 0;
23660 wxBufferedDC
*arg1
= (wxBufferedDC
*) 0 ;
23663 PyObject
*swig_obj
[1] ;
23665 if (!args
) SWIG_fail
;
23666 swig_obj
[0] = args
;
23667 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxBufferedDC
, 0 | 0 );
23668 if (!SWIG_IsOK(res1
)) {
23669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BufferedDC_UnMask" "', expected argument " "1"" of type '" "wxBufferedDC *""'");
23671 arg1
= reinterpret_cast< wxBufferedDC
* >(argp1
);
23673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23675 wxPyEndAllowThreads(__tstate
);
23676 if (PyErr_Occurred()) SWIG_fail
;
23678 resultobj
= SWIG_Py_Void();
23685 SWIGINTERN PyObject
*BufferedDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23687 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23688 SWIG_TypeNewClientData(SWIGTYPE_p_wxBufferedDC
, SWIG_NewClientData(obj
));
23689 return SWIG_Py_Void();
23692 SWIGINTERN PyObject
*BufferedDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23693 return SWIG_Python_InitShadowInstance(args
);
23696 SWIGINTERN PyObject
*_wrap_new_BufferedPaintDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23697 PyObject
*resultobj
= 0;
23698 wxWindow
*arg1
= (wxWindow
*) 0 ;
23699 wxBitmap
const &arg2_defvalue
= wxNullBitmap
;
23700 wxBitmap
*arg2
= (wxBitmap
*) &arg2_defvalue
;
23701 int arg3
= (int) wxBUFFER_CLIENT_AREA
;
23702 wxBufferedPaintDC
*result
= 0 ;
23709 PyObject
* obj0
= 0 ;
23710 PyObject
* obj1
= 0 ;
23711 PyObject
* obj2
= 0 ;
23712 char * kwnames
[] = {
23713 (char *) "window",(char *) "buffer",(char *) "style", NULL
23716 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:new_BufferedPaintDC",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23717 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23718 if (!SWIG_IsOK(res1
)) {
23719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_BufferedPaintDC" "', expected argument " "1"" of type '" "wxWindow *""'");
23721 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23723 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
23724 if (!SWIG_IsOK(res2
)) {
23725 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_BufferedPaintDC" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23728 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_BufferedPaintDC" "', expected argument " "2"" of type '" "wxBitmap const &""'");
23730 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
23733 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23734 if (!SWIG_IsOK(ecode3
)) {
23735 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_BufferedPaintDC" "', expected argument " "3"" of type '" "int""'");
23737 arg3
= static_cast< int >(val3
);
23740 if (!wxPyCheckForApp()) SWIG_fail
;
23741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23742 result
= (wxBufferedPaintDC
*)new wxBufferedPaintDC(arg1
,(wxBitmap
const &)*arg2
,arg3
);
23743 wxPyEndAllowThreads(__tstate
);
23744 if (PyErr_Occurred()) SWIG_fail
;
23746 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBufferedPaintDC
, SWIG_POINTER_NEW
| 0 );
23753 SWIGINTERN PyObject
*BufferedPaintDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23755 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23756 SWIG_TypeNewClientData(SWIGTYPE_p_wxBufferedPaintDC
, SWIG_NewClientData(obj
));
23757 return SWIG_Py_Void();
23760 SWIGINTERN PyObject
*BufferedPaintDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23761 return SWIG_Python_InitShadowInstance(args
);
23764 SWIGINTERN PyObject
*_wrap_new_AutoBufferedPaintDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23765 PyObject
*resultobj
= 0;
23766 wxWindow
*arg1
= (wxWindow
*) 0 ;
23767 wxAutoBufferedPaintDC
*result
= 0 ;
23770 PyObject
* obj0
= 0 ;
23771 char * kwnames
[] = {
23772 (char *) "win", NULL
23775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_AutoBufferedPaintDC",kwnames
,&obj0
)) SWIG_fail
;
23776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23777 if (!SWIG_IsOK(res1
)) {
23778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AutoBufferedPaintDC" "', expected argument " "1"" of type '" "wxWindow *""'");
23780 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23783 result
= (wxAutoBufferedPaintDC
*)new wxAutoBufferedPaintDC(arg1
);
23784 wxPyEndAllowThreads(__tstate
);
23785 if (PyErr_Occurred()) SWIG_fail
;
23787 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAutoBufferedPaintDC
, SWIG_POINTER_NEW
| 0 );
23794 SWIGINTERN PyObject
*AutoBufferedPaintDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23796 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23797 SWIG_TypeNewClientData(SWIGTYPE_p_wxAutoBufferedPaintDC
, SWIG_NewClientData(obj
));
23798 return SWIG_Py_Void();
23801 SWIGINTERN PyObject
*AutoBufferedPaintDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23802 return SWIG_Python_InitShadowInstance(args
);
23805 SWIGINTERN PyObject
*_wrap_AutoBufferedPaintDCFactory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23806 PyObject
*resultobj
= 0;
23807 wxWindow
*arg1
= (wxWindow
*) 0 ;
23811 PyObject
* obj0
= 0 ;
23812 char * kwnames
[] = {
23813 (char *) "window", NULL
23816 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:AutoBufferedPaintDCFactory",kwnames
,&obj0
)) SWIG_fail
;
23817 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
23818 if (!SWIG_IsOK(res1
)) {
23819 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AutoBufferedPaintDCFactory" "', expected argument " "1"" of type '" "wxWindow *""'");
23821 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
23823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23824 result
= (wxDC
*)wxAutoBufferedPaintDCFactory(arg1
);
23825 wxPyEndAllowThreads(__tstate
);
23826 if (PyErr_Occurred()) SWIG_fail
;
23829 resultobj
= wxPyMake_wxObject(result
, (bool)SWIG_POINTER_OWN
);
23837 SWIGINTERN PyObject
*_wrap_new_MirrorDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23838 PyObject
*resultobj
= 0;
23841 wxMirrorDC
*result
= 0 ;
23846 PyObject
* obj0
= 0 ;
23847 PyObject
* obj1
= 0 ;
23848 char * kwnames
[] = {
23849 (char *) "dc",(char *) "mirror", NULL
23852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_MirrorDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23853 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxDC
, 0 );
23854 if (!SWIG_IsOK(res1
)) {
23855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MirrorDC" "', expected argument " "1"" of type '" "wxDC &""'");
23858 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_MirrorDC" "', expected argument " "1"" of type '" "wxDC &""'");
23860 arg1
= reinterpret_cast< wxDC
* >(argp1
);
23861 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
23862 if (!SWIG_IsOK(ecode2
)) {
23863 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MirrorDC" "', expected argument " "2"" of type '" "bool""'");
23865 arg2
= static_cast< bool >(val2
);
23867 if (!wxPyCheckForApp()) SWIG_fail
;
23868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23869 result
= (wxMirrorDC
*)new wxMirrorDC(*arg1
,arg2
);
23870 wxPyEndAllowThreads(__tstate
);
23871 if (PyErr_Occurred()) SWIG_fail
;
23873 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMirrorDC
, SWIG_POINTER_NEW
| 0 );
23880 SWIGINTERN PyObject
*MirrorDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23882 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23883 SWIG_TypeNewClientData(SWIGTYPE_p_wxMirrorDC
, SWIG_NewClientData(obj
));
23884 return SWIG_Py_Void();
23887 SWIGINTERN PyObject
*MirrorDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23888 return SWIG_Python_InitShadowInstance(args
);
23891 SWIGINTERN PyObject
*_wrap_new_PostScriptDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23892 PyObject
*resultobj
= 0;
23893 wxPrintData
*arg1
= 0 ;
23894 wxPostScriptDC
*result
= 0 ;
23897 PyObject
* obj0
= 0 ;
23898 char * kwnames
[] = {
23899 (char *) "printData", NULL
23902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_PostScriptDC",kwnames
,&obj0
)) SWIG_fail
;
23903 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
23904 if (!SWIG_IsOK(res1
)) {
23905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PostScriptDC" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23908 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PostScriptDC" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23910 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23912 if (!wxPyCheckForApp()) SWIG_fail
;
23913 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23914 result
= (wxPostScriptDC
*)new wxPostScriptDC((wxPrintData
const &)*arg1
);
23915 wxPyEndAllowThreads(__tstate
);
23916 if (PyErr_Occurred()) SWIG_fail
;
23918 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPostScriptDC
, SWIG_POINTER_NEW
| 0 );
23925 SWIGINTERN PyObject
*_wrap_PostScriptDC_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23926 PyObject
*resultobj
= 0;
23927 wxPostScriptDC
*arg1
= (wxPostScriptDC
*) 0 ;
23928 wxPrintData
*result
= 0 ;
23931 PyObject
*swig_obj
[1] ;
23933 if (!args
) SWIG_fail
;
23934 swig_obj
[0] = args
;
23935 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPostScriptDC
, 0 | 0 );
23936 if (!SWIG_IsOK(res1
)) {
23937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PostScriptDC_GetPrintData" "', expected argument " "1"" of type '" "wxPostScriptDC *""'");
23939 arg1
= reinterpret_cast< wxPostScriptDC
* >(argp1
);
23941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23943 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
23944 result
= (wxPrintData
*) &_result_ref
;
23946 wxPyEndAllowThreads(__tstate
);
23947 if (PyErr_Occurred()) SWIG_fail
;
23949 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
23956 SWIGINTERN PyObject
*_wrap_PostScriptDC_SetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23957 PyObject
*resultobj
= 0;
23958 wxPostScriptDC
*arg1
= (wxPostScriptDC
*) 0 ;
23959 wxPrintData
*arg2
= 0 ;
23964 PyObject
* obj0
= 0 ;
23965 PyObject
* obj1
= 0 ;
23966 char * kwnames
[] = {
23967 (char *) "self",(char *) "data", NULL
23970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PostScriptDC_SetPrintData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23971 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPostScriptDC
, 0 | 0 );
23972 if (!SWIG_IsOK(res1
)) {
23973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PostScriptDC_SetPrintData" "', expected argument " "1"" of type '" "wxPostScriptDC *""'");
23975 arg1
= reinterpret_cast< wxPostScriptDC
* >(argp1
);
23976 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPrintData
, 0 | 0);
23977 if (!SWIG_IsOK(res2
)) {
23978 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PostScriptDC_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
23981 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PostScriptDC_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
23983 arg2
= reinterpret_cast< wxPrintData
* >(argp2
);
23985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23986 (arg1
)->SetPrintData((wxPrintData
const &)*arg2
);
23987 wxPyEndAllowThreads(__tstate
);
23988 if (PyErr_Occurred()) SWIG_fail
;
23990 resultobj
= SWIG_Py_Void();
23997 SWIGINTERN PyObject
*_wrap_PostScriptDC_SetResolution(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23998 PyObject
*resultobj
= 0;
24002 PyObject
* obj0
= 0 ;
24003 char * kwnames
[] = {
24004 (char *) "ppi", NULL
24007 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PostScriptDC_SetResolution",kwnames
,&obj0
)) SWIG_fail
;
24008 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
24009 if (!SWIG_IsOK(ecode1
)) {
24010 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "PostScriptDC_SetResolution" "', expected argument " "1"" of type '" "int""'");
24012 arg1
= static_cast< int >(val1
);
24014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24015 wxPostScriptDC::SetResolution(arg1
);
24016 wxPyEndAllowThreads(__tstate
);
24017 if (PyErr_Occurred()) SWIG_fail
;
24019 resultobj
= SWIG_Py_Void();
24026 SWIGINTERN PyObject
*_wrap_PostScriptDC_GetResolution(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24027 PyObject
*resultobj
= 0;
24030 if (!SWIG_Python_UnpackTuple(args
,"PostScriptDC_GetResolution",0,0,0)) SWIG_fail
;
24032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24033 result
= (int)wxPostScriptDC::GetResolution();
24034 wxPyEndAllowThreads(__tstate
);
24035 if (PyErr_Occurred()) SWIG_fail
;
24037 resultobj
= SWIG_From_int(static_cast< int >(result
));
24044 SWIGINTERN PyObject
*PostScriptDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24046 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24047 SWIG_TypeNewClientData(SWIGTYPE_p_wxPostScriptDC
, SWIG_NewClientData(obj
));
24048 return SWIG_Py_Void();
24051 SWIGINTERN PyObject
*PostScriptDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24052 return SWIG_Python_InitShadowInstance(args
);
24055 SWIGINTERN PyObject
*_wrap_new_MetaFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24056 PyObject
*resultobj
= 0;
24057 wxString
const &arg1_defvalue
= wxPyEmptyString
;
24058 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
24059 wxMetaFile
*result
= 0 ;
24060 bool temp1
= false ;
24061 PyObject
* obj0
= 0 ;
24062 char * kwnames
[] = {
24063 (char *) "filename", NULL
24066 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_MetaFile",kwnames
,&obj0
)) SWIG_fail
;
24069 arg1
= wxString_in_helper(obj0
);
24070 if (arg1
== NULL
) SWIG_fail
;
24075 if (!wxPyCheckForApp()) SWIG_fail
;
24076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24077 result
= (wxMetaFile
*)new wxMetaFile((wxString
const &)*arg1
);
24078 wxPyEndAllowThreads(__tstate
);
24079 if (PyErr_Occurred()) SWIG_fail
;
24081 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMetaFile
, SWIG_POINTER_NEW
| 0 );
24096 SWIGINTERN PyObject
*_wrap_delete_MetaFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24097 PyObject
*resultobj
= 0;
24098 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24101 PyObject
*swig_obj
[1] ;
24103 if (!args
) SWIG_fail
;
24104 swig_obj
[0] = args
;
24105 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFile
, SWIG_POINTER_DISOWN
| 0 );
24106 if (!SWIG_IsOK(res1
)) {
24107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_MetaFile" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24109 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24111 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24114 wxPyEndAllowThreads(__tstate
);
24115 if (PyErr_Occurred()) SWIG_fail
;
24117 resultobj
= SWIG_Py_Void();
24124 SWIGINTERN PyObject
*_wrap_MetaFile_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24125 PyObject
*resultobj
= 0;
24126 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24130 PyObject
*swig_obj
[1] ;
24132 if (!args
) SWIG_fail
;
24133 swig_obj
[0] = args
;
24134 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24135 if (!SWIG_IsOK(res1
)) {
24136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFile_IsOk" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24138 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24141 result
= (bool)(arg1
)->IsOk();
24142 wxPyEndAllowThreads(__tstate
);
24143 if (PyErr_Occurred()) SWIG_fail
;
24146 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24154 SWIGINTERN PyObject
*_wrap_MetaFile_SetClipboard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24155 PyObject
*resultobj
= 0;
24156 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24157 int arg2
= (int) 0 ;
24158 int arg3
= (int) 0 ;
24166 PyObject
* obj0
= 0 ;
24167 PyObject
* obj1
= 0 ;
24168 PyObject
* obj2
= 0 ;
24169 char * kwnames
[] = {
24170 (char *) "self",(char *) "width",(char *) "height", NULL
24173 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:MetaFile_SetClipboard",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24174 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24175 if (!SWIG_IsOK(res1
)) {
24176 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFile_SetClipboard" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24178 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24180 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24181 if (!SWIG_IsOK(ecode2
)) {
24182 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MetaFile_SetClipboard" "', expected argument " "2"" of type '" "int""'");
24184 arg2
= static_cast< int >(val2
);
24187 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
24188 if (!SWIG_IsOK(ecode3
)) {
24189 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MetaFile_SetClipboard" "', expected argument " "3"" of type '" "int""'");
24191 arg3
= static_cast< int >(val3
);
24194 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24195 result
= (bool)(arg1
)->SetClipboard(arg2
,arg3
);
24196 wxPyEndAllowThreads(__tstate
);
24197 if (PyErr_Occurred()) SWIG_fail
;
24200 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24208 SWIGINTERN PyObject
*_wrap_MetaFile_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24209 PyObject
*resultobj
= 0;
24210 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24214 PyObject
*swig_obj
[1] ;
24216 if (!args
) SWIG_fail
;
24217 swig_obj
[0] = args
;
24218 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24219 if (!SWIG_IsOK(res1
)) {
24220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFile_GetSize" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24222 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24224 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24225 result
= (arg1
)->GetSize();
24226 wxPyEndAllowThreads(__tstate
);
24227 if (PyErr_Occurred()) SWIG_fail
;
24229 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
24236 SWIGINTERN PyObject
*_wrap_MetaFile_GetWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24237 PyObject
*resultobj
= 0;
24238 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24242 PyObject
*swig_obj
[1] ;
24244 if (!args
) SWIG_fail
;
24245 swig_obj
[0] = args
;
24246 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24247 if (!SWIG_IsOK(res1
)) {
24248 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFile_GetWidth" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24250 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24253 result
= (int)(arg1
)->GetWidth();
24254 wxPyEndAllowThreads(__tstate
);
24255 if (PyErr_Occurred()) SWIG_fail
;
24257 resultobj
= SWIG_From_int(static_cast< int >(result
));
24264 SWIGINTERN PyObject
*_wrap_MetaFile_GetHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24265 PyObject
*resultobj
= 0;
24266 wxMetaFile
*arg1
= (wxMetaFile
*) 0 ;
24270 PyObject
*swig_obj
[1] ;
24272 if (!args
) SWIG_fail
;
24273 swig_obj
[0] = args
;
24274 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24275 if (!SWIG_IsOK(res1
)) {
24276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFile_GetHeight" "', expected argument " "1"" of type '" "wxMetaFile *""'");
24278 arg1
= reinterpret_cast< wxMetaFile
* >(argp1
);
24280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24281 result
= (int)(arg1
)->GetHeight();
24282 wxPyEndAllowThreads(__tstate
);
24283 if (PyErr_Occurred()) SWIG_fail
;
24285 resultobj
= SWIG_From_int(static_cast< int >(result
));
24292 SWIGINTERN PyObject
*MetaFile_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24294 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24295 SWIG_TypeNewClientData(SWIGTYPE_p_wxMetaFile
, SWIG_NewClientData(obj
));
24296 return SWIG_Py_Void();
24299 SWIGINTERN PyObject
*MetaFile_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24300 return SWIG_Python_InitShadowInstance(args
);
24303 SWIGINTERN PyObject
*_wrap_new_MetaFileDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24304 PyObject
*resultobj
= 0;
24305 wxString
const &arg1_defvalue
= wxPyEmptyString
;
24306 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
24307 int arg2
= (int) 0 ;
24308 int arg3
= (int) 0 ;
24309 wxString
const &arg4_defvalue
= wxPyEmptyString
;
24310 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
24311 wxMetaFileDC
*result
= 0 ;
24312 bool temp1
= false ;
24317 bool temp4
= false ;
24318 PyObject
* obj0
= 0 ;
24319 PyObject
* obj1
= 0 ;
24320 PyObject
* obj2
= 0 ;
24321 PyObject
* obj3
= 0 ;
24322 char * kwnames
[] = {
24323 (char *) "filename",(char *) "width",(char *) "height",(char *) "description", NULL
24326 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_MetaFileDC",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
24329 arg1
= wxString_in_helper(obj0
);
24330 if (arg1
== NULL
) SWIG_fail
;
24335 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24336 if (!SWIG_IsOK(ecode2
)) {
24337 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MetaFileDC" "', expected argument " "2"" of type '" "int""'");
24339 arg2
= static_cast< int >(val2
);
24342 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
24343 if (!SWIG_IsOK(ecode3
)) {
24344 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_MetaFileDC" "', expected argument " "3"" of type '" "int""'");
24346 arg3
= static_cast< int >(val3
);
24350 arg4
= wxString_in_helper(obj3
);
24351 if (arg4
== NULL
) SWIG_fail
;
24356 if (!wxPyCheckForApp()) SWIG_fail
;
24357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24358 result
= (wxMetaFileDC
*)new wxMetaFileDC((wxString
const &)*arg1
,arg2
,arg3
,(wxString
const &)*arg4
);
24359 wxPyEndAllowThreads(__tstate
);
24360 if (PyErr_Occurred()) SWIG_fail
;
24362 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMetaFileDC
, SWIG_POINTER_NEW
| 0 );
24385 SWIGINTERN PyObject
*_wrap_MetaFileDC_Close(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24386 PyObject
*resultobj
= 0;
24387 wxMetaFileDC
*arg1
= (wxMetaFileDC
*) 0 ;
24388 wxMetaFile
*result
= 0 ;
24391 PyObject
*swig_obj
[1] ;
24393 if (!args
) SWIG_fail
;
24394 swig_obj
[0] = args
;
24395 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMetaFileDC
, 0 | 0 );
24396 if (!SWIG_IsOK(res1
)) {
24397 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MetaFileDC_Close" "', expected argument " "1"" of type '" "wxMetaFileDC *""'");
24399 arg1
= reinterpret_cast< wxMetaFileDC
* >(argp1
);
24401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24402 result
= (wxMetaFile
*)(arg1
)->Close();
24403 wxPyEndAllowThreads(__tstate
);
24404 if (PyErr_Occurred()) SWIG_fail
;
24406 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMetaFile
, 0 | 0 );
24413 SWIGINTERN PyObject
*MetaFileDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24415 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24416 SWIG_TypeNewClientData(SWIGTYPE_p_wxMetaFileDC
, SWIG_NewClientData(obj
));
24417 return SWIG_Py_Void();
24420 SWIGINTERN PyObject
*MetaFileDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24421 return SWIG_Python_InitShadowInstance(args
);
24424 SWIGINTERN PyObject
*_wrap_new_PrinterDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24425 PyObject
*resultobj
= 0;
24426 wxPrintData
*arg1
= 0 ;
24427 wxPrinterDC
*result
= 0 ;
24430 PyObject
* obj0
= 0 ;
24431 char * kwnames
[] = {
24432 (char *) "printData", NULL
24435 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_PrinterDC",kwnames
,&obj0
)) SWIG_fail
;
24436 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
24437 if (!SWIG_IsOK(res1
)) {
24438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrinterDC" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24441 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrinterDC" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24443 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24445 if (!wxPyCheckForApp()) SWIG_fail
;
24446 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24447 result
= (wxPrinterDC
*)new wxPrinterDC((wxPrintData
const &)*arg1
);
24448 wxPyEndAllowThreads(__tstate
);
24449 if (PyErr_Occurred()) SWIG_fail
;
24451 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrinterDC
, SWIG_POINTER_NEW
| 0 );
24458 SWIGINTERN PyObject
*PrinterDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24460 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24461 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrinterDC
, SWIG_NewClientData(obj
));
24462 return SWIG_Py_Void();
24465 SWIGINTERN PyObject
*PrinterDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24466 return SWIG_Python_InitShadowInstance(args
);
24469 SWIGINTERN PyObject
*_wrap_delete_GraphicsPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24470 PyObject
*resultobj
= 0;
24471 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24474 PyObject
*swig_obj
[1] ;
24476 if (!args
) SWIG_fail
;
24477 swig_obj
[0] = args
;
24478 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsPath
, SWIG_POINTER_DISOWN
| 0 );
24479 if (!SWIG_IsOK(res1
)) {
24480 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_GraphicsPath" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24482 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24486 if (PyErr_Occurred()) SWIG_fail
;
24488 resultobj
= SWIG_Py_Void();
24495 SWIGINTERN PyObject
*_wrap_GraphicsPath_MoveToPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24496 PyObject
*resultobj
= 0;
24497 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24506 PyObject
* obj0
= 0 ;
24507 PyObject
* obj1
= 0 ;
24508 PyObject
* obj2
= 0 ;
24509 char * kwnames
[] = {
24510 (char *) "self",(char *) "x",(char *) "y", NULL
24513 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GraphicsPath_MoveToPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24514 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24515 if (!SWIG_IsOK(res1
)) {
24516 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_MoveToPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24518 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24519 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24520 if (!SWIG_IsOK(ecode2
)) {
24521 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_MoveToPoint" "', expected argument " "2"" of type '" "wxDouble""'");
24523 arg2
= static_cast< wxDouble
>(val2
);
24524 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24525 if (!SWIG_IsOK(ecode3
)) {
24526 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_MoveToPoint" "', expected argument " "3"" of type '" "wxDouble""'");
24528 arg3
= static_cast< wxDouble
>(val3
);
24530 (arg1
)->MoveToPoint(arg2
,arg3
);
24531 if (PyErr_Occurred()) SWIG_fail
;
24533 resultobj
= SWIG_Py_Void();
24540 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddLineToPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24541 PyObject
*resultobj
= 0;
24542 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24551 PyObject
* obj0
= 0 ;
24552 PyObject
* obj1
= 0 ;
24553 PyObject
* obj2
= 0 ;
24554 char * kwnames
[] = {
24555 (char *) "self",(char *) "x",(char *) "y", NULL
24558 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GraphicsPath_AddLineToPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
24559 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24560 if (!SWIG_IsOK(res1
)) {
24561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddLineToPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24563 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24564 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24565 if (!SWIG_IsOK(ecode2
)) {
24566 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddLineToPoint" "', expected argument " "2"" of type '" "wxDouble""'");
24568 arg2
= static_cast< wxDouble
>(val2
);
24569 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24570 if (!SWIG_IsOK(ecode3
)) {
24571 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddLineToPoint" "', expected argument " "3"" of type '" "wxDouble""'");
24573 arg3
= static_cast< wxDouble
>(val3
);
24575 (arg1
)->AddLineToPoint(arg2
,arg3
);
24576 if (PyErr_Occurred()) SWIG_fail
;
24578 resultobj
= SWIG_Py_Void();
24585 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddCurveToPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24586 PyObject
*resultobj
= 0;
24587 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24608 PyObject
* obj0
= 0 ;
24609 PyObject
* obj1
= 0 ;
24610 PyObject
* obj2
= 0 ;
24611 PyObject
* obj3
= 0 ;
24612 PyObject
* obj4
= 0 ;
24613 PyObject
* obj5
= 0 ;
24614 PyObject
* obj6
= 0 ;
24615 char * kwnames
[] = {
24616 (char *) "self",(char *) "cx1",(char *) "cy1",(char *) "cx2",(char *) "cy2",(char *) "x",(char *) "y", NULL
24619 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:GraphicsPath_AddCurveToPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
24620 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24621 if (!SWIG_IsOK(res1
)) {
24622 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24624 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24625 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24626 if (!SWIG_IsOK(ecode2
)) {
24627 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "2"" of type '" "wxDouble""'");
24629 arg2
= static_cast< wxDouble
>(val2
);
24630 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24631 if (!SWIG_IsOK(ecode3
)) {
24632 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "3"" of type '" "wxDouble""'");
24634 arg3
= static_cast< wxDouble
>(val3
);
24635 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
24636 if (!SWIG_IsOK(ecode4
)) {
24637 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "4"" of type '" "wxDouble""'");
24639 arg4
= static_cast< wxDouble
>(val4
);
24640 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
24641 if (!SWIG_IsOK(ecode5
)) {
24642 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "5"" of type '" "wxDouble""'");
24644 arg5
= static_cast< wxDouble
>(val5
);
24645 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
24646 if (!SWIG_IsOK(ecode6
)) {
24647 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "6"" of type '" "wxDouble""'");
24649 arg6
= static_cast< wxDouble
>(val6
);
24650 ecode7
= SWIG_AsVal_double(obj6
, &val7
);
24651 if (!SWIG_IsOK(ecode7
)) {
24652 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "GraphicsPath_AddCurveToPoint" "', expected argument " "7"" of type '" "wxDouble""'");
24654 arg7
= static_cast< wxDouble
>(val7
);
24656 (arg1
)->AddCurveToPoint(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
24657 if (PyErr_Occurred()) SWIG_fail
;
24659 resultobj
= SWIG_Py_Void();
24666 SWIGINTERN PyObject
*_wrap_GraphicsPath_CloseSubpath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24667 PyObject
*resultobj
= 0;
24668 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24671 PyObject
*swig_obj
[1] ;
24673 if (!args
) SWIG_fail
;
24674 swig_obj
[0] = args
;
24675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24676 if (!SWIG_IsOK(res1
)) {
24677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_CloseSubpath" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24679 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24681 (arg1
)->CloseSubpath();
24682 if (PyErr_Occurred()) SWIG_fail
;
24684 resultobj
= SWIG_Py_Void();
24691 SWIGINTERN PyObject
*_wrap_GraphicsPath_GetCurrentPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24692 PyObject
*resultobj
= 0;
24693 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24697 PyObject
*swig_obj
[1] ;
24699 if (!args
) SWIG_fail
;
24700 swig_obj
[0] = args
;
24701 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24702 if (!SWIG_IsOK(res1
)) {
24703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_GetCurrentPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24705 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24707 result
= (arg1
)->GetCurrentPoint();
24708 if (PyErr_Occurred()) SWIG_fail
;
24710 resultobj
= SWIG_NewPointerObj((new wxPoint2D(static_cast< const wxPoint2D
& >(result
))), SWIGTYPE_p_wxPoint2D
, SWIG_POINTER_OWN
| 0 );
24717 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddArc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24718 PyObject
*resultobj
= 0;
24719 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24740 PyObject
* obj0
= 0 ;
24741 PyObject
* obj1
= 0 ;
24742 PyObject
* obj2
= 0 ;
24743 PyObject
* obj3
= 0 ;
24744 PyObject
* obj4
= 0 ;
24745 PyObject
* obj5
= 0 ;
24746 PyObject
* obj6
= 0 ;
24747 char * kwnames
[] = {
24748 (char *) "self",(char *) "x",(char *) "y",(char *) "r",(char *) "startAngle",(char *) "endAngle",(char *) "clockwise", NULL
24751 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:GraphicsPath_AddArc",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
24752 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24753 if (!SWIG_IsOK(res1
)) {
24754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddArc" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24756 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24757 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24758 if (!SWIG_IsOK(ecode2
)) {
24759 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddArc" "', expected argument " "2"" of type '" "wxDouble""'");
24761 arg2
= static_cast< wxDouble
>(val2
);
24762 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24763 if (!SWIG_IsOK(ecode3
)) {
24764 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddArc" "', expected argument " "3"" of type '" "wxDouble""'");
24766 arg3
= static_cast< wxDouble
>(val3
);
24767 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
24768 if (!SWIG_IsOK(ecode4
)) {
24769 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddArc" "', expected argument " "4"" of type '" "wxDouble""'");
24771 arg4
= static_cast< wxDouble
>(val4
);
24772 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
24773 if (!SWIG_IsOK(ecode5
)) {
24774 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsPath_AddArc" "', expected argument " "5"" of type '" "wxDouble""'");
24776 arg5
= static_cast< wxDouble
>(val5
);
24777 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
24778 if (!SWIG_IsOK(ecode6
)) {
24779 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsPath_AddArc" "', expected argument " "6"" of type '" "wxDouble""'");
24781 arg6
= static_cast< wxDouble
>(val6
);
24782 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
24783 if (!SWIG_IsOK(ecode7
)) {
24784 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "GraphicsPath_AddArc" "', expected argument " "7"" of type '" "bool""'");
24786 arg7
= static_cast< bool >(val7
);
24788 (arg1
)->AddArc(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
24789 if (PyErr_Occurred()) SWIG_fail
;
24791 resultobj
= SWIG_Py_Void();
24798 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddQuadCurveToPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24799 PyObject
*resultobj
= 0;
24800 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24815 PyObject
* obj0
= 0 ;
24816 PyObject
* obj1
= 0 ;
24817 PyObject
* obj2
= 0 ;
24818 PyObject
* obj3
= 0 ;
24819 PyObject
* obj4
= 0 ;
24820 char * kwnames
[] = {
24821 (char *) "self",(char *) "cx",(char *) "cy",(char *) "x",(char *) "y", NULL
24824 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsPath_AddQuadCurveToPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
24825 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24826 if (!SWIG_IsOK(res1
)) {
24827 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddQuadCurveToPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24829 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24830 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24831 if (!SWIG_IsOK(ecode2
)) {
24832 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddQuadCurveToPoint" "', expected argument " "2"" of type '" "wxDouble""'");
24834 arg2
= static_cast< wxDouble
>(val2
);
24835 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24836 if (!SWIG_IsOK(ecode3
)) {
24837 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddQuadCurveToPoint" "', expected argument " "3"" of type '" "wxDouble""'");
24839 arg3
= static_cast< wxDouble
>(val3
);
24840 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
24841 if (!SWIG_IsOK(ecode4
)) {
24842 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddQuadCurveToPoint" "', expected argument " "4"" of type '" "wxDouble""'");
24844 arg4
= static_cast< wxDouble
>(val4
);
24845 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
24846 if (!SWIG_IsOK(ecode5
)) {
24847 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsPath_AddQuadCurveToPoint" "', expected argument " "5"" of type '" "wxDouble""'");
24849 arg5
= static_cast< wxDouble
>(val5
);
24851 (arg1
)->AddQuadCurveToPoint(arg2
,arg3
,arg4
,arg5
);
24852 if (PyErr_Occurred()) SWIG_fail
;
24854 resultobj
= SWIG_Py_Void();
24861 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24862 PyObject
*resultobj
= 0;
24863 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24878 PyObject
* obj0
= 0 ;
24879 PyObject
* obj1
= 0 ;
24880 PyObject
* obj2
= 0 ;
24881 PyObject
* obj3
= 0 ;
24882 PyObject
* obj4
= 0 ;
24883 char * kwnames
[] = {
24884 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
24887 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsPath_AddRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
24888 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24889 if (!SWIG_IsOK(res1
)) {
24890 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddRectangle" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24892 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24893 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24894 if (!SWIG_IsOK(ecode2
)) {
24895 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddRectangle" "', expected argument " "2"" of type '" "wxDouble""'");
24897 arg2
= static_cast< wxDouble
>(val2
);
24898 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24899 if (!SWIG_IsOK(ecode3
)) {
24900 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddRectangle" "', expected argument " "3"" of type '" "wxDouble""'");
24902 arg3
= static_cast< wxDouble
>(val3
);
24903 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
24904 if (!SWIG_IsOK(ecode4
)) {
24905 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddRectangle" "', expected argument " "4"" of type '" "wxDouble""'");
24907 arg4
= static_cast< wxDouble
>(val4
);
24908 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
24909 if (!SWIG_IsOK(ecode5
)) {
24910 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsPath_AddRectangle" "', expected argument " "5"" of type '" "wxDouble""'");
24912 arg5
= static_cast< wxDouble
>(val5
);
24914 (arg1
)->AddRectangle(arg2
,arg3
,arg4
,arg5
);
24915 if (PyErr_Occurred()) SWIG_fail
;
24917 resultobj
= SWIG_Py_Void();
24924 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddCircle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24925 PyObject
*resultobj
= 0;
24926 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24938 PyObject
* obj0
= 0 ;
24939 PyObject
* obj1
= 0 ;
24940 PyObject
* obj2
= 0 ;
24941 PyObject
* obj3
= 0 ;
24942 char * kwnames
[] = {
24943 (char *) "self",(char *) "x",(char *) "y",(char *) "r", NULL
24946 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:GraphicsPath_AddCircle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
24947 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
24948 if (!SWIG_IsOK(res1
)) {
24949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddCircle" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
24951 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
24952 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
24953 if (!SWIG_IsOK(ecode2
)) {
24954 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddCircle" "', expected argument " "2"" of type '" "wxDouble""'");
24956 arg2
= static_cast< wxDouble
>(val2
);
24957 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
24958 if (!SWIG_IsOK(ecode3
)) {
24959 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddCircle" "', expected argument " "3"" of type '" "wxDouble""'");
24961 arg3
= static_cast< wxDouble
>(val3
);
24962 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
24963 if (!SWIG_IsOK(ecode4
)) {
24964 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddCircle" "', expected argument " "4"" of type '" "wxDouble""'");
24966 arg4
= static_cast< wxDouble
>(val4
);
24968 (arg1
)->AddCircle(arg2
,arg3
,arg4
);
24969 if (PyErr_Occurred()) SWIG_fail
;
24971 resultobj
= SWIG_Py_Void();
24978 SWIGINTERN PyObject
*_wrap_GraphicsPath_AddArcToPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24979 PyObject
*resultobj
= 0;
24980 wxGraphicsPath
*arg1
= (wxGraphicsPath
*) 0 ;
24998 PyObject
* obj0
= 0 ;
24999 PyObject
* obj1
= 0 ;
25000 PyObject
* obj2
= 0 ;
25001 PyObject
* obj3
= 0 ;
25002 PyObject
* obj4
= 0 ;
25003 PyObject
* obj5
= 0 ;
25004 char * kwnames
[] = {
25005 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2",(char *) "r", NULL
25008 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:GraphicsPath_AddArcToPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
25009 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
25010 if (!SWIG_IsOK(res1
)) {
25011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "1"" of type '" "wxGraphicsPath *""'");
25013 arg1
= reinterpret_cast< wxGraphicsPath
* >(argp1
);
25014 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25015 if (!SWIG_IsOK(ecode2
)) {
25016 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "2"" of type '" "wxDouble""'");
25018 arg2
= static_cast< wxDouble
>(val2
);
25019 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25020 if (!SWIG_IsOK(ecode3
)) {
25021 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "3"" of type '" "wxDouble""'");
25023 arg3
= static_cast< wxDouble
>(val3
);
25024 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
25025 if (!SWIG_IsOK(ecode4
)) {
25026 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "4"" of type '" "wxDouble""'");
25028 arg4
= static_cast< wxDouble
>(val4
);
25029 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
25030 if (!SWIG_IsOK(ecode5
)) {
25031 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "5"" of type '" "wxDouble""'");
25033 arg5
= static_cast< wxDouble
>(val5
);
25034 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
25035 if (!SWIG_IsOK(ecode6
)) {
25036 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsPath_AddArcToPoint" "', expected argument " "6"" of type '" "wxDouble""'");
25038 arg6
= static_cast< wxDouble
>(val6
);
25040 (arg1
)->AddArcToPoint(arg2
,arg3
,arg4
,arg5
,arg6
);
25041 if (PyErr_Occurred()) SWIG_fail
;
25043 resultobj
= SWIG_Py_Void();
25050 SWIGINTERN PyObject
*GraphicsPath_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25052 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
25053 SWIG_TypeNewClientData(SWIGTYPE_p_wxGraphicsPath
, SWIG_NewClientData(obj
));
25054 return SWIG_Py_Void();
25057 SWIGINTERN PyObject
*_wrap_delete_GraphicsContext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25058 PyObject
*resultobj
= 0;
25059 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25062 PyObject
*swig_obj
[1] ;
25064 if (!args
) SWIG_fail
;
25065 swig_obj
[0] = args
;
25066 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, SWIG_POINTER_DISOWN
| 0 );
25067 if (!SWIG_IsOK(res1
)) {
25068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_GraphicsContext" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25070 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25074 if (PyErr_Occurred()) SWIG_fail
;
25076 resultobj
= SWIG_Py_Void();
25083 SWIGINTERN PyObject
*_wrap_GraphicsContext_Create__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25084 PyObject
*resultobj
= 0;
25085 wxWindowDC
*arg1
= 0 ;
25086 wxGraphicsContext
*result
= 0 ;
25090 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25091 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxWindowDC
, 0 | 0);
25092 if (!SWIG_IsOK(res1
)) {
25093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Create" "', expected argument " "1"" of type '" "wxWindowDC const &""'");
25096 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_Create" "', expected argument " "1"" of type '" "wxWindowDC const &""'");
25098 arg1
= reinterpret_cast< wxWindowDC
* >(argp1
);
25100 result
= (wxGraphicsContext
*)wxGraphicsContext::Create((wxWindowDC
const &)*arg1
);
25101 if (PyErr_Occurred()) SWIG_fail
;
25103 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGraphicsContext
, SWIG_POINTER_OWN
| 0 );
25110 SWIGINTERN PyObject
*_wrap_GraphicsContext_Create__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25111 PyObject
*resultobj
= 0;
25112 wxWindow
*arg1
= (wxWindow
*) 0 ;
25113 wxGraphicsContext
*result
= 0 ;
25117 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25118 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
25119 if (!SWIG_IsOK(res1
)) {
25120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Create" "', expected argument " "1"" of type '" "wxWindow *""'");
25122 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
25124 result
= (wxGraphicsContext
*)wxGraphicsContext::Create(arg1
);
25125 if (PyErr_Occurred()) SWIG_fail
;
25127 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGraphicsContext
, SWIG_POINTER_OWN
| 0 );
25134 SWIGINTERN PyObject
*_wrap_GraphicsContext_Create(PyObject
*self
, PyObject
*args
) {
25138 if (!(argc
= SWIG_Python_UnpackTuple(args
,"GraphicsContext_Create",0,1,argv
))) SWIG_fail
;
25143 int res
= SWIG_ConvertPtr(argv
[0], 0, SWIGTYPE_p_wxWindowDC
, 0);
25144 _v
= SWIG_CheckState(res
);
25146 if (!_v
) goto check_1
;
25147 return _wrap_GraphicsContext_Create__SWIG_0(self
, argc
, argv
);
25152 return _wrap_GraphicsContext_Create__SWIG_1(self
, argc
, argv
);
25156 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'GraphicsContext_Create'");
25161 SWIGINTERN PyObject
*_wrap_GraphicsContext_CreateFromNative(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25162 PyObject
*resultobj
= 0;
25163 void *arg1
= (void *) 0 ;
25164 wxGraphicsContext
*result
= 0 ;
25166 PyObject
* obj0
= 0 ;
25167 char * kwnames
[] = {
25168 (char *) "context", NULL
25171 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GraphicsContext_CreateFromNative",kwnames
,&obj0
)) SWIG_fail
;
25172 res1
= SWIG_ConvertPtr(obj0
,SWIG_as_voidptrptr(&arg1
), 0, 0);
25173 if (!SWIG_IsOK(res1
)) {
25174 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_CreateFromNative" "', expected argument " "1"" of type '" "void *""'");
25177 result
= (wxGraphicsContext
*)wxGraphicsContext::CreateFromNative(arg1
);
25178 if (PyErr_Occurred()) SWIG_fail
;
25180 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGraphicsContext
, SWIG_POINTER_OWN
| 0 );
25187 SWIGINTERN PyObject
*_wrap_GraphicsContext_CreatePath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25188 PyObject
*resultobj
= 0;
25189 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25190 wxGraphicsPath
*result
= 0 ;
25193 PyObject
*swig_obj
[1] ;
25195 if (!args
) SWIG_fail
;
25196 swig_obj
[0] = args
;
25197 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25198 if (!SWIG_IsOK(res1
)) {
25199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_CreatePath" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25201 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25203 result
= (wxGraphicsPath
*)(arg1
)->CreatePath();
25204 if (PyErr_Occurred()) SWIG_fail
;
25206 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGraphicsPath
, SWIG_POINTER_OWN
| 0 );
25213 SWIGINTERN PyObject
*_wrap_GraphicsContext_PushState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25214 PyObject
*resultobj
= 0;
25215 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25218 PyObject
*swig_obj
[1] ;
25220 if (!args
) SWIG_fail
;
25221 swig_obj
[0] = args
;
25222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25223 if (!SWIG_IsOK(res1
)) {
25224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_PushState" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25226 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25228 (arg1
)->PushState();
25229 if (PyErr_Occurred()) SWIG_fail
;
25231 resultobj
= SWIG_Py_Void();
25238 SWIGINTERN PyObject
*_wrap_GraphicsContext_PopState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25239 PyObject
*resultobj
= 0;
25240 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25243 PyObject
*swig_obj
[1] ;
25245 if (!args
) SWIG_fail
;
25246 swig_obj
[0] = args
;
25247 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25248 if (!SWIG_IsOK(res1
)) {
25249 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_PopState" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25251 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25253 (arg1
)->PopState();
25254 if (PyErr_Occurred()) SWIG_fail
;
25256 resultobj
= SWIG_Py_Void();
25263 SWIGINTERN PyObject
*_wrap_GraphicsContext_ClipRegion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25264 PyObject
*resultobj
= 0;
25265 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25266 wxRegion
*arg2
= 0 ;
25271 PyObject
* obj0
= 0 ;
25272 PyObject
* obj1
= 0 ;
25273 char * kwnames
[] = {
25274 (char *) "self",(char *) "region", NULL
25277 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_ClipRegion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25278 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25279 if (!SWIG_IsOK(res1
)) {
25280 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_ClipRegion" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25282 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25283 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
25284 if (!SWIG_IsOK(res2
)) {
25285 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_ClipRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
25288 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_ClipRegion" "', expected argument " "2"" of type '" "wxRegion const &""'");
25290 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
25292 (arg1
)->Clip((wxRegion
const &)*arg2
);
25293 if (PyErr_Occurred()) SWIG_fail
;
25295 resultobj
= SWIG_Py_Void();
25302 SWIGINTERN PyObject
*_wrap_GraphicsContext_Clip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25303 PyObject
*resultobj
= 0;
25304 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25319 PyObject
* obj0
= 0 ;
25320 PyObject
* obj1
= 0 ;
25321 PyObject
* obj2
= 0 ;
25322 PyObject
* obj3
= 0 ;
25323 PyObject
* obj4
= 0 ;
25324 char * kwnames
[] = {
25325 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
25328 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsContext_Clip",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
25329 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25330 if (!SWIG_IsOK(res1
)) {
25331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Clip" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25333 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25334 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25335 if (!SWIG_IsOK(ecode2
)) {
25336 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_Clip" "', expected argument " "2"" of type '" "wxDouble""'");
25338 arg2
= static_cast< wxDouble
>(val2
);
25339 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25340 if (!SWIG_IsOK(ecode3
)) {
25341 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_Clip" "', expected argument " "3"" of type '" "wxDouble""'");
25343 arg3
= static_cast< wxDouble
>(val3
);
25344 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
25345 if (!SWIG_IsOK(ecode4
)) {
25346 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_Clip" "', expected argument " "4"" of type '" "wxDouble""'");
25348 arg4
= static_cast< wxDouble
>(val4
);
25349 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
25350 if (!SWIG_IsOK(ecode5
)) {
25351 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_Clip" "', expected argument " "5"" of type '" "wxDouble""'");
25353 arg5
= static_cast< wxDouble
>(val5
);
25355 (arg1
)->Clip(arg2
,arg3
,arg4
,arg5
);
25356 if (PyErr_Occurred()) SWIG_fail
;
25358 resultobj
= SWIG_Py_Void();
25365 SWIGINTERN PyObject
*_wrap_GraphicsContext_ResetClip(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25366 PyObject
*resultobj
= 0;
25367 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25370 PyObject
*swig_obj
[1] ;
25372 if (!args
) SWIG_fail
;
25373 swig_obj
[0] = args
;
25374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25375 if (!SWIG_IsOK(res1
)) {
25376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_ResetClip" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25378 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25380 (arg1
)->ResetClip();
25381 if (PyErr_Occurred()) SWIG_fail
;
25383 resultobj
= SWIG_Py_Void();
25390 SWIGINTERN PyObject
*_wrap_GraphicsContext_GetNativeContext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25391 PyObject
*resultobj
= 0;
25392 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25396 PyObject
*swig_obj
[1] ;
25398 if (!args
) SWIG_fail
;
25399 swig_obj
[0] = args
;
25400 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25401 if (!SWIG_IsOK(res1
)) {
25402 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_GetNativeContext" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25404 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25406 result
= (void *)(arg1
)->GetNativeContext();
25407 if (PyErr_Occurred()) SWIG_fail
;
25409 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
25416 SWIGINTERN PyObject
*_wrap_GraphicsContext_Translate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25417 PyObject
*resultobj
= 0;
25418 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25427 PyObject
* obj0
= 0 ;
25428 PyObject
* obj1
= 0 ;
25429 PyObject
* obj2
= 0 ;
25430 char * kwnames
[] = {
25431 (char *) "self",(char *) "dx",(char *) "dy", NULL
25434 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GraphicsContext_Translate",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25435 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25436 if (!SWIG_IsOK(res1
)) {
25437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Translate" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25439 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25440 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25441 if (!SWIG_IsOK(ecode2
)) {
25442 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_Translate" "', expected argument " "2"" of type '" "wxDouble""'");
25444 arg2
= static_cast< wxDouble
>(val2
);
25445 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25446 if (!SWIG_IsOK(ecode3
)) {
25447 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_Translate" "', expected argument " "3"" of type '" "wxDouble""'");
25449 arg3
= static_cast< wxDouble
>(val3
);
25451 (arg1
)->Translate(arg2
,arg3
);
25452 if (PyErr_Occurred()) SWIG_fail
;
25454 resultobj
= SWIG_Py_Void();
25461 SWIGINTERN PyObject
*_wrap_GraphicsContext_Scale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25462 PyObject
*resultobj
= 0;
25463 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25472 PyObject
* obj0
= 0 ;
25473 PyObject
* obj1
= 0 ;
25474 PyObject
* obj2
= 0 ;
25475 char * kwnames
[] = {
25476 (char *) "self",(char *) "xScale",(char *) "yScale", NULL
25479 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GraphicsContext_Scale",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25480 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25481 if (!SWIG_IsOK(res1
)) {
25482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Scale" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25484 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25485 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25486 if (!SWIG_IsOK(ecode2
)) {
25487 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_Scale" "', expected argument " "2"" of type '" "wxDouble""'");
25489 arg2
= static_cast< wxDouble
>(val2
);
25490 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25491 if (!SWIG_IsOK(ecode3
)) {
25492 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_Scale" "', expected argument " "3"" of type '" "wxDouble""'");
25494 arg3
= static_cast< wxDouble
>(val3
);
25496 (arg1
)->Scale(arg2
,arg3
);
25497 if (PyErr_Occurred()) SWIG_fail
;
25499 resultobj
= SWIG_Py_Void();
25506 SWIGINTERN PyObject
*_wrap_GraphicsContext_Rotate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25507 PyObject
*resultobj
= 0;
25508 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25514 PyObject
* obj0
= 0 ;
25515 PyObject
* obj1
= 0 ;
25516 char * kwnames
[] = {
25517 (char *) "self",(char *) "angle", NULL
25520 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_Rotate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25521 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25522 if (!SWIG_IsOK(res1
)) {
25523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_Rotate" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25525 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25526 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25527 if (!SWIG_IsOK(ecode2
)) {
25528 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_Rotate" "', expected argument " "2"" of type '" "wxDouble""'");
25530 arg2
= static_cast< wxDouble
>(val2
);
25532 (arg1
)->Rotate(arg2
);
25533 if (PyErr_Occurred()) SWIG_fail
;
25535 resultobj
= SWIG_Py_Void();
25542 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25543 PyObject
*resultobj
= 0;
25544 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25550 PyObject
* obj0
= 0 ;
25551 PyObject
* obj1
= 0 ;
25552 char * kwnames
[] = {
25553 (char *) "self",(char *) "pen", NULL
25556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_SetPen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25558 if (!SWIG_IsOK(res1
)) {
25559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetPen" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25561 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25562 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPen
, 0 | 0);
25563 if (!SWIG_IsOK(res2
)) {
25564 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
25567 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
25569 arg2
= reinterpret_cast< wxPen
* >(argp2
);
25571 (arg1
)->SetPen((wxPen
const &)*arg2
);
25572 if (PyErr_Occurred()) SWIG_fail
;
25574 resultobj
= SWIG_Py_Void();
25581 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25582 PyObject
*resultobj
= 0;
25583 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25584 wxBrush
*arg2
= 0 ;
25589 PyObject
* obj0
= 0 ;
25590 PyObject
* obj1
= 0 ;
25591 char * kwnames
[] = {
25592 (char *) "self",(char *) "brush", NULL
25595 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_SetBrush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25596 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25597 if (!SWIG_IsOK(res1
)) {
25598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetBrush" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25600 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25601 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBrush
, 0 | 0);
25602 if (!SWIG_IsOK(res2
)) {
25603 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
25606 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
25608 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
25610 (arg1
)->SetBrush((wxBrush
const &)*arg2
);
25611 if (PyErr_Occurred()) SWIG_fail
;
25613 resultobj
= SWIG_Py_Void();
25620 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetLinearGradientBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25621 PyObject
*resultobj
= 0;
25622 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25627 wxColour
*arg6
= 0 ;
25628 wxColour
*arg7
= 0 ;
25641 PyObject
* obj0
= 0 ;
25642 PyObject
* obj1
= 0 ;
25643 PyObject
* obj2
= 0 ;
25644 PyObject
* obj3
= 0 ;
25645 PyObject
* obj4
= 0 ;
25646 PyObject
* obj5
= 0 ;
25647 PyObject
* obj6
= 0 ;
25648 char * kwnames
[] = {
25649 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2",(char *) "c1",(char *) "c2", NULL
25652 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:GraphicsContext_SetLinearGradientBrush",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
25653 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25654 if (!SWIG_IsOK(res1
)) {
25655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetLinearGradientBrush" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25657 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25658 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25659 if (!SWIG_IsOK(ecode2
)) {
25660 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_SetLinearGradientBrush" "', expected argument " "2"" of type '" "wxDouble""'");
25662 arg2
= static_cast< wxDouble
>(val2
);
25663 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25664 if (!SWIG_IsOK(ecode3
)) {
25665 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_SetLinearGradientBrush" "', expected argument " "3"" of type '" "wxDouble""'");
25667 arg3
= static_cast< wxDouble
>(val3
);
25668 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
25669 if (!SWIG_IsOK(ecode4
)) {
25670 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_SetLinearGradientBrush" "', expected argument " "4"" of type '" "wxDouble""'");
25672 arg4
= static_cast< wxDouble
>(val4
);
25673 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
25674 if (!SWIG_IsOK(ecode5
)) {
25675 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_SetLinearGradientBrush" "', expected argument " "5"" of type '" "wxDouble""'");
25677 arg5
= static_cast< wxDouble
>(val5
);
25680 if ( ! wxColour_helper(obj5
, &arg6
)) SWIG_fail
;
25684 if ( ! wxColour_helper(obj6
, &arg7
)) SWIG_fail
;
25687 (arg1
)->SetLinearGradientBrush(arg2
,arg3
,arg4
,arg5
,(wxColour
const &)*arg6
,(wxColour
const &)*arg7
);
25688 if (PyErr_Occurred()) SWIG_fail
;
25690 resultobj
= SWIG_Py_Void();
25697 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetRadialGradientBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25698 PyObject
*resultobj
= 0;
25699 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25705 wxColour
*arg7
= 0 ;
25706 wxColour
*arg8
= 0 ;
25721 PyObject
* obj0
= 0 ;
25722 PyObject
* obj1
= 0 ;
25723 PyObject
* obj2
= 0 ;
25724 PyObject
* obj3
= 0 ;
25725 PyObject
* obj4
= 0 ;
25726 PyObject
* obj5
= 0 ;
25727 PyObject
* obj6
= 0 ;
25728 PyObject
* obj7
= 0 ;
25729 char * kwnames
[] = {
25730 (char *) "self",(char *) "xo",(char *) "yo",(char *) "xc",(char *) "yc",(char *) "radius",(char *) "oColour",(char *) "cColour", NULL
25733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:GraphicsContext_SetRadialGradientBrush",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
25734 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25735 if (!SWIG_IsOK(res1
)) {
25736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25738 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25739 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
25740 if (!SWIG_IsOK(ecode2
)) {
25741 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "2"" of type '" "wxDouble""'");
25743 arg2
= static_cast< wxDouble
>(val2
);
25744 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
25745 if (!SWIG_IsOK(ecode3
)) {
25746 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "3"" of type '" "wxDouble""'");
25748 arg3
= static_cast< wxDouble
>(val3
);
25749 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
25750 if (!SWIG_IsOK(ecode4
)) {
25751 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "4"" of type '" "wxDouble""'");
25753 arg4
= static_cast< wxDouble
>(val4
);
25754 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
25755 if (!SWIG_IsOK(ecode5
)) {
25756 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "5"" of type '" "wxDouble""'");
25758 arg5
= static_cast< wxDouble
>(val5
);
25759 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
25760 if (!SWIG_IsOK(ecode6
)) {
25761 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsContext_SetRadialGradientBrush" "', expected argument " "6"" of type '" "wxDouble""'");
25763 arg6
= static_cast< wxDouble
>(val6
);
25766 if ( ! wxColour_helper(obj6
, &arg7
)) SWIG_fail
;
25770 if ( ! wxColour_helper(obj7
, &arg8
)) SWIG_fail
;
25773 (arg1
)->SetRadialGradientBrush(arg2
,arg3
,arg4
,arg5
,arg6
,(wxColour
const &)*arg7
,(wxColour
const &)*arg8
);
25774 if (PyErr_Occurred()) SWIG_fail
;
25776 resultobj
= SWIG_Py_Void();
25783 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25784 PyObject
*resultobj
= 0;
25785 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25791 PyObject
* obj0
= 0 ;
25792 PyObject
* obj1
= 0 ;
25793 char * kwnames
[] = {
25794 (char *) "self",(char *) "font", NULL
25797 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_SetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25798 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25799 if (!SWIG_IsOK(res1
)) {
25800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetFont" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25802 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25803 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
25804 if (!SWIG_IsOK(res2
)) {
25805 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
25808 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
25810 arg2
= reinterpret_cast< wxFont
* >(argp2
);
25812 (arg1
)->SetFont((wxFont
const &)*arg2
);
25813 if (PyErr_Occurred()) SWIG_fail
;
25815 resultobj
= SWIG_Py_Void();
25822 SWIGINTERN PyObject
*_wrap_GraphicsContext_SetTextColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25823 PyObject
*resultobj
= 0;
25824 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25825 wxColour
*arg2
= 0 ;
25829 PyObject
* obj0
= 0 ;
25830 PyObject
* obj1
= 0 ;
25831 char * kwnames
[] = {
25832 (char *) "self",(char *) "col", NULL
25835 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_SetTextColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25836 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25837 if (!SWIG_IsOK(res1
)) {
25838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_SetTextColour" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25840 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25843 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
25846 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
25847 if (PyErr_Occurred()) SWIG_fail
;
25849 resultobj
= SWIG_Py_Void();
25856 SWIGINTERN PyObject
*_wrap_GraphicsContext_StrokePath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25857 PyObject
*resultobj
= 0;
25858 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25859 wxGraphicsPath
*arg2
= (wxGraphicsPath
*) 0 ;
25864 PyObject
* obj0
= 0 ;
25865 PyObject
* obj1
= 0 ;
25866 char * kwnames
[] = {
25867 (char *) "self",(char *) "path", NULL
25870 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_StrokePath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25871 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25872 if (!SWIG_IsOK(res1
)) {
25873 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_StrokePath" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25875 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25876 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
25877 if (!SWIG_IsOK(res2
)) {
25878 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_StrokePath" "', expected argument " "2"" of type '" "wxGraphicsPath const *""'");
25880 arg2
= reinterpret_cast< wxGraphicsPath
* >(argp2
);
25882 (arg1
)->StrokePath((wxGraphicsPath
const *)arg2
);
25883 if (PyErr_Occurred()) SWIG_fail
;
25885 resultobj
= SWIG_Py_Void();
25892 SWIGINTERN PyObject
*_wrap_GraphicsContext_FillPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25893 PyObject
*resultobj
= 0;
25894 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25895 wxGraphicsPath
*arg2
= (wxGraphicsPath
*) 0 ;
25896 int arg3
= (int) wxWINDING_RULE
;
25903 PyObject
* obj0
= 0 ;
25904 PyObject
* obj1
= 0 ;
25905 PyObject
* obj2
= 0 ;
25906 char * kwnames
[] = {
25907 (char *) "self",(char *) "path",(char *) "fillStyle", NULL
25910 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:GraphicsContext_FillPath",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25911 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25912 if (!SWIG_IsOK(res1
)) {
25913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_FillPath" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25915 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25916 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
25917 if (!SWIG_IsOK(res2
)) {
25918 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_FillPath" "', expected argument " "2"" of type '" "wxGraphicsPath const *""'");
25920 arg2
= reinterpret_cast< wxGraphicsPath
* >(argp2
);
25922 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
25923 if (!SWIG_IsOK(ecode3
)) {
25924 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_FillPath" "', expected argument " "3"" of type '" "int""'");
25926 arg3
= static_cast< int >(val3
);
25929 (arg1
)->FillPath((wxGraphicsPath
const *)arg2
,arg3
);
25930 if (PyErr_Occurred()) SWIG_fail
;
25932 resultobj
= SWIG_Py_Void();
25939 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25940 PyObject
*resultobj
= 0;
25941 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25942 wxGraphicsPath
*arg2
= (wxGraphicsPath
*) 0 ;
25943 int arg3
= (int) wxWINDING_RULE
;
25950 PyObject
* obj0
= 0 ;
25951 PyObject
* obj1
= 0 ;
25952 PyObject
* obj2
= 0 ;
25953 char * kwnames
[] = {
25954 (char *) "self",(char *) "path",(char *) "fillStyle", NULL
25957 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:GraphicsContext_DrawPath",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
25958 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
25959 if (!SWIG_IsOK(res1
)) {
25960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawPath" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
25962 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
25963 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxGraphicsPath
, 0 | 0 );
25964 if (!SWIG_IsOK(res2
)) {
25965 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_DrawPath" "', expected argument " "2"" of type '" "wxGraphicsPath const *""'");
25967 arg2
= reinterpret_cast< wxGraphicsPath
* >(argp2
);
25969 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
25970 if (!SWIG_IsOK(ecode3
)) {
25971 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawPath" "', expected argument " "3"" of type '" "int""'");
25973 arg3
= static_cast< int >(val3
);
25976 (arg1
)->DrawPath((wxGraphicsPath
const *)arg2
,arg3
);
25977 if (PyErr_Occurred()) SWIG_fail
;
25979 resultobj
= SWIG_Py_Void();
25986 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25987 PyObject
*resultobj
= 0;
25988 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
25989 wxString
*arg2
= 0 ;
25994 bool temp2
= false ;
25999 PyObject
* obj0
= 0 ;
26000 PyObject
* obj1
= 0 ;
26001 PyObject
* obj2
= 0 ;
26002 PyObject
* obj3
= 0 ;
26003 char * kwnames
[] = {
26004 (char *) "self",(char *) "str",(char *) "x",(char *) "y", NULL
26007 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:GraphicsContext_DrawText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
26008 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26009 if (!SWIG_IsOK(res1
)) {
26010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26012 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26014 arg2
= wxString_in_helper(obj1
);
26015 if (arg2
== NULL
) SWIG_fail
;
26018 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26019 if (!SWIG_IsOK(ecode3
)) {
26020 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawText" "', expected argument " "3"" of type '" "wxDouble""'");
26022 arg3
= static_cast< wxDouble
>(val3
);
26023 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26024 if (!SWIG_IsOK(ecode4
)) {
26025 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawText" "', expected argument " "4"" of type '" "wxDouble""'");
26027 arg4
= static_cast< wxDouble
>(val4
);
26029 (arg1
)->DrawText((wxString
const &)*arg2
,arg3
,arg4
);
26030 if (PyErr_Occurred()) SWIG_fail
;
26032 resultobj
= SWIG_Py_Void();
26047 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawRotatedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26048 PyObject
*resultobj
= 0;
26049 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26050 wxString
*arg2
= 0 ;
26056 bool temp2
= false ;
26063 PyObject
* obj0
= 0 ;
26064 PyObject
* obj1
= 0 ;
26065 PyObject
* obj2
= 0 ;
26066 PyObject
* obj3
= 0 ;
26067 PyObject
* obj4
= 0 ;
26068 char * kwnames
[] = {
26069 (char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle", NULL
26072 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsContext_DrawRotatedText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
26073 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26074 if (!SWIG_IsOK(res1
)) {
26075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26077 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26079 arg2
= wxString_in_helper(obj1
);
26080 if (arg2
== NULL
) SWIG_fail
;
26083 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26084 if (!SWIG_IsOK(ecode3
)) {
26085 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "3"" of type '" "wxDouble""'");
26087 arg3
= static_cast< wxDouble
>(val3
);
26088 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26089 if (!SWIG_IsOK(ecode4
)) {
26090 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "4"" of type '" "wxDouble""'");
26092 arg4
= static_cast< wxDouble
>(val4
);
26093 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26094 if (!SWIG_IsOK(ecode5
)) {
26095 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "5"" of type '" "wxDouble""'");
26097 arg5
= static_cast< wxDouble
>(val5
);
26099 (arg1
)->DrawText((wxString
const &)*arg2
,arg3
,arg4
,arg5
);
26100 if (PyErr_Occurred()) SWIG_fail
;
26102 resultobj
= SWIG_Py_Void();
26117 SWIGINTERN PyObject
*_wrap_GraphicsContext_GetFullTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26118 PyObject
*resultobj
= 0;
26119 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26120 wxString
*arg2
= 0 ;
26121 wxDouble
*arg3
= (wxDouble
*) 0 ;
26122 wxDouble
*arg4
= (wxDouble
*) 0 ;
26123 wxDouble
*arg5
= (wxDouble
*) 0 ;
26124 wxDouble
*arg6
= (wxDouble
*) 0 ;
26127 bool temp2
= false ;
26129 int res3
= SWIG_TMPOBJ
;
26131 int res4
= SWIG_TMPOBJ
;
26133 int res5
= SWIG_TMPOBJ
;
26135 int res6
= SWIG_TMPOBJ
;
26136 PyObject
* obj0
= 0 ;
26137 PyObject
* obj1
= 0 ;
26138 char * kwnames
[] = {
26139 (char *) "self",(char *) "text", NULL
26146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_GetFullTextExtent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26148 if (!SWIG_IsOK(res1
)) {
26149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_GetFullTextExtent" "', expected argument " "1"" of type '" "wxGraphicsContext const *""'");
26151 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26153 arg2
= wxString_in_helper(obj1
);
26154 if (arg2
== NULL
) SWIG_fail
;
26158 ((wxGraphicsContext
const *)arg1
)->GetTextExtent((wxString
const &)*arg2
,arg3
,arg4
,arg5
,arg6
);
26159 if (PyErr_Occurred()) SWIG_fail
;
26161 resultobj
= SWIG_Py_Void();
26162 if (SWIG_IsTmpObj(res3
)) {
26163 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg3
)));
26165 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
26166 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_double
, new_flags
));
26168 if (SWIG_IsTmpObj(res4
)) {
26169 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg4
)));
26171 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
26172 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_double
, new_flags
));
26174 if (SWIG_IsTmpObj(res5
)) {
26175 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg5
)));
26177 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
26178 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_double
, new_flags
));
26180 if (SWIG_IsTmpObj(res6
)) {
26181 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_double((*arg6
)));
26183 int new_flags
= SWIG_IsNewObj(res6
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
26184 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg6
), SWIGTYPE_p_double
, new_flags
));
26200 SWIGINTERN PyObject
*_wrap_GraphicsContext_GetTextExtent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26201 PyObject
*resultobj
= 0;
26202 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26203 wxString
*arg2
= 0 ;
26204 PyObject
*result
= 0 ;
26207 bool temp2
= false ;
26208 PyObject
* obj0
= 0 ;
26209 PyObject
* obj1
= 0 ;
26210 char * kwnames
[] = {
26211 (char *) "self",(char *) "text", NULL
26214 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_GetTextExtent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26215 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26216 if (!SWIG_IsOK(res1
)) {
26217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_GetTextExtent" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26219 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26221 arg2
= wxString_in_helper(obj1
);
26222 if (arg2
== NULL
) SWIG_fail
;
26226 result
= (PyObject
*)wxGraphicsContext_GetTextExtent(arg1
,(wxString
const &)*arg2
);
26227 if (PyErr_Occurred()) SWIG_fail
;
26229 resultobj
= result
;
26244 SWIGINTERN PyObject
*_wrap_GraphicsContext_GetPartialTextExtents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26245 PyObject
*resultobj
= 0;
26246 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26247 wxString
*arg2
= 0 ;
26248 wxArrayDouble result
;
26251 bool temp2
= false ;
26252 PyObject
* obj0
= 0 ;
26253 PyObject
* obj1
= 0 ;
26254 char * kwnames
[] = {
26255 (char *) "self",(char *) "text", NULL
26258 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_GetPartialTextExtents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26259 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26260 if (!SWIG_IsOK(res1
)) {
26261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_GetPartialTextExtents" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26263 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26265 arg2
= wxString_in_helper(obj1
);
26266 if (arg2
== NULL
) SWIG_fail
;
26270 result
= wxGraphicsContext_GetPartialTextExtents(arg1
,(wxString
const &)*arg2
);
26271 if (PyErr_Occurred()) SWIG_fail
;
26274 resultobj
= wxArrayDouble2PyList_helper(result
);
26290 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26291 PyObject
*resultobj
= 0;
26292 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26293 wxBitmap
*arg2
= 0 ;
26310 PyObject
* obj0
= 0 ;
26311 PyObject
* obj1
= 0 ;
26312 PyObject
* obj2
= 0 ;
26313 PyObject
* obj3
= 0 ;
26314 PyObject
* obj4
= 0 ;
26315 PyObject
* obj5
= 0 ;
26316 char * kwnames
[] = {
26317 (char *) "self",(char *) "bmp",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
26320 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:GraphicsContext_DrawBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
26321 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26322 if (!SWIG_IsOK(res1
)) {
26323 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26325 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26326 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
26327 if (!SWIG_IsOK(res2
)) {
26328 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
26331 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
26333 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
26334 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26335 if (!SWIG_IsOK(ecode3
)) {
26336 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "3"" of type '" "wxDouble""'");
26338 arg3
= static_cast< wxDouble
>(val3
);
26339 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26340 if (!SWIG_IsOK(ecode4
)) {
26341 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "4"" of type '" "wxDouble""'");
26343 arg4
= static_cast< wxDouble
>(val4
);
26344 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26345 if (!SWIG_IsOK(ecode5
)) {
26346 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "5"" of type '" "wxDouble""'");
26348 arg5
= static_cast< wxDouble
>(val5
);
26349 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
26350 if (!SWIG_IsOK(ecode6
)) {
26351 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsContext_DrawBitmap" "', expected argument " "6"" of type '" "wxDouble""'");
26353 arg6
= static_cast< wxDouble
>(val6
);
26355 (arg1
)->DrawBitmap((wxBitmap
const &)*arg2
,arg3
,arg4
,arg5
,arg6
);
26356 if (PyErr_Occurred()) SWIG_fail
;
26358 resultobj
= SWIG_Py_Void();
26365 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26366 PyObject
*resultobj
= 0;
26367 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26385 PyObject
* obj0
= 0 ;
26386 PyObject
* obj1
= 0 ;
26387 PyObject
* obj2
= 0 ;
26388 PyObject
* obj3
= 0 ;
26389 PyObject
* obj4
= 0 ;
26390 PyObject
* obj5
= 0 ;
26391 char * kwnames
[] = {
26392 (char *) "self",(char *) "icon",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
26395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:GraphicsContext_DrawIcon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
26396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26397 if (!SWIG_IsOK(res1
)) {
26398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26400 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26401 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
26402 if (!SWIG_IsOK(res2
)) {
26403 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
26406 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GraphicsContext_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
26408 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
26409 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26410 if (!SWIG_IsOK(ecode3
)) {
26411 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "3"" of type '" "wxDouble""'");
26413 arg3
= static_cast< wxDouble
>(val3
);
26414 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26415 if (!SWIG_IsOK(ecode4
)) {
26416 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "4"" of type '" "wxDouble""'");
26418 arg4
= static_cast< wxDouble
>(val4
);
26419 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26420 if (!SWIG_IsOK(ecode5
)) {
26421 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "5"" of type '" "wxDouble""'");
26423 arg5
= static_cast< wxDouble
>(val5
);
26424 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
26425 if (!SWIG_IsOK(ecode6
)) {
26426 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsContext_DrawIcon" "', expected argument " "6"" of type '" "wxDouble""'");
26428 arg6
= static_cast< wxDouble
>(val6
);
26430 (arg1
)->DrawIcon((wxIcon
const &)*arg2
,arg3
,arg4
,arg5
,arg6
);
26431 if (PyErr_Occurred()) SWIG_fail
;
26433 resultobj
= SWIG_Py_Void();
26440 SWIGINTERN PyObject
*_wrap_GraphicsContext_StrokeLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26441 PyObject
*resultobj
= 0;
26442 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26457 PyObject
* obj0
= 0 ;
26458 PyObject
* obj1
= 0 ;
26459 PyObject
* obj2
= 0 ;
26460 PyObject
* obj3
= 0 ;
26461 PyObject
* obj4
= 0 ;
26462 char * kwnames
[] = {
26463 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2", NULL
26466 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsContext_StrokeLine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
26467 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26468 if (!SWIG_IsOK(res1
)) {
26469 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_StrokeLine" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26471 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26472 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
26473 if (!SWIG_IsOK(ecode2
)) {
26474 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_StrokeLine" "', expected argument " "2"" of type '" "wxDouble""'");
26476 arg2
= static_cast< wxDouble
>(val2
);
26477 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26478 if (!SWIG_IsOK(ecode3
)) {
26479 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_StrokeLine" "', expected argument " "3"" of type '" "wxDouble""'");
26481 arg3
= static_cast< wxDouble
>(val3
);
26482 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26483 if (!SWIG_IsOK(ecode4
)) {
26484 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_StrokeLine" "', expected argument " "4"" of type '" "wxDouble""'");
26486 arg4
= static_cast< wxDouble
>(val4
);
26487 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26488 if (!SWIG_IsOK(ecode5
)) {
26489 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_StrokeLine" "', expected argument " "5"" of type '" "wxDouble""'");
26491 arg5
= static_cast< wxDouble
>(val5
);
26493 (arg1
)->StrokeLine(arg2
,arg3
,arg4
,arg5
);
26494 if (PyErr_Occurred()) SWIG_fail
;
26496 resultobj
= SWIG_Py_Void();
26503 SWIGINTERN PyObject
*_wrap_GraphicsContext_StrokeLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26504 PyObject
*resultobj
= 0;
26505 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26507 wxPoint2D
*arg3
= (wxPoint2D
*) 0 ;
26510 PyObject
* obj0
= 0 ;
26511 PyObject
* obj1
= 0 ;
26512 char * kwnames
[] = {
26513 (char *) "self",(char *) "points", NULL
26516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GraphicsContext_StrokeLines",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26518 if (!SWIG_IsOK(res1
)) {
26519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_StrokeLines" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26521 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26523 arg3
= wxPoint2D_LIST_helper(obj1
, &arg2
);
26524 if (arg3
== NULL
) SWIG_fail
;
26527 (arg1
)->StrokeLines(arg2
,(wxPoint2D
const *)arg3
);
26528 if (PyErr_Occurred()) SWIG_fail
;
26530 resultobj
= SWIG_Py_Void();
26532 if (arg3
) delete [] arg3
;
26537 if (arg3
) delete [] arg3
;
26543 SWIGINTERN PyObject
*_wrap_GraphicsContext_StrokeLineSegements(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26544 PyObject
*resultobj
= 0;
26545 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26546 PyObject
*arg2
= (PyObject
*) 0 ;
26547 PyObject
*arg3
= (PyObject
*) 0 ;
26550 PyObject
* obj0
= 0 ;
26551 PyObject
* obj1
= 0 ;
26552 PyObject
* obj2
= 0 ;
26553 char * kwnames
[] = {
26554 (char *) "self",(char *) "beginPoints",(char *) "endPoints", NULL
26557 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GraphicsContext_StrokeLineSegements",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
26558 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26559 if (!SWIG_IsOK(res1
)) {
26560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_StrokeLineSegements" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26562 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26566 wxGraphicsContext_StrokeLineSegements(arg1
,arg2
,arg3
);
26567 if (PyErr_Occurred()) SWIG_fail
;
26569 resultobj
= SWIG_Py_Void();
26576 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26577 PyObject
*resultobj
= 0;
26578 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26580 wxPoint2D
*arg3
= (wxPoint2D
*) 0 ;
26581 int arg4
= (int) wxWINDING_RULE
;
26586 PyObject
* obj0
= 0 ;
26587 PyObject
* obj1
= 0 ;
26588 PyObject
* obj2
= 0 ;
26589 char * kwnames
[] = {
26590 (char *) "self",(char *) "points",(char *) "fillStyle", NULL
26593 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:GraphicsContext_DrawLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
26594 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26595 if (!SWIG_IsOK(res1
)) {
26596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawLines" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26598 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26600 arg3
= wxPoint2D_LIST_helper(obj1
, &arg2
);
26601 if (arg3
== NULL
) SWIG_fail
;
26604 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
26605 if (!SWIG_IsOK(ecode4
)) {
26606 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawLines" "', expected argument " "4"" of type '" "int""'");
26608 arg4
= static_cast< int >(val4
);
26611 (arg1
)->DrawLines(arg2
,(wxPoint2D
const *)arg3
,arg4
);
26612 if (PyErr_Occurred()) SWIG_fail
;
26614 resultobj
= SWIG_Py_Void();
26616 if (arg3
) delete [] arg3
;
26621 if (arg3
) delete [] arg3
;
26627 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26628 PyObject
*resultobj
= 0;
26629 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26644 PyObject
* obj0
= 0 ;
26645 PyObject
* obj1
= 0 ;
26646 PyObject
* obj2
= 0 ;
26647 PyObject
* obj3
= 0 ;
26648 PyObject
* obj4
= 0 ;
26649 char * kwnames
[] = {
26650 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
26653 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsContext_DrawRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
26654 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26655 if (!SWIG_IsOK(res1
)) {
26656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawRectangle" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26658 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26659 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
26660 if (!SWIG_IsOK(ecode2
)) {
26661 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_DrawRectangle" "', expected argument " "2"" of type '" "wxDouble""'");
26663 arg2
= static_cast< wxDouble
>(val2
);
26664 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26665 if (!SWIG_IsOK(ecode3
)) {
26666 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawRectangle" "', expected argument " "3"" of type '" "wxDouble""'");
26668 arg3
= static_cast< wxDouble
>(val3
);
26669 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26670 if (!SWIG_IsOK(ecode4
)) {
26671 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawRectangle" "', expected argument " "4"" of type '" "wxDouble""'");
26673 arg4
= static_cast< wxDouble
>(val4
);
26674 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26675 if (!SWIG_IsOK(ecode5
)) {
26676 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawRectangle" "', expected argument " "5"" of type '" "wxDouble""'");
26678 arg5
= static_cast< wxDouble
>(val5
);
26680 (arg1
)->DrawRectangle(arg2
,arg3
,arg4
,arg5
);
26681 if (PyErr_Occurred()) SWIG_fail
;
26683 resultobj
= SWIG_Py_Void();
26690 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawEllipse(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26691 PyObject
*resultobj
= 0;
26692 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26707 PyObject
* obj0
= 0 ;
26708 PyObject
* obj1
= 0 ;
26709 PyObject
* obj2
= 0 ;
26710 PyObject
* obj3
= 0 ;
26711 PyObject
* obj4
= 0 ;
26712 char * kwnames
[] = {
26713 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h", NULL
26716 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:GraphicsContext_DrawEllipse",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
26717 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26718 if (!SWIG_IsOK(res1
)) {
26719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawEllipse" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26721 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26722 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
26723 if (!SWIG_IsOK(ecode2
)) {
26724 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_DrawEllipse" "', expected argument " "2"" of type '" "wxDouble""'");
26726 arg2
= static_cast< wxDouble
>(val2
);
26727 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26728 if (!SWIG_IsOK(ecode3
)) {
26729 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawEllipse" "', expected argument " "3"" of type '" "wxDouble""'");
26731 arg3
= static_cast< wxDouble
>(val3
);
26732 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26733 if (!SWIG_IsOK(ecode4
)) {
26734 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawEllipse" "', expected argument " "4"" of type '" "wxDouble""'");
26736 arg4
= static_cast< wxDouble
>(val4
);
26737 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26738 if (!SWIG_IsOK(ecode5
)) {
26739 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawEllipse" "', expected argument " "5"" of type '" "wxDouble""'");
26741 arg5
= static_cast< wxDouble
>(val5
);
26743 (arg1
)->DrawEllipse(arg2
,arg3
,arg4
,arg5
);
26744 if (PyErr_Occurred()) SWIG_fail
;
26746 resultobj
= SWIG_Py_Void();
26753 SWIGINTERN PyObject
*_wrap_GraphicsContext_DrawRoundedRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26754 PyObject
*resultobj
= 0;
26755 wxGraphicsContext
*arg1
= (wxGraphicsContext
*) 0 ;
26773 PyObject
* obj0
= 0 ;
26774 PyObject
* obj1
= 0 ;
26775 PyObject
* obj2
= 0 ;
26776 PyObject
* obj3
= 0 ;
26777 PyObject
* obj4
= 0 ;
26778 PyObject
* obj5
= 0 ;
26779 char * kwnames
[] = {
26780 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h",(char *) "radius", NULL
26783 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:GraphicsContext_DrawRoundedRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
26784 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26785 if (!SWIG_IsOK(res1
)) {
26786 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
26788 arg1
= reinterpret_cast< wxGraphicsContext
* >(argp1
);
26789 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
26790 if (!SWIG_IsOK(ecode2
)) {
26791 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "2"" of type '" "wxDouble""'");
26793 arg2
= static_cast< wxDouble
>(val2
);
26794 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
26795 if (!SWIG_IsOK(ecode3
)) {
26796 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "3"" of type '" "wxDouble""'");
26798 arg3
= static_cast< wxDouble
>(val3
);
26799 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
26800 if (!SWIG_IsOK(ecode4
)) {
26801 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "4"" of type '" "wxDouble""'");
26803 arg4
= static_cast< wxDouble
>(val4
);
26804 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
26805 if (!SWIG_IsOK(ecode5
)) {
26806 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "5"" of type '" "wxDouble""'");
26808 arg5
= static_cast< wxDouble
>(val5
);
26809 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
26810 if (!SWIG_IsOK(ecode6
)) {
26811 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "GraphicsContext_DrawRoundedRectangle" "', expected argument " "6"" of type '" "wxDouble""'");
26813 arg6
= static_cast< wxDouble
>(val6
);
26815 (arg1
)->DrawRoundedRectangle(arg2
,arg3
,arg4
,arg5
,arg6
);
26816 if (PyErr_Occurred()) SWIG_fail
;
26818 resultobj
= SWIG_Py_Void();
26825 SWIGINTERN PyObject
*GraphicsContext_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26827 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
26828 SWIG_TypeNewClientData(SWIGTYPE_p_wxGraphicsContext
, SWIG_NewClientData(obj
));
26829 return SWIG_Py_Void();
26832 SWIGINTERN PyObject
*_wrap_new_GCDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26833 PyObject
*resultobj
= 0;
26834 wxWindowDC
*arg1
= 0 ;
26835 wxGCDC
*result
= 0 ;
26838 PyObject
* obj0
= 0 ;
26839 char * kwnames
[] = {
26840 (char *) "dc", NULL
26843 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_GCDC",kwnames
,&obj0
)) SWIG_fail
;
26844 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxWindowDC
, 0 | 0);
26845 if (!SWIG_IsOK(res1
)) {
26846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_GCDC" "', expected argument " "1"" of type '" "wxWindowDC const &""'");
26849 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_GCDC" "', expected argument " "1"" of type '" "wxWindowDC const &""'");
26851 arg1
= reinterpret_cast< wxWindowDC
* >(argp1
);
26853 if (!wxPyCheckForApp()) SWIG_fail
;
26854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26855 result
= (wxGCDC
*)new wxGCDC((wxWindowDC
const &)*arg1
);
26856 wxPyEndAllowThreads(__tstate
);
26857 if (PyErr_Occurred()) SWIG_fail
;
26859 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGCDC
, SWIG_POINTER_NEW
| 0 );
26866 SWIGINTERN PyObject
*_wrap_delete_GCDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26867 PyObject
*resultobj
= 0;
26868 wxGCDC
*arg1
= (wxGCDC
*) 0 ;
26871 PyObject
*swig_obj
[1] ;
26873 if (!args
) SWIG_fail
;
26874 swig_obj
[0] = args
;
26875 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGCDC
, SWIG_POINTER_DISOWN
| 0 );
26876 if (!SWIG_IsOK(res1
)) {
26877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_GCDC" "', expected argument " "1"" of type '" "wxGCDC *""'");
26879 arg1
= reinterpret_cast< wxGCDC
* >(argp1
);
26883 if (PyErr_Occurred()) SWIG_fail
;
26885 resultobj
= SWIG_Py_Void();
26892 SWIGINTERN PyObject
*_wrap_GCDC_GetGraphicsContext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26893 PyObject
*resultobj
= 0;
26894 wxGCDC
*arg1
= (wxGCDC
*) 0 ;
26895 wxGraphicsContext
*result
= 0 ;
26898 PyObject
*swig_obj
[1] ;
26900 if (!args
) SWIG_fail
;
26901 swig_obj
[0] = args
;
26902 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGCDC
, 0 | 0 );
26903 if (!SWIG_IsOK(res1
)) {
26904 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GCDC_GetGraphicsContext" "', expected argument " "1"" of type '" "wxGCDC *""'");
26906 arg1
= reinterpret_cast< wxGCDC
* >(argp1
);
26908 result
= (wxGraphicsContext
*)(arg1
)->GetGraphicsContext();
26909 if (PyErr_Occurred()) SWIG_fail
;
26911 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26918 SWIGINTERN PyObject
*_wrap_GCDC_SetGraphicsContext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26919 PyObject
*resultobj
= 0;
26920 wxGCDC
*arg1
= (wxGCDC
*) 0 ;
26921 wxGraphicsContext
*arg2
= (wxGraphicsContext
*) 0 ;
26926 PyObject
* obj0
= 0 ;
26927 PyObject
* obj1
= 0 ;
26928 char * kwnames
[] = {
26929 (char *) "self",(char *) "ctx", NULL
26932 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GCDC_SetGraphicsContext",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26933 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxGCDC
, 0 | 0 );
26934 if (!SWIG_IsOK(res1
)) {
26935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GCDC_SetGraphicsContext" "', expected argument " "1"" of type '" "wxGCDC *""'");
26937 arg1
= reinterpret_cast< wxGCDC
* >(argp1
);
26938 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxGraphicsContext
, 0 | 0 );
26939 if (!SWIG_IsOK(res2
)) {
26940 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GCDC_SetGraphicsContext" "', expected argument " "2"" of type '" "wxGraphicsContext *""'");
26942 arg2
= reinterpret_cast< wxGraphicsContext
* >(argp2
);
26944 (arg1
)->SetGraphicsContext(arg2
);
26945 if (PyErr_Occurred()) SWIG_fail
;
26947 resultobj
= SWIG_Py_Void();
26954 SWIGINTERN PyObject
*GCDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26956 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
26957 SWIG_TypeNewClientData(SWIGTYPE_p_wxGCDC
, SWIG_NewClientData(obj
));
26958 return SWIG_Py_Void();
26961 SWIGINTERN PyObject
*GCDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26962 return SWIG_Python_InitShadowInstance(args
);
26965 SWIGINTERN PyObject
*_wrap_new_Overlay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26966 PyObject
*resultobj
= 0;
26967 wxOverlay
*result
= 0 ;
26969 if (!SWIG_Python_UnpackTuple(args
,"new_Overlay",0,0,0)) SWIG_fail
;
26971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26972 result
= (wxOverlay
*)new wxOverlay();
26973 wxPyEndAllowThreads(__tstate
);
26974 if (PyErr_Occurred()) SWIG_fail
;
26976 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxOverlay
, SWIG_POINTER_NEW
| 0 );
26983 SWIGINTERN PyObject
*_wrap_delete_Overlay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26984 PyObject
*resultobj
= 0;
26985 wxOverlay
*arg1
= (wxOverlay
*) 0 ;
26988 PyObject
*swig_obj
[1] ;
26990 if (!args
) SWIG_fail
;
26991 swig_obj
[0] = args
;
26992 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxOverlay
, SWIG_POINTER_DISOWN
| 0 );
26993 if (!SWIG_IsOK(res1
)) {
26994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Overlay" "', expected argument " "1"" of type '" "wxOverlay *""'");
26996 arg1
= reinterpret_cast< wxOverlay
* >(argp1
);
26998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27001 wxPyEndAllowThreads(__tstate
);
27002 if (PyErr_Occurred()) SWIG_fail
;
27004 resultobj
= SWIG_Py_Void();
27011 SWIGINTERN PyObject
*_wrap_Overlay_Reset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27012 PyObject
*resultobj
= 0;
27013 wxOverlay
*arg1
= (wxOverlay
*) 0 ;
27016 PyObject
*swig_obj
[1] ;
27018 if (!args
) SWIG_fail
;
27019 swig_obj
[0] = args
;
27020 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxOverlay
, 0 | 0 );
27021 if (!SWIG_IsOK(res1
)) {
27022 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Overlay_Reset" "', expected argument " "1"" of type '" "wxOverlay *""'");
27024 arg1
= reinterpret_cast< wxOverlay
* >(argp1
);
27026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27028 wxPyEndAllowThreads(__tstate
);
27029 if (PyErr_Occurred()) SWIG_fail
;
27031 resultobj
= SWIG_Py_Void();
27038 SWIGINTERN PyObject
*Overlay_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27040 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27041 SWIG_TypeNewClientData(SWIGTYPE_p_wxOverlay
, SWIG_NewClientData(obj
));
27042 return SWIG_Py_Void();
27045 SWIGINTERN PyObject
*Overlay_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27046 return SWIG_Python_InitShadowInstance(args
);
27049 SWIGINTERN PyObject
*_wrap_new_DCOverlay__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
27050 PyObject
*resultobj
= 0;
27051 wxOverlay
*arg1
= 0 ;
27052 wxWindowDC
*arg2
= (wxWindowDC
*) 0 ;
27057 wxDCOverlay
*result
= 0 ;
27071 if ((nobjs
< 6) || (nobjs
> 6)) SWIG_fail
;
27072 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxOverlay
, 0 );
27073 if (!SWIG_IsOK(res1
)) {
27074 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DCOverlay" "', expected argument " "1"" of type '" "wxOverlay &""'");
27077 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DCOverlay" "', expected argument " "1"" of type '" "wxOverlay &""'");
27079 arg1
= reinterpret_cast< wxOverlay
* >(argp1
);
27080 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindowDC
, 0 | 0 );
27081 if (!SWIG_IsOK(res2
)) {
27082 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_DCOverlay" "', expected argument " "2"" of type '" "wxWindowDC *""'");
27084 arg2
= reinterpret_cast< wxWindowDC
* >(argp2
);
27085 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
27086 if (!SWIG_IsOK(ecode3
)) {
27087 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_DCOverlay" "', expected argument " "3"" of type '" "int""'");
27089 arg3
= static_cast< int >(val3
);
27090 ecode4
= SWIG_AsVal_int(swig_obj
[3], &val4
);
27091 if (!SWIG_IsOK(ecode4
)) {
27092 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DCOverlay" "', expected argument " "4"" of type '" "int""'");
27094 arg4
= static_cast< int >(val4
);
27095 ecode5
= SWIG_AsVal_int(swig_obj
[4], &val5
);
27096 if (!SWIG_IsOK(ecode5
)) {
27097 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_DCOverlay" "', expected argument " "5"" of type '" "int""'");
27099 arg5
= static_cast< int >(val5
);
27100 ecode6
= SWIG_AsVal_int(swig_obj
[5], &val6
);
27101 if (!SWIG_IsOK(ecode6
)) {
27102 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_DCOverlay" "', expected argument " "6"" of type '" "int""'");
27104 arg6
= static_cast< int >(val6
);
27106 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27107 result
= (wxDCOverlay
*)new wxDCOverlay(*arg1
,arg2
,arg3
,arg4
,arg5
,arg6
);
27108 wxPyEndAllowThreads(__tstate
);
27109 if (PyErr_Occurred()) SWIG_fail
;
27111 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDCOverlay
, SWIG_POINTER_NEW
| 0 );
27118 SWIGINTERN PyObject
*_wrap_new_DCOverlay__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
27119 PyObject
*resultobj
= 0;
27120 wxOverlay
*arg1
= 0 ;
27121 wxWindowDC
*arg2
= (wxWindowDC
*) 0 ;
27122 wxDCOverlay
*result
= 0 ;
27128 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
27129 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxOverlay
, 0 );
27130 if (!SWIG_IsOK(res1
)) {
27131 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DCOverlay" "', expected argument " "1"" of type '" "wxOverlay &""'");
27134 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_DCOverlay" "', expected argument " "1"" of type '" "wxOverlay &""'");
27136 arg1
= reinterpret_cast< wxOverlay
* >(argp1
);
27137 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindowDC
, 0 | 0 );
27138 if (!SWIG_IsOK(res2
)) {
27139 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_DCOverlay" "', expected argument " "2"" of type '" "wxWindowDC *""'");
27141 arg2
= reinterpret_cast< wxWindowDC
* >(argp2
);
27143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27144 result
= (wxDCOverlay
*)new wxDCOverlay(*arg1
,arg2
);
27145 wxPyEndAllowThreads(__tstate
);
27146 if (PyErr_Occurred()) SWIG_fail
;
27148 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDCOverlay
, SWIG_POINTER_NEW
| 0 );
27155 SWIGINTERN PyObject
*_wrap_new_DCOverlay(PyObject
*self
, PyObject
*args
) {
27159 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_DCOverlay",0,6,argv
))) SWIG_fail
;
27162 return _wrap_new_DCOverlay__SWIG_1(self
, argc
, argv
);
27165 return _wrap_new_DCOverlay__SWIG_0(self
, argc
, argv
);
27169 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_DCOverlay'");
27174 SWIGINTERN PyObject
*_wrap_delete_DCOverlay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27175 PyObject
*resultobj
= 0;
27176 wxDCOverlay
*arg1
= (wxDCOverlay
*) 0 ;
27179 PyObject
*swig_obj
[1] ;
27181 if (!args
) SWIG_fail
;
27182 swig_obj
[0] = args
;
27183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDCOverlay
, SWIG_POINTER_DISOWN
| 0 );
27184 if (!SWIG_IsOK(res1
)) {
27185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DCOverlay" "', expected argument " "1"" of type '" "wxDCOverlay *""'");
27187 arg1
= reinterpret_cast< wxDCOverlay
* >(argp1
);
27189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27192 wxPyEndAllowThreads(__tstate
);
27193 if (PyErr_Occurred()) SWIG_fail
;
27195 resultobj
= SWIG_Py_Void();
27202 SWIGINTERN PyObject
*_wrap_DCOverlay_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27203 PyObject
*resultobj
= 0;
27204 wxDCOverlay
*arg1
= (wxDCOverlay
*) 0 ;
27207 PyObject
*swig_obj
[1] ;
27209 if (!args
) SWIG_fail
;
27210 swig_obj
[0] = args
;
27211 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDCOverlay
, 0 | 0 );
27212 if (!SWIG_IsOK(res1
)) {
27213 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DCOverlay_Clear" "', expected argument " "1"" of type '" "wxDCOverlay *""'");
27215 arg1
= reinterpret_cast< wxDCOverlay
* >(argp1
);
27217 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27219 wxPyEndAllowThreads(__tstate
);
27220 if (PyErr_Occurred()) SWIG_fail
;
27222 resultobj
= SWIG_Py_Void();
27229 SWIGINTERN PyObject
*DCOverlay_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27231 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27232 SWIG_TypeNewClientData(SWIGTYPE_p_wxDCOverlay
, SWIG_NewClientData(obj
));
27233 return SWIG_Py_Void();
27236 SWIGINTERN PyObject
*DCOverlay_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27237 return SWIG_Python_InitShadowInstance(args
);
27240 SWIGINTERN PyObject
*_wrap_new_ImageList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27241 PyObject
*resultobj
= 0;
27244 int arg3
= (int) true ;
27245 int arg4
= (int) 1 ;
27246 wxImageList
*result
= 0 ;
27255 PyObject
* obj0
= 0 ;
27256 PyObject
* obj1
= 0 ;
27257 PyObject
* obj2
= 0 ;
27258 PyObject
* obj3
= 0 ;
27259 char * kwnames
[] = {
27260 (char *) "width",(char *) "height",(char *) "mask",(char *) "initialCount", NULL
27263 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_ImageList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
27264 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
27265 if (!SWIG_IsOK(ecode1
)) {
27266 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_ImageList" "', expected argument " "1"" of type '" "int""'");
27268 arg1
= static_cast< int >(val1
);
27269 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27270 if (!SWIG_IsOK(ecode2
)) {
27271 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_ImageList" "', expected argument " "2"" of type '" "int""'");
27273 arg2
= static_cast< int >(val2
);
27275 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27276 if (!SWIG_IsOK(ecode3
)) {
27277 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_ImageList" "', expected argument " "3"" of type '" "int""'");
27279 arg3
= static_cast< int >(val3
);
27282 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
27283 if (!SWIG_IsOK(ecode4
)) {
27284 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_ImageList" "', expected argument " "4"" of type '" "int""'");
27286 arg4
= static_cast< int >(val4
);
27289 if (!wxPyCheckForApp()) SWIG_fail
;
27290 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27291 result
= (wxImageList
*)new wxImageList(arg1
,arg2
,arg3
,arg4
);
27292 wxPyEndAllowThreads(__tstate
);
27293 if (PyErr_Occurred()) SWIG_fail
;
27295 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxImageList
, SWIG_POINTER_NEW
| 0 );
27302 SWIGINTERN PyObject
*_wrap_delete_ImageList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27303 PyObject
*resultobj
= 0;
27304 wxImageList
*arg1
= (wxImageList
*) 0 ;
27307 PyObject
*swig_obj
[1] ;
27309 if (!args
) SWIG_fail
;
27310 swig_obj
[0] = args
;
27311 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxImageList
, SWIG_POINTER_DISOWN
| 0 );
27312 if (!SWIG_IsOK(res1
)) {
27313 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ImageList" "', expected argument " "1"" of type '" "wxImageList *""'");
27315 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27320 wxPyEndAllowThreads(__tstate
);
27321 if (PyErr_Occurred()) SWIG_fail
;
27323 resultobj
= SWIG_Py_Void();
27330 SWIGINTERN PyObject
*_wrap_ImageList_Add(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27331 PyObject
*resultobj
= 0;
27332 wxImageList
*arg1
= (wxImageList
*) 0 ;
27333 wxBitmap
*arg2
= 0 ;
27334 wxBitmap
const &arg3_defvalue
= wxNullBitmap
;
27335 wxBitmap
*arg3
= (wxBitmap
*) &arg3_defvalue
;
27343 PyObject
* obj0
= 0 ;
27344 PyObject
* obj1
= 0 ;
27345 PyObject
* obj2
= 0 ;
27346 char * kwnames
[] = {
27347 (char *) "self",(char *) "bitmap",(char *) "mask", NULL
27350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ImageList_Add",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27352 if (!SWIG_IsOK(res1
)) {
27353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_Add" "', expected argument " "1"" of type '" "wxImageList *""'");
27355 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27356 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
27357 if (!SWIG_IsOK(res2
)) {
27358 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ImageList_Add" "', expected argument " "2"" of type '" "wxBitmap const &""'");
27361 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_Add" "', expected argument " "2"" of type '" "wxBitmap const &""'");
27363 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
27365 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
27366 if (!SWIG_IsOK(res3
)) {
27367 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "ImageList_Add" "', expected argument " "3"" of type '" "wxBitmap const &""'");
27370 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_Add" "', expected argument " "3"" of type '" "wxBitmap const &""'");
27372 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
27375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27376 result
= (int)(arg1
)->Add((wxBitmap
const &)*arg2
,(wxBitmap
const &)*arg3
);
27377 wxPyEndAllowThreads(__tstate
);
27378 if (PyErr_Occurred()) SWIG_fail
;
27380 resultobj
= SWIG_From_int(static_cast< int >(result
));
27387 SWIGINTERN PyObject
*_wrap_ImageList_AddWithColourMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27388 PyObject
*resultobj
= 0;
27389 wxImageList
*arg1
= (wxImageList
*) 0 ;
27390 wxBitmap
*arg2
= 0 ;
27391 wxColour
*arg3
= 0 ;
27398 PyObject
* obj0
= 0 ;
27399 PyObject
* obj1
= 0 ;
27400 PyObject
* obj2
= 0 ;
27401 char * kwnames
[] = {
27402 (char *) "self",(char *) "bitmap",(char *) "maskColour", NULL
27405 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ImageList_AddWithColourMask",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27406 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27407 if (!SWIG_IsOK(res1
)) {
27408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_AddWithColourMask" "', expected argument " "1"" of type '" "wxImageList *""'");
27410 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27411 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
27412 if (!SWIG_IsOK(res2
)) {
27413 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ImageList_AddWithColourMask" "', expected argument " "2"" of type '" "wxBitmap const &""'");
27416 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_AddWithColourMask" "', expected argument " "2"" of type '" "wxBitmap const &""'");
27418 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
27421 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
27424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27425 result
= (int)(arg1
)->Add((wxBitmap
const &)*arg2
,(wxColour
const &)*arg3
);
27426 wxPyEndAllowThreads(__tstate
);
27427 if (PyErr_Occurred()) SWIG_fail
;
27429 resultobj
= SWIG_From_int(static_cast< int >(result
));
27436 SWIGINTERN PyObject
*_wrap_ImageList_AddIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27437 PyObject
*resultobj
= 0;
27438 wxImageList
*arg1
= (wxImageList
*) 0 ;
27445 PyObject
* obj0
= 0 ;
27446 PyObject
* obj1
= 0 ;
27447 char * kwnames
[] = {
27448 (char *) "self",(char *) "icon", NULL
27451 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ImageList_AddIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27452 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27453 if (!SWIG_IsOK(res1
)) {
27454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_AddIcon" "', expected argument " "1"" of type '" "wxImageList *""'");
27456 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27457 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
27458 if (!SWIG_IsOK(res2
)) {
27459 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ImageList_AddIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
27462 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_AddIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
27464 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
27466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27467 result
= (int)(arg1
)->Add((wxIcon
const &)*arg2
);
27468 wxPyEndAllowThreads(__tstate
);
27469 if (PyErr_Occurred()) SWIG_fail
;
27471 resultobj
= SWIG_From_int(static_cast< int >(result
));
27478 SWIGINTERN PyObject
*_wrap_ImageList_GetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27479 PyObject
*resultobj
= 0;
27480 wxImageList
*arg1
= (wxImageList
*) 0 ;
27482 SwigValueWrapper
<wxBitmap
> result
;
27487 PyObject
* obj0
= 0 ;
27488 PyObject
* obj1
= 0 ;
27489 char * kwnames
[] = {
27490 (char *) "self",(char *) "index", NULL
27493 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ImageList_GetBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27494 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27495 if (!SWIG_IsOK(res1
)) {
27496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_GetBitmap" "', expected argument " "1"" of type '" "wxImageList const *""'");
27498 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27499 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27500 if (!SWIG_IsOK(ecode2
)) {
27501 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_GetBitmap" "', expected argument " "2"" of type '" "int""'");
27503 arg2
= static_cast< int >(val2
);
27505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27506 result
= ((wxImageList
const *)arg1
)->GetBitmap(arg2
);
27507 wxPyEndAllowThreads(__tstate
);
27508 if (PyErr_Occurred()) SWIG_fail
;
27510 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
27517 SWIGINTERN PyObject
*_wrap_ImageList_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27518 PyObject
*resultobj
= 0;
27519 wxImageList
*arg1
= (wxImageList
*) 0 ;
27526 PyObject
* obj0
= 0 ;
27527 PyObject
* obj1
= 0 ;
27528 char * kwnames
[] = {
27529 (char *) "self",(char *) "index", NULL
27532 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ImageList_GetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27533 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27534 if (!SWIG_IsOK(res1
)) {
27535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_GetIcon" "', expected argument " "1"" of type '" "wxImageList const *""'");
27537 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27538 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27539 if (!SWIG_IsOK(ecode2
)) {
27540 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_GetIcon" "', expected argument " "2"" of type '" "int""'");
27542 arg2
= static_cast< int >(val2
);
27544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27545 result
= ((wxImageList
const *)arg1
)->GetIcon(arg2
);
27546 wxPyEndAllowThreads(__tstate
);
27547 if (PyErr_Occurred()) SWIG_fail
;
27549 resultobj
= SWIG_NewPointerObj((new wxIcon(static_cast< const wxIcon
& >(result
))), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
27556 SWIGINTERN PyObject
*_wrap_ImageList_Replace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27557 PyObject
*resultobj
= 0;
27558 wxImageList
*arg1
= (wxImageList
*) 0 ;
27560 wxBitmap
*arg3
= 0 ;
27561 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
27562 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
27572 PyObject
* obj0
= 0 ;
27573 PyObject
* obj1
= 0 ;
27574 PyObject
* obj2
= 0 ;
27575 PyObject
* obj3
= 0 ;
27576 char * kwnames
[] = {
27577 (char *) "self",(char *) "index",(char *) "bitmap",(char *) "mask", NULL
27580 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ImageList_Replace",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
27581 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27582 if (!SWIG_IsOK(res1
)) {
27583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_Replace" "', expected argument " "1"" of type '" "wxImageList *""'");
27585 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27586 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27587 if (!SWIG_IsOK(ecode2
)) {
27588 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_Replace" "', expected argument " "2"" of type '" "int""'");
27590 arg2
= static_cast< int >(val2
);
27591 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
27592 if (!SWIG_IsOK(res3
)) {
27593 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "ImageList_Replace" "', expected argument " "3"" of type '" "wxBitmap const &""'");
27596 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_Replace" "', expected argument " "3"" of type '" "wxBitmap const &""'");
27598 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
27600 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
27601 if (!SWIG_IsOK(res4
)) {
27602 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "ImageList_Replace" "', expected argument " "4"" of type '" "wxBitmap const &""'");
27605 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_Replace" "', expected argument " "4"" of type '" "wxBitmap const &""'");
27607 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
27610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27611 result
= (bool)(arg1
)->Replace(arg2
,(wxBitmap
const &)*arg3
,(wxBitmap
const &)*arg4
);
27612 wxPyEndAllowThreads(__tstate
);
27613 if (PyErr_Occurred()) SWIG_fail
;
27616 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27624 SWIGINTERN PyObject
*_wrap_ImageList_Draw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27625 PyObject
*resultobj
= 0;
27626 wxImageList
*arg1
= (wxImageList
*) 0 ;
27631 int arg6
= (int) wxIMAGELIST_DRAW_NORMAL
;
27632 bool arg7
= (bool) (bool)false ;
27648 PyObject
* obj0
= 0 ;
27649 PyObject
* obj1
= 0 ;
27650 PyObject
* obj2
= 0 ;
27651 PyObject
* obj3
= 0 ;
27652 PyObject
* obj4
= 0 ;
27653 PyObject
* obj5
= 0 ;
27654 PyObject
* obj6
= 0 ;
27655 char * kwnames
[] = {
27656 (char *) "self",(char *) "index",(char *) "dc",(char *) "x",(char *) "x",(char *) "flags",(char *) "solidBackground", NULL
27659 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OO:ImageList_Draw",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
27660 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27661 if (!SWIG_IsOK(res1
)) {
27662 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_Draw" "', expected argument " "1"" of type '" "wxImageList *""'");
27664 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27665 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27666 if (!SWIG_IsOK(ecode2
)) {
27667 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_Draw" "', expected argument " "2"" of type '" "int""'");
27669 arg2
= static_cast< int >(val2
);
27670 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
27671 if (!SWIG_IsOK(res3
)) {
27672 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "ImageList_Draw" "', expected argument " "3"" of type '" "wxDC &""'");
27675 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ImageList_Draw" "', expected argument " "3"" of type '" "wxDC &""'");
27677 arg3
= reinterpret_cast< wxDC
* >(argp3
);
27678 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
27679 if (!SWIG_IsOK(ecode4
)) {
27680 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "ImageList_Draw" "', expected argument " "4"" of type '" "int""'");
27682 arg4
= static_cast< int >(val4
);
27683 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
27684 if (!SWIG_IsOK(ecode5
)) {
27685 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "ImageList_Draw" "', expected argument " "5"" of type '" "int""'");
27687 arg5
= static_cast< int >(val5
);
27689 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
27690 if (!SWIG_IsOK(ecode6
)) {
27691 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "ImageList_Draw" "', expected argument " "6"" of type '" "int""'");
27693 arg6
= static_cast< int >(val6
);
27696 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
27697 if (!SWIG_IsOK(ecode7
)) {
27698 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "ImageList_Draw" "', expected argument " "7"" of type '" "bool""'");
27700 arg7
= static_cast< bool >(val7
);
27703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27704 result
= (bool)(arg1
)->Draw(arg2
,*arg3
,arg4
,arg5
,arg6
,arg7
);
27705 wxPyEndAllowThreads(__tstate
);
27706 if (PyErr_Occurred()) SWIG_fail
;
27709 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27717 SWIGINTERN PyObject
*_wrap_ImageList_GetImageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27718 PyObject
*resultobj
= 0;
27719 wxImageList
*arg1
= (wxImageList
*) 0 ;
27723 PyObject
*swig_obj
[1] ;
27725 if (!args
) SWIG_fail
;
27726 swig_obj
[0] = args
;
27727 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27728 if (!SWIG_IsOK(res1
)) {
27729 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_GetImageCount" "', expected argument " "1"" of type '" "wxImageList *""'");
27731 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27734 result
= (int)(arg1
)->GetImageCount();
27735 wxPyEndAllowThreads(__tstate
);
27736 if (PyErr_Occurred()) SWIG_fail
;
27738 resultobj
= SWIG_From_int(static_cast< int >(result
));
27745 SWIGINTERN PyObject
*_wrap_ImageList_Remove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27746 PyObject
*resultobj
= 0;
27747 wxImageList
*arg1
= (wxImageList
*) 0 ;
27754 PyObject
* obj0
= 0 ;
27755 PyObject
* obj1
= 0 ;
27756 char * kwnames
[] = {
27757 (char *) "self",(char *) "index", NULL
27760 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ImageList_Remove",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27761 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27762 if (!SWIG_IsOK(res1
)) {
27763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_Remove" "', expected argument " "1"" of type '" "wxImageList *""'");
27765 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27766 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27767 if (!SWIG_IsOK(ecode2
)) {
27768 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_Remove" "', expected argument " "2"" of type '" "int""'");
27770 arg2
= static_cast< int >(val2
);
27772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27773 result
= (bool)(arg1
)->Remove(arg2
);
27774 wxPyEndAllowThreads(__tstate
);
27775 if (PyErr_Occurred()) SWIG_fail
;
27778 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27786 SWIGINTERN PyObject
*_wrap_ImageList_RemoveAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27787 PyObject
*resultobj
= 0;
27788 wxImageList
*arg1
= (wxImageList
*) 0 ;
27792 PyObject
*swig_obj
[1] ;
27794 if (!args
) SWIG_fail
;
27795 swig_obj
[0] = args
;
27796 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27797 if (!SWIG_IsOK(res1
)) {
27798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_RemoveAll" "', expected argument " "1"" of type '" "wxImageList *""'");
27800 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27803 result
= (bool)(arg1
)->RemoveAll();
27804 wxPyEndAllowThreads(__tstate
);
27805 if (PyErr_Occurred()) SWIG_fail
;
27808 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27816 SWIGINTERN PyObject
*_wrap_ImageList_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27817 PyObject
*resultobj
= 0;
27818 wxImageList
*arg1
= (wxImageList
*) 0 ;
27827 int res3
= SWIG_TMPOBJ
;
27829 int res4
= SWIG_TMPOBJ
;
27830 PyObject
* obj0
= 0 ;
27831 PyObject
* obj1
= 0 ;
27832 char * kwnames
[] = {
27833 (char *) "self",(char *) "index", NULL
27838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ImageList_GetSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxImageList
, 0 | 0 );
27840 if (!SWIG_IsOK(res1
)) {
27841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ImageList_GetSize" "', expected argument " "1"" of type '" "wxImageList *""'");
27843 arg1
= reinterpret_cast< wxImageList
* >(argp1
);
27844 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27845 if (!SWIG_IsOK(ecode2
)) {
27846 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ImageList_GetSize" "', expected argument " "2"" of type '" "int""'");
27848 arg2
= static_cast< int >(val2
);
27850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27851 (arg1
)->GetSize(arg2
,*arg3
,*arg4
);
27852 wxPyEndAllowThreads(__tstate
);
27853 if (PyErr_Occurred()) SWIG_fail
;
27855 resultobj
= SWIG_Py_Void();
27856 if (SWIG_IsTmpObj(res3
)) {
27857 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27859 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27860 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27862 if (SWIG_IsTmpObj(res4
)) {
27863 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
27865 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27866 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
27874 SWIGINTERN PyObject
*ImageList_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27876 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27877 SWIG_TypeNewClientData(SWIGTYPE_p_wxImageList
, SWIG_NewClientData(obj
));
27878 return SWIG_Py_Void();
27881 SWIGINTERN PyObject
*ImageList_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27882 return SWIG_Python_InitShadowInstance(args
);
27885 SWIGINTERN PyObject
*_wrap_new_StockGDI(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27886 PyObject
*resultobj
= 0;
27887 wxStockGDI
*result
= 0 ;
27889 if (!SWIG_Python_UnpackTuple(args
,"new_StockGDI",0,0,0)) SWIG_fail
;
27891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27892 result
= (wxStockGDI
*)new wxStockGDI();
27893 wxPyEndAllowThreads(__tstate
);
27894 if (PyErr_Occurred()) SWIG_fail
;
27896 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStockGDI
, SWIG_POINTER_NEW
| 0 );
27903 SWIGINTERN PyObject
*_wrap_delete_StockGDI(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27904 PyObject
*resultobj
= 0;
27905 wxStockGDI
*arg1
= (wxStockGDI
*) 0 ;
27908 PyObject
*swig_obj
[1] ;
27910 if (!args
) SWIG_fail
;
27911 swig_obj
[0] = args
;
27912 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStockGDI
, SWIG_POINTER_DISOWN
| 0 );
27913 if (!SWIG_IsOK(res1
)) {
27914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_StockGDI" "', expected argument " "1"" of type '" "wxStockGDI *""'");
27916 arg1
= reinterpret_cast< wxStockGDI
* >(argp1
);
27918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27921 wxPyEndAllowThreads(__tstate
);
27922 if (PyErr_Occurred()) SWIG_fail
;
27924 resultobj
= SWIG_Py_Void();
27931 SWIGINTERN PyObject
*_wrap_StockGDI_DeleteAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27932 PyObject
*resultobj
= 0;
27934 if (!SWIG_Python_UnpackTuple(args
,"StockGDI_DeleteAll",0,0,0)) SWIG_fail
;
27936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27937 wxStockGDI::DeleteAll();
27938 wxPyEndAllowThreads(__tstate
);
27939 if (PyErr_Occurred()) SWIG_fail
;
27941 resultobj
= SWIG_Py_Void();
27948 SWIGINTERN PyObject
*_wrap_StockGDI_instance(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27949 PyObject
*resultobj
= 0;
27950 wxStockGDI
*result
= 0 ;
27952 if (!SWIG_Python_UnpackTuple(args
,"StockGDI_instance",0,0,0)) SWIG_fail
;
27954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27956 wxStockGDI
&_result_ref
= wxStockGDI::instance();
27957 result
= (wxStockGDI
*) &_result_ref
;
27959 wxPyEndAllowThreads(__tstate
);
27960 if (PyErr_Occurred()) SWIG_fail
;
27962 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStockGDI
, 0 | 0 );
27969 SWIGINTERN PyObject
*_wrap_StockGDI_GetBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27970 PyObject
*resultobj
= 0;
27971 wxStockGDI::Item arg1
;
27972 wxBrush
*result
= 0 ;
27975 PyObject
* obj0
= 0 ;
27976 char * kwnames
[] = {
27977 (char *) "item", NULL
27980 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StockGDI_GetBrush",kwnames
,&obj0
)) SWIG_fail
;
27981 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
27982 if (!SWIG_IsOK(ecode1
)) {
27983 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StockGDI_GetBrush" "', expected argument " "1"" of type '" "wxStockGDI::Item""'");
27985 arg1
= static_cast< wxStockGDI::Item
>(val1
);
27987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27988 result
= (wxBrush
*)wxStockGDI::GetBrush(arg1
);
27989 wxPyEndAllowThreads(__tstate
);
27990 if (PyErr_Occurred()) SWIG_fail
;
27992 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBrush
, 0 | 0 );
27999 SWIGINTERN PyObject
*_wrap_StockGDI_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28000 PyObject
*resultobj
= 0;
28001 wxStockGDI::Item arg1
;
28002 wxColour
*result
= 0 ;
28005 PyObject
* obj0
= 0 ;
28006 char * kwnames
[] = {
28007 (char *) "item", NULL
28010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StockGDI_GetColour",kwnames
,&obj0
)) SWIG_fail
;
28011 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
28012 if (!SWIG_IsOK(ecode1
)) {
28013 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StockGDI_GetColour" "', expected argument " "1"" of type '" "wxStockGDI::Item""'");
28015 arg1
= static_cast< wxStockGDI::Item
>(val1
);
28017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28018 result
= (wxColour
*)wxStockGDI::GetColour(arg1
);
28019 wxPyEndAllowThreads(__tstate
);
28020 if (PyErr_Occurred()) SWIG_fail
;
28022 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
28029 SWIGINTERN PyObject
*_wrap_StockGDI_GetCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28030 PyObject
*resultobj
= 0;
28031 wxStockGDI::Item arg1
;
28032 wxCursor
*result
= 0 ;
28035 PyObject
* obj0
= 0 ;
28036 char * kwnames
[] = {
28037 (char *) "item", NULL
28040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StockGDI_GetCursor",kwnames
,&obj0
)) SWIG_fail
;
28041 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
28042 if (!SWIG_IsOK(ecode1
)) {
28043 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StockGDI_GetCursor" "', expected argument " "1"" of type '" "wxStockGDI::Item""'");
28045 arg1
= static_cast< wxStockGDI::Item
>(val1
);
28047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28048 result
= (wxCursor
*)wxStockGDI::GetCursor(arg1
);
28049 wxPyEndAllowThreads(__tstate
);
28050 if (PyErr_Occurred()) SWIG_fail
;
28052 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCursor
, 0 | 0 );
28059 SWIGINTERN PyObject
*_wrap_StockGDI_GetPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28060 PyObject
*resultobj
= 0;
28061 wxStockGDI::Item arg1
;
28062 wxPen
*result
= 0 ;
28065 PyObject
* obj0
= 0 ;
28066 char * kwnames
[] = {
28067 (char *) "item", NULL
28070 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StockGDI_GetPen",kwnames
,&obj0
)) SWIG_fail
;
28071 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
28072 if (!SWIG_IsOK(ecode1
)) {
28073 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StockGDI_GetPen" "', expected argument " "1"" of type '" "wxStockGDI::Item""'");
28075 arg1
= static_cast< wxStockGDI::Item
>(val1
);
28077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28078 result
= (wxPen
*)wxStockGDI::GetPen(arg1
);
28079 wxPyEndAllowThreads(__tstate
);
28080 if (PyErr_Occurred()) SWIG_fail
;
28082 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPen
, 0 | 0 );
28089 SWIGINTERN PyObject
*_wrap_StockGDI_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28090 PyObject
*resultobj
= 0;
28091 wxStockGDI
*arg1
= (wxStockGDI
*) 0 ;
28092 wxStockGDI::Item arg2
;
28093 wxFont
*result
= 0 ;
28098 PyObject
* obj0
= 0 ;
28099 PyObject
* obj1
= 0 ;
28100 char * kwnames
[] = {
28101 (char *) "self",(char *) "item", NULL
28104 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StockGDI_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28105 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStockGDI
, 0 | 0 );
28106 if (!SWIG_IsOK(res1
)) {
28107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StockGDI_GetFont" "', expected argument " "1"" of type '" "wxStockGDI *""'");
28109 arg1
= reinterpret_cast< wxStockGDI
* >(argp1
);
28110 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28111 if (!SWIG_IsOK(ecode2
)) {
28112 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StockGDI_GetFont" "', expected argument " "2"" of type '" "wxStockGDI::Item""'");
28114 arg2
= static_cast< wxStockGDI::Item
>(val2
);
28116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28117 result
= (wxFont
*)(arg1
)->GetFont(arg2
);
28118 wxPyEndAllowThreads(__tstate
);
28119 if (PyErr_Occurred()) SWIG_fail
;
28121 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, 0 | 0 );
28128 SWIGINTERN PyObject
*StockGDI_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28130 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28131 SWIG_TypeNewClientData(SWIGTYPE_p_wxStockGDI
, SWIG_NewClientData(obj
));
28132 return SWIG_Py_Void();
28135 SWIGINTERN PyObject
*StockGDI_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28136 return SWIG_Python_InitShadowInstance(args
);
28139 SWIGINTERN
int NullBitmap_set(PyObject
*) {
28140 SWIG_Error(SWIG_AttributeError
,"Variable NullBitmap is read-only.");
28145 SWIGINTERN PyObject
*NullBitmap_get(void) {
28146 PyObject
*pyobj
= 0;
28148 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullBitmap
), SWIGTYPE_p_wxBitmap
, 0 );
28153 SWIGINTERN
int NullIcon_set(PyObject
*) {
28154 SWIG_Error(SWIG_AttributeError
,"Variable NullIcon is read-only.");
28159 SWIGINTERN PyObject
*NullIcon_get(void) {
28160 PyObject
*pyobj
= 0;
28162 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullIcon
), SWIGTYPE_p_wxIcon
, 0 );
28167 SWIGINTERN
int NullCursor_set(PyObject
*) {
28168 SWIG_Error(SWIG_AttributeError
,"Variable NullCursor is read-only.");
28173 SWIGINTERN PyObject
*NullCursor_get(void) {
28174 PyObject
*pyobj
= 0;
28176 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullCursor
), SWIGTYPE_p_wxCursor
, 0 );
28181 SWIGINTERN
int NullPen_set(PyObject
*) {
28182 SWIG_Error(SWIG_AttributeError
,"Variable NullPen is read-only.");
28187 SWIGINTERN PyObject
*NullPen_get(void) {
28188 PyObject
*pyobj
= 0;
28190 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullPen
), SWIGTYPE_p_wxPen
, 0 );
28195 SWIGINTERN
int NullBrush_set(PyObject
*) {
28196 SWIG_Error(SWIG_AttributeError
,"Variable NullBrush is read-only.");
28201 SWIGINTERN PyObject
*NullBrush_get(void) {
28202 PyObject
*pyobj
= 0;
28204 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullBrush
), SWIGTYPE_p_wxBrush
, 0 );
28209 SWIGINTERN
int NullPalette_set(PyObject
*) {
28210 SWIG_Error(SWIG_AttributeError
,"Variable NullPalette is read-only.");
28215 SWIGINTERN PyObject
*NullPalette_get(void) {
28216 PyObject
*pyobj
= 0;
28218 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullPalette
), SWIGTYPE_p_wxPalette
, 0 );
28223 SWIGINTERN
int NullFont_set(PyObject
*) {
28224 SWIG_Error(SWIG_AttributeError
,"Variable NullFont is read-only.");
28229 SWIGINTERN PyObject
*NullFont_get(void) {
28230 PyObject
*pyobj
= 0;
28232 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullFont
), SWIGTYPE_p_wxFont
, 0 );
28237 SWIGINTERN
int NullColour_set(PyObject
*) {
28238 SWIG_Error(SWIG_AttributeError
,"Variable NullColour is read-only.");
28243 SWIGINTERN PyObject
*NullColour_get(void) {
28244 PyObject
*pyobj
= 0;
28246 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullColour
), SWIGTYPE_p_wxColour
, 0 );
28251 SWIGINTERN PyObject
*_wrap_new_GDIObjListBase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28252 PyObject
*resultobj
= 0;
28253 wxGDIObjListBase
*result
= 0 ;
28255 if (!SWIG_Python_UnpackTuple(args
,"new_GDIObjListBase",0,0,0)) SWIG_fail
;
28257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28258 result
= (wxGDIObjListBase
*)new wxGDIObjListBase();
28259 wxPyEndAllowThreads(__tstate
);
28260 if (PyErr_Occurred()) SWIG_fail
;
28262 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxGDIObjListBase
, SWIG_POINTER_NEW
| 0 );
28269 SWIGINTERN PyObject
*_wrap_delete_GDIObjListBase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28270 PyObject
*resultobj
= 0;
28271 wxGDIObjListBase
*arg1
= (wxGDIObjListBase
*) 0 ;
28274 PyObject
*swig_obj
[1] ;
28276 if (!args
) SWIG_fail
;
28277 swig_obj
[0] = args
;
28278 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxGDIObjListBase
, SWIG_POINTER_DISOWN
| 0 );
28279 if (!SWIG_IsOK(res1
)) {
28280 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_GDIObjListBase" "', expected argument " "1"" of type '" "wxGDIObjListBase *""'");
28282 arg1
= reinterpret_cast< wxGDIObjListBase
* >(argp1
);
28284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28287 wxPyEndAllowThreads(__tstate
);
28288 if (PyErr_Occurred()) SWIG_fail
;
28290 resultobj
= SWIG_Py_Void();
28297 SWIGINTERN PyObject
*GDIObjListBase_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28299 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28300 SWIG_TypeNewClientData(SWIGTYPE_p_wxGDIObjListBase
, SWIG_NewClientData(obj
));
28301 return SWIG_Py_Void();
28304 SWIGINTERN PyObject
*GDIObjListBase_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28305 return SWIG_Python_InitShadowInstance(args
);
28308 SWIGINTERN PyObject
*_wrap_PenList_FindOrCreatePen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28309 PyObject
*resultobj
= 0;
28310 wxPenList
*arg1
= (wxPenList
*) 0 ;
28311 wxColour
*arg2
= 0 ;
28314 wxPen
*result
= 0 ;
28322 PyObject
* obj0
= 0 ;
28323 PyObject
* obj1
= 0 ;
28324 PyObject
* obj2
= 0 ;
28325 PyObject
* obj3
= 0 ;
28326 char * kwnames
[] = {
28327 (char *) "self",(char *) "colour",(char *) "width",(char *) "style", NULL
28330 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PenList_FindOrCreatePen",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
28331 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPenList
, 0 | 0 );
28332 if (!SWIG_IsOK(res1
)) {
28333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PenList_FindOrCreatePen" "', expected argument " "1"" of type '" "wxPenList *""'");
28335 arg1
= reinterpret_cast< wxPenList
* >(argp1
);
28338 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
28340 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28341 if (!SWIG_IsOK(ecode3
)) {
28342 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PenList_FindOrCreatePen" "', expected argument " "3"" of type '" "int""'");
28344 arg3
= static_cast< int >(val3
);
28345 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
28346 if (!SWIG_IsOK(ecode4
)) {
28347 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PenList_FindOrCreatePen" "', expected argument " "4"" of type '" "int""'");
28349 arg4
= static_cast< int >(val4
);
28351 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28352 result
= (wxPen
*)(arg1
)->FindOrCreatePen((wxColour
const &)*arg2
,arg3
,arg4
);
28353 wxPyEndAllowThreads(__tstate
);
28354 if (PyErr_Occurred()) SWIG_fail
;
28356 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPen
, 0 | 0 );
28363 SWIGINTERN PyObject
*_wrap_PenList_AddPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28364 PyObject
*resultobj
= 0;
28365 wxPenList
*arg1
= (wxPenList
*) 0 ;
28366 wxPen
*arg2
= (wxPen
*) 0 ;
28371 PyObject
* obj0
= 0 ;
28372 PyObject
* obj1
= 0 ;
28373 char * kwnames
[] = {
28374 (char *) "self",(char *) "pen", NULL
28377 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PenList_AddPen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28378 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPenList
, 0 | 0 );
28379 if (!SWIG_IsOK(res1
)) {
28380 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PenList_AddPen" "', expected argument " "1"" of type '" "wxPenList *""'");
28382 arg1
= reinterpret_cast< wxPenList
* >(argp1
);
28383 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPen
, 0 | 0 );
28384 if (!SWIG_IsOK(res2
)) {
28385 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PenList_AddPen" "', expected argument " "2"" of type '" "wxPen *""'");
28387 arg2
= reinterpret_cast< wxPen
* >(argp2
);
28389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28390 (arg1
)->AddPen(arg2
);
28391 wxPyEndAllowThreads(__tstate
);
28392 if (PyErr_Occurred()) SWIG_fail
;
28394 resultobj
= SWIG_Py_Void();
28401 SWIGINTERN PyObject
*_wrap_PenList_RemovePen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28402 PyObject
*resultobj
= 0;
28403 wxPenList
*arg1
= (wxPenList
*) 0 ;
28404 wxPen
*arg2
= (wxPen
*) 0 ;
28409 PyObject
* obj0
= 0 ;
28410 PyObject
* obj1
= 0 ;
28411 char * kwnames
[] = {
28412 (char *) "self",(char *) "pen", NULL
28415 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PenList_RemovePen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28416 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPenList
, 0 | 0 );
28417 if (!SWIG_IsOK(res1
)) {
28418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PenList_RemovePen" "', expected argument " "1"" of type '" "wxPenList *""'");
28420 arg1
= reinterpret_cast< wxPenList
* >(argp1
);
28421 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPen
, 0 | 0 );
28422 if (!SWIG_IsOK(res2
)) {
28423 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PenList_RemovePen" "', expected argument " "2"" of type '" "wxPen *""'");
28425 arg2
= reinterpret_cast< wxPen
* >(argp2
);
28427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28428 (arg1
)->RemovePen(arg2
);
28429 wxPyEndAllowThreads(__tstate
);
28430 if (PyErr_Occurred()) SWIG_fail
;
28432 resultobj
= SWIG_Py_Void();
28439 SWIGINTERN PyObject
*PenList_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28441 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28442 SWIG_TypeNewClientData(SWIGTYPE_p_wxPenList
, SWIG_NewClientData(obj
));
28443 return SWIG_Py_Void();
28446 SWIGINTERN PyObject
*_wrap_BrushList_FindOrCreateBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28447 PyObject
*resultobj
= 0;
28448 wxBrushList
*arg1
= (wxBrushList
*) 0 ;
28449 wxColour
*arg2
= 0 ;
28450 int arg3
= (int) wxSOLID
;
28451 wxBrush
*result
= 0 ;
28457 PyObject
* obj0
= 0 ;
28458 PyObject
* obj1
= 0 ;
28459 PyObject
* obj2
= 0 ;
28460 char * kwnames
[] = {
28461 (char *) "self",(char *) "colour",(char *) "style", NULL
28464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:BrushList_FindOrCreateBrush",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
28465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrushList
, 0 | 0 );
28466 if (!SWIG_IsOK(res1
)) {
28467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BrushList_FindOrCreateBrush" "', expected argument " "1"" of type '" "wxBrushList *""'");
28469 arg1
= reinterpret_cast< wxBrushList
* >(argp1
);
28472 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
28475 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28476 if (!SWIG_IsOK(ecode3
)) {
28477 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "BrushList_FindOrCreateBrush" "', expected argument " "3"" of type '" "int""'");
28479 arg3
= static_cast< int >(val3
);
28482 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28483 result
= (wxBrush
*)(arg1
)->FindOrCreateBrush((wxColour
const &)*arg2
,arg3
);
28484 wxPyEndAllowThreads(__tstate
);
28485 if (PyErr_Occurred()) SWIG_fail
;
28487 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBrush
, 0 | 0 );
28494 SWIGINTERN PyObject
*_wrap_BrushList_AddBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28495 PyObject
*resultobj
= 0;
28496 wxBrushList
*arg1
= (wxBrushList
*) 0 ;
28497 wxBrush
*arg2
= (wxBrush
*) 0 ;
28502 PyObject
* obj0
= 0 ;
28503 PyObject
* obj1
= 0 ;
28504 char * kwnames
[] = {
28505 (char *) "self",(char *) "brush", NULL
28508 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BrushList_AddBrush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28509 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrushList
, 0 | 0 );
28510 if (!SWIG_IsOK(res1
)) {
28511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BrushList_AddBrush" "', expected argument " "1"" of type '" "wxBrushList *""'");
28513 arg1
= reinterpret_cast< wxBrushList
* >(argp1
);
28514 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxBrush
, 0 | 0 );
28515 if (!SWIG_IsOK(res2
)) {
28516 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "BrushList_AddBrush" "', expected argument " "2"" of type '" "wxBrush *""'");
28518 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
28520 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28521 (arg1
)->AddBrush(arg2
);
28522 wxPyEndAllowThreads(__tstate
);
28523 if (PyErr_Occurred()) SWIG_fail
;
28525 resultobj
= SWIG_Py_Void();
28532 SWIGINTERN PyObject
*_wrap_BrushList_RemoveBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28533 PyObject
*resultobj
= 0;
28534 wxBrushList
*arg1
= (wxBrushList
*) 0 ;
28535 wxBrush
*arg2
= (wxBrush
*) 0 ;
28540 PyObject
* obj0
= 0 ;
28541 PyObject
* obj1
= 0 ;
28542 char * kwnames
[] = {
28543 (char *) "self",(char *) "brush", NULL
28546 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BrushList_RemoveBrush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28547 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxBrushList
, 0 | 0 );
28548 if (!SWIG_IsOK(res1
)) {
28549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "BrushList_RemoveBrush" "', expected argument " "1"" of type '" "wxBrushList *""'");
28551 arg1
= reinterpret_cast< wxBrushList
* >(argp1
);
28552 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxBrush
, 0 | 0 );
28553 if (!SWIG_IsOK(res2
)) {
28554 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "BrushList_RemoveBrush" "', expected argument " "2"" of type '" "wxBrush *""'");
28556 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
28558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28559 (arg1
)->RemoveBrush(arg2
);
28560 wxPyEndAllowThreads(__tstate
);
28561 if (PyErr_Occurred()) SWIG_fail
;
28563 resultobj
= SWIG_Py_Void();
28570 SWIGINTERN PyObject
*BrushList_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28572 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28573 SWIG_TypeNewClientData(SWIGTYPE_p_wxBrushList
, SWIG_NewClientData(obj
));
28574 return SWIG_Py_Void();
28577 SWIGINTERN PyObject
*_wrap_FontList_FindOrCreateFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28578 PyObject
*resultobj
= 0;
28579 wxFontList
*arg1
= (wxFontList
*) 0 ;
28584 bool arg6
= (bool) false ;
28585 wxString
const &arg7_defvalue
= wxPyEmptyString
;
28586 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28587 wxFontEncoding arg8
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
28588 wxFont
*result
= 0 ;
28601 bool temp7
= false ;
28604 PyObject
* obj0
= 0 ;
28605 PyObject
* obj1
= 0 ;
28606 PyObject
* obj2
= 0 ;
28607 PyObject
* obj3
= 0 ;
28608 PyObject
* obj4
= 0 ;
28609 PyObject
* obj5
= 0 ;
28610 PyObject
* obj6
= 0 ;
28611 PyObject
* obj7
= 0 ;
28612 char * kwnames
[] = {
28613 (char *) "self",(char *) "point_size",(char *) "family",(char *) "style",(char *) "weight",(char *) "underline",(char *) "facename",(char *) "encoding", NULL
28616 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOO:FontList_FindOrCreateFont",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
28617 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontList
, 0 | 0 );
28618 if (!SWIG_IsOK(res1
)) {
28619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "1"" of type '" "wxFontList *""'");
28621 arg1
= reinterpret_cast< wxFontList
* >(argp1
);
28622 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28623 if (!SWIG_IsOK(ecode2
)) {
28624 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "2"" of type '" "int""'");
28626 arg2
= static_cast< int >(val2
);
28627 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28628 if (!SWIG_IsOK(ecode3
)) {
28629 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "3"" of type '" "int""'");
28631 arg3
= static_cast< int >(val3
);
28632 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
28633 if (!SWIG_IsOK(ecode4
)) {
28634 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "4"" of type '" "int""'");
28636 arg4
= static_cast< int >(val4
);
28637 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
28638 if (!SWIG_IsOK(ecode5
)) {
28639 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "5"" of type '" "int""'");
28641 arg5
= static_cast< int >(val5
);
28643 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
28644 if (!SWIG_IsOK(ecode6
)) {
28645 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "6"" of type '" "bool""'");
28647 arg6
= static_cast< bool >(val6
);
28651 arg7
= wxString_in_helper(obj6
);
28652 if (arg7
== NULL
) SWIG_fail
;
28657 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
28658 if (!SWIG_IsOK(ecode8
)) {
28659 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "FontList_FindOrCreateFont" "', expected argument " "8"" of type '" "wxFontEncoding""'");
28661 arg8
= static_cast< wxFontEncoding
>(val8
);
28664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28665 result
= (wxFont
*)(arg1
)->FindOrCreateFont(arg2
,arg3
,arg4
,arg5
,arg6
,(wxString
const &)*arg7
,arg8
);
28666 wxPyEndAllowThreads(__tstate
);
28667 if (PyErr_Occurred()) SWIG_fail
;
28669 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, 0 | 0 );
28684 SWIGINTERN PyObject
*_wrap_FontList_AddFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28685 PyObject
*resultobj
= 0;
28686 wxFontList
*arg1
= (wxFontList
*) 0 ;
28687 wxFont
*arg2
= (wxFont
*) 0 ;
28692 PyObject
* obj0
= 0 ;
28693 PyObject
* obj1
= 0 ;
28694 char * kwnames
[] = {
28695 (char *) "self",(char *) "font", NULL
28698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontList_AddFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontList
, 0 | 0 );
28700 if (!SWIG_IsOK(res1
)) {
28701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontList_AddFont" "', expected argument " "1"" of type '" "wxFontList *""'");
28703 arg1
= reinterpret_cast< wxFontList
* >(argp1
);
28704 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFont
, 0 | 0 );
28705 if (!SWIG_IsOK(res2
)) {
28706 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontList_AddFont" "', expected argument " "2"" of type '" "wxFont *""'");
28708 arg2
= reinterpret_cast< wxFont
* >(argp2
);
28710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28711 (arg1
)->AddFont(arg2
);
28712 wxPyEndAllowThreads(__tstate
);
28713 if (PyErr_Occurred()) SWIG_fail
;
28715 resultobj
= SWIG_Py_Void();
28722 SWIGINTERN PyObject
*_wrap_FontList_RemoveFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28723 PyObject
*resultobj
= 0;
28724 wxFontList
*arg1
= (wxFontList
*) 0 ;
28725 wxFont
*arg2
= (wxFont
*) 0 ;
28730 PyObject
* obj0
= 0 ;
28731 PyObject
* obj1
= 0 ;
28732 char * kwnames
[] = {
28733 (char *) "self",(char *) "font", NULL
28736 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontList_RemoveFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28737 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontList
, 0 | 0 );
28738 if (!SWIG_IsOK(res1
)) {
28739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontList_RemoveFont" "', expected argument " "1"" of type '" "wxFontList *""'");
28741 arg1
= reinterpret_cast< wxFontList
* >(argp1
);
28742 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFont
, 0 | 0 );
28743 if (!SWIG_IsOK(res2
)) {
28744 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontList_RemoveFont" "', expected argument " "2"" of type '" "wxFont *""'");
28746 arg2
= reinterpret_cast< wxFont
* >(argp2
);
28748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28749 (arg1
)->RemoveFont(arg2
);
28750 wxPyEndAllowThreads(__tstate
);
28751 if (PyErr_Occurred()) SWIG_fail
;
28753 resultobj
= SWIG_Py_Void();
28760 SWIGINTERN PyObject
*FontList_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28762 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28763 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontList
, SWIG_NewClientData(obj
));
28764 return SWIG_Py_Void();
28767 SWIGINTERN PyObject
*_wrap_new_ColourDatabase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28768 PyObject
*resultobj
= 0;
28769 wxColourDatabase
*result
= 0 ;
28771 if (!SWIG_Python_UnpackTuple(args
,"new_ColourDatabase",0,0,0)) SWIG_fail
;
28773 if (!wxPyCheckForApp()) SWIG_fail
;
28774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28775 result
= (wxColourDatabase
*)new wxColourDatabase();
28776 wxPyEndAllowThreads(__tstate
);
28777 if (PyErr_Occurred()) SWIG_fail
;
28779 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourDatabase
, SWIG_POINTER_NEW
| 0 );
28786 SWIGINTERN PyObject
*_wrap_delete_ColourDatabase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28787 PyObject
*resultobj
= 0;
28788 wxColourDatabase
*arg1
= (wxColourDatabase
*) 0 ;
28791 PyObject
*swig_obj
[1] ;
28793 if (!args
) SWIG_fail
;
28794 swig_obj
[0] = args
;
28795 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourDatabase
, SWIG_POINTER_DISOWN
| 0 );
28796 if (!SWIG_IsOK(res1
)) {
28797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ColourDatabase" "', expected argument " "1"" of type '" "wxColourDatabase *""'");
28799 arg1
= reinterpret_cast< wxColourDatabase
* >(argp1
);
28801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28804 wxPyEndAllowThreads(__tstate
);
28805 if (PyErr_Occurred()) SWIG_fail
;
28807 resultobj
= SWIG_Py_Void();
28814 SWIGINTERN PyObject
*_wrap_ColourDatabase_Find(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28815 PyObject
*resultobj
= 0;
28816 wxColourDatabase
*arg1
= (wxColourDatabase
*) 0 ;
28817 wxString
*arg2
= 0 ;
28821 bool temp2
= false ;
28822 PyObject
* obj0
= 0 ;
28823 PyObject
* obj1
= 0 ;
28824 char * kwnames
[] = {
28825 (char *) "self",(char *) "name", NULL
28828 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourDatabase_Find",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28829 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourDatabase
, 0 | 0 );
28830 if (!SWIG_IsOK(res1
)) {
28831 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDatabase_Find" "', expected argument " "1"" of type '" "wxColourDatabase const *""'");
28833 arg1
= reinterpret_cast< wxColourDatabase
* >(argp1
);
28835 arg2
= wxString_in_helper(obj1
);
28836 if (arg2
== NULL
) SWIG_fail
;
28840 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28841 result
= ((wxColourDatabase
const *)arg1
)->Find((wxString
const &)*arg2
);
28842 wxPyEndAllowThreads(__tstate
);
28843 if (PyErr_Occurred()) SWIG_fail
;
28845 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
28860 SWIGINTERN PyObject
*_wrap_ColourDatabase_FindName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28861 PyObject
*resultobj
= 0;
28862 wxColourDatabase
*arg1
= (wxColourDatabase
*) 0 ;
28863 wxColour
*arg2
= 0 ;
28868 PyObject
* obj0
= 0 ;
28869 PyObject
* obj1
= 0 ;
28870 char * kwnames
[] = {
28871 (char *) "self",(char *) "colour", NULL
28874 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourDatabase_FindName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28875 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourDatabase
, 0 | 0 );
28876 if (!SWIG_IsOK(res1
)) {
28877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDatabase_FindName" "', expected argument " "1"" of type '" "wxColourDatabase const *""'");
28879 arg1
= reinterpret_cast< wxColourDatabase
* >(argp1
);
28882 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
28885 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28886 result
= ((wxColourDatabase
const *)arg1
)->FindName((wxColour
const &)*arg2
);
28887 wxPyEndAllowThreads(__tstate
);
28888 if (PyErr_Occurred()) SWIG_fail
;
28892 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
28894 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
28903 SWIGINTERN PyObject
*_wrap_ColourDatabase_AddColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28904 PyObject
*resultobj
= 0;
28905 wxColourDatabase
*arg1
= (wxColourDatabase
*) 0 ;
28906 wxString
*arg2
= 0 ;
28907 wxColour
*arg3
= 0 ;
28910 bool temp2
= false ;
28912 PyObject
* obj0
= 0 ;
28913 PyObject
* obj1
= 0 ;
28914 PyObject
* obj2
= 0 ;
28915 char * kwnames
[] = {
28916 (char *) "self",(char *) "name",(char *) "colour", NULL
28919 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ColourDatabase_AddColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
28920 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourDatabase
, 0 | 0 );
28921 if (!SWIG_IsOK(res1
)) {
28922 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDatabase_AddColour" "', expected argument " "1"" of type '" "wxColourDatabase *""'");
28924 arg1
= reinterpret_cast< wxColourDatabase
* >(argp1
);
28926 arg2
= wxString_in_helper(obj1
);
28927 if (arg2
== NULL
) SWIG_fail
;
28932 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
28935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28936 (arg1
)->AddColour((wxString
const &)*arg2
,(wxColour
const &)*arg3
);
28937 wxPyEndAllowThreads(__tstate
);
28938 if (PyErr_Occurred()) SWIG_fail
;
28940 resultobj
= SWIG_Py_Void();
28955 SWIGINTERN PyObject
*_wrap_ColourDatabase_Append(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28956 PyObject
*resultobj
= 0;
28957 wxColourDatabase
*arg1
= (wxColourDatabase
*) 0 ;
28958 wxString
*arg2
= 0 ;
28964 bool temp2
= false ;
28971 PyObject
* obj0
= 0 ;
28972 PyObject
* obj1
= 0 ;
28973 PyObject
* obj2
= 0 ;
28974 PyObject
* obj3
= 0 ;
28975 PyObject
* obj4
= 0 ;
28976 char * kwnames
[] = {
28977 (char *) "self",(char *) "name",(char *) "red",(char *) "green",(char *) "blue", NULL
28980 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:ColourDatabase_Append",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
28981 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourDatabase
, 0 | 0 );
28982 if (!SWIG_IsOK(res1
)) {
28983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDatabase_Append" "', expected argument " "1"" of type '" "wxColourDatabase *""'");
28985 arg1
= reinterpret_cast< wxColourDatabase
* >(argp1
);
28987 arg2
= wxString_in_helper(obj1
);
28988 if (arg2
== NULL
) SWIG_fail
;
28991 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28992 if (!SWIG_IsOK(ecode3
)) {
28993 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ColourDatabase_Append" "', expected argument " "3"" of type '" "int""'");
28995 arg3
= static_cast< int >(val3
);
28996 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
28997 if (!SWIG_IsOK(ecode4
)) {
28998 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "ColourDatabase_Append" "', expected argument " "4"" of type '" "int""'");
29000 arg4
= static_cast< int >(val4
);
29001 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
29002 if (!SWIG_IsOK(ecode5
)) {
29003 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "ColourDatabase_Append" "', expected argument " "5"" of type '" "int""'");
29005 arg5
= static_cast< int >(val5
);
29007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29008 wxColourDatabase_Append(arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
);
29009 wxPyEndAllowThreads(__tstate
);
29010 if (PyErr_Occurred()) SWIG_fail
;
29012 resultobj
= SWIG_Py_Void();
29027 SWIGINTERN PyObject
*ColourDatabase_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29029 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29030 SWIG_TypeNewClientData(SWIGTYPE_p_wxColourDatabase
, SWIG_NewClientData(obj
));
29031 return SWIG_Py_Void();
29034 SWIGINTERN PyObject
*ColourDatabase_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29035 return SWIG_Python_InitShadowInstance(args
);
29038 SWIGINTERN PyObject
*_wrap__wxPyInitTheFontList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29039 PyObject
*resultobj
= 0;
29040 wxFontList
*result
= 0 ;
29042 if (!SWIG_Python_UnpackTuple(args
,"_wxPyInitTheFontList",0,0,0)) SWIG_fail
;
29044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29045 result
= (wxFontList
*)_wxPyInitTheFontList();
29046 wxPyEndAllowThreads(__tstate
);
29047 if (PyErr_Occurred()) SWIG_fail
;
29049 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontList
, 0 | 0 );
29056 SWIGINTERN PyObject
*_wrap__wxPyInitThePenList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29057 PyObject
*resultobj
= 0;
29058 wxPenList
*result
= 0 ;
29060 if (!SWIG_Python_UnpackTuple(args
,"_wxPyInitThePenList",0,0,0)) SWIG_fail
;
29062 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29063 result
= (wxPenList
*)_wxPyInitThePenList();
29064 wxPyEndAllowThreads(__tstate
);
29065 if (PyErr_Occurred()) SWIG_fail
;
29067 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPenList
, 0 | 0 );
29074 SWIGINTERN PyObject
*_wrap__wxPyInitTheBrushList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29075 PyObject
*resultobj
= 0;
29076 wxBrushList
*result
= 0 ;
29078 if (!SWIG_Python_UnpackTuple(args
,"_wxPyInitTheBrushList",0,0,0)) SWIG_fail
;
29080 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29081 result
= (wxBrushList
*)_wxPyInitTheBrushList();
29082 wxPyEndAllowThreads(__tstate
);
29083 if (PyErr_Occurred()) SWIG_fail
;
29085 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBrushList
, 0 | 0 );
29092 SWIGINTERN PyObject
*_wrap__wxPyInitTheColourDatabase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29093 PyObject
*resultobj
= 0;
29094 wxColourDatabase
*result
= 0 ;
29096 if (!SWIG_Python_UnpackTuple(args
,"_wxPyInitTheColourDatabase",0,0,0)) SWIG_fail
;
29098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29099 result
= (wxColourDatabase
*)_wxPyInitTheColourDatabase();
29100 wxPyEndAllowThreads(__tstate
);
29101 if (PyErr_Occurred()) SWIG_fail
;
29103 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourDatabase
, 0 | 0 );
29110 SWIGINTERN PyObject
*_wrap_new_Effects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29111 PyObject
*resultobj
= 0;
29112 wxEffects
*result
= 0 ;
29114 if (!SWIG_Python_UnpackTuple(args
,"new_Effects",0,0,0)) SWIG_fail
;
29116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29117 result
= (wxEffects
*)new wxEffects();
29118 wxPyEndAllowThreads(__tstate
);
29119 if (PyErr_Occurred()) SWIG_fail
;
29121 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEffects
, SWIG_POINTER_NEW
| 0 );
29128 SWIGINTERN PyObject
*_wrap_Effects_GetHighlightColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29129 PyObject
*resultobj
= 0;
29130 wxEffects
*arg1
= (wxEffects
*) 0 ;
29134 PyObject
*swig_obj
[1] ;
29136 if (!args
) SWIG_fail
;
29137 swig_obj
[0] = args
;
29138 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29139 if (!SWIG_IsOK(res1
)) {
29140 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_GetHighlightColour" "', expected argument " "1"" of type '" "wxEffects const *""'");
29142 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29145 result
= ((wxEffects
const *)arg1
)->GetHighlightColour();
29146 wxPyEndAllowThreads(__tstate
);
29147 if (PyErr_Occurred()) SWIG_fail
;
29149 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
29156 SWIGINTERN PyObject
*_wrap_Effects_GetLightShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29157 PyObject
*resultobj
= 0;
29158 wxEffects
*arg1
= (wxEffects
*) 0 ;
29162 PyObject
*swig_obj
[1] ;
29164 if (!args
) SWIG_fail
;
29165 swig_obj
[0] = args
;
29166 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29167 if (!SWIG_IsOK(res1
)) {
29168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_GetLightShadow" "', expected argument " "1"" of type '" "wxEffects const *""'");
29170 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29173 result
= ((wxEffects
const *)arg1
)->GetLightShadow();
29174 wxPyEndAllowThreads(__tstate
);
29175 if (PyErr_Occurred()) SWIG_fail
;
29177 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
29184 SWIGINTERN PyObject
*_wrap_Effects_GetFaceColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29185 PyObject
*resultobj
= 0;
29186 wxEffects
*arg1
= (wxEffects
*) 0 ;
29190 PyObject
*swig_obj
[1] ;
29192 if (!args
) SWIG_fail
;
29193 swig_obj
[0] = args
;
29194 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29195 if (!SWIG_IsOK(res1
)) {
29196 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_GetFaceColour" "', expected argument " "1"" of type '" "wxEffects const *""'");
29198 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29201 result
= ((wxEffects
const *)arg1
)->GetFaceColour();
29202 wxPyEndAllowThreads(__tstate
);
29203 if (PyErr_Occurred()) SWIG_fail
;
29205 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
29212 SWIGINTERN PyObject
*_wrap_Effects_GetMediumShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29213 PyObject
*resultobj
= 0;
29214 wxEffects
*arg1
= (wxEffects
*) 0 ;
29218 PyObject
*swig_obj
[1] ;
29220 if (!args
) SWIG_fail
;
29221 swig_obj
[0] = args
;
29222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29223 if (!SWIG_IsOK(res1
)) {
29224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_GetMediumShadow" "', expected argument " "1"" of type '" "wxEffects const *""'");
29226 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29229 result
= ((wxEffects
const *)arg1
)->GetMediumShadow();
29230 wxPyEndAllowThreads(__tstate
);
29231 if (PyErr_Occurred()) SWIG_fail
;
29233 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
29240 SWIGINTERN PyObject
*_wrap_Effects_GetDarkShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29241 PyObject
*resultobj
= 0;
29242 wxEffects
*arg1
= (wxEffects
*) 0 ;
29246 PyObject
*swig_obj
[1] ;
29248 if (!args
) SWIG_fail
;
29249 swig_obj
[0] = args
;
29250 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29251 if (!SWIG_IsOK(res1
)) {
29252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_GetDarkShadow" "', expected argument " "1"" of type '" "wxEffects const *""'");
29254 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29257 result
= ((wxEffects
const *)arg1
)->GetDarkShadow();
29258 wxPyEndAllowThreads(__tstate
);
29259 if (PyErr_Occurred()) SWIG_fail
;
29261 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
29268 SWIGINTERN PyObject
*_wrap_Effects_SetHighlightColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29269 PyObject
*resultobj
= 0;
29270 wxEffects
*arg1
= (wxEffects
*) 0 ;
29271 wxColour
*arg2
= 0 ;
29275 PyObject
* obj0
= 0 ;
29276 PyObject
* obj1
= 0 ;
29277 char * kwnames
[] = {
29278 (char *) "self",(char *) "c", NULL
29281 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Effects_SetHighlightColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29282 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29283 if (!SWIG_IsOK(res1
)) {
29284 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_SetHighlightColour" "', expected argument " "1"" of type '" "wxEffects *""'");
29286 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29289 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29293 (arg1
)->SetHighlightColour((wxColour
const &)*arg2
);
29294 wxPyEndAllowThreads(__tstate
);
29295 if (PyErr_Occurred()) SWIG_fail
;
29297 resultobj
= SWIG_Py_Void();
29304 SWIGINTERN PyObject
*_wrap_Effects_SetLightShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29305 PyObject
*resultobj
= 0;
29306 wxEffects
*arg1
= (wxEffects
*) 0 ;
29307 wxColour
*arg2
= 0 ;
29311 PyObject
* obj0
= 0 ;
29312 PyObject
* obj1
= 0 ;
29313 char * kwnames
[] = {
29314 (char *) "self",(char *) "c", NULL
29317 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Effects_SetLightShadow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29318 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29319 if (!SWIG_IsOK(res1
)) {
29320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_SetLightShadow" "', expected argument " "1"" of type '" "wxEffects *""'");
29322 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29325 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29329 (arg1
)->SetLightShadow((wxColour
const &)*arg2
);
29330 wxPyEndAllowThreads(__tstate
);
29331 if (PyErr_Occurred()) SWIG_fail
;
29333 resultobj
= SWIG_Py_Void();
29340 SWIGINTERN PyObject
*_wrap_Effects_SetFaceColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29341 PyObject
*resultobj
= 0;
29342 wxEffects
*arg1
= (wxEffects
*) 0 ;
29343 wxColour
*arg2
= 0 ;
29347 PyObject
* obj0
= 0 ;
29348 PyObject
* obj1
= 0 ;
29349 char * kwnames
[] = {
29350 (char *) "self",(char *) "c", NULL
29353 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Effects_SetFaceColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29354 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29355 if (!SWIG_IsOK(res1
)) {
29356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_SetFaceColour" "', expected argument " "1"" of type '" "wxEffects *""'");
29358 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29361 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29365 (arg1
)->SetFaceColour((wxColour
const &)*arg2
);
29366 wxPyEndAllowThreads(__tstate
);
29367 if (PyErr_Occurred()) SWIG_fail
;
29369 resultobj
= SWIG_Py_Void();
29376 SWIGINTERN PyObject
*_wrap_Effects_SetMediumShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29377 PyObject
*resultobj
= 0;
29378 wxEffects
*arg1
= (wxEffects
*) 0 ;
29379 wxColour
*arg2
= 0 ;
29383 PyObject
* obj0
= 0 ;
29384 PyObject
* obj1
= 0 ;
29385 char * kwnames
[] = {
29386 (char *) "self",(char *) "c", NULL
29389 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Effects_SetMediumShadow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29390 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29391 if (!SWIG_IsOK(res1
)) {
29392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_SetMediumShadow" "', expected argument " "1"" of type '" "wxEffects *""'");
29394 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29397 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29401 (arg1
)->SetMediumShadow((wxColour
const &)*arg2
);
29402 wxPyEndAllowThreads(__tstate
);
29403 if (PyErr_Occurred()) SWIG_fail
;
29405 resultobj
= SWIG_Py_Void();
29412 SWIGINTERN PyObject
*_wrap_Effects_SetDarkShadow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29413 PyObject
*resultobj
= 0;
29414 wxEffects
*arg1
= (wxEffects
*) 0 ;
29415 wxColour
*arg2
= 0 ;
29419 PyObject
* obj0
= 0 ;
29420 PyObject
* obj1
= 0 ;
29421 char * kwnames
[] = {
29422 (char *) "self",(char *) "c", NULL
29425 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Effects_SetDarkShadow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29426 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29427 if (!SWIG_IsOK(res1
)) {
29428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_SetDarkShadow" "', expected argument " "1"" of type '" "wxEffects *""'");
29430 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29433 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29437 (arg1
)->SetDarkShadow((wxColour
const &)*arg2
);
29438 wxPyEndAllowThreads(__tstate
);
29439 if (PyErr_Occurred()) SWIG_fail
;
29441 resultobj
= SWIG_Py_Void();
29448 SWIGINTERN PyObject
*_wrap_Effects_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29449 PyObject
*resultobj
= 0;
29450 wxEffects
*arg1
= (wxEffects
*) 0 ;
29451 wxColour
*arg2
= 0 ;
29452 wxColour
*arg3
= 0 ;
29453 wxColour
*arg4
= 0 ;
29454 wxColour
*arg5
= 0 ;
29455 wxColour
*arg6
= 0 ;
29463 PyObject
* obj0
= 0 ;
29464 PyObject
* obj1
= 0 ;
29465 PyObject
* obj2
= 0 ;
29466 PyObject
* obj3
= 0 ;
29467 PyObject
* obj4
= 0 ;
29468 PyObject
* obj5
= 0 ;
29469 char * kwnames
[] = {
29470 (char *) "self",(char *) "highlightColour",(char *) "lightShadow",(char *) "faceColour",(char *) "mediumShadow",(char *) "darkShadow", NULL
29473 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:Effects_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
29474 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29475 if (!SWIG_IsOK(res1
)) {
29476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_Set" "', expected argument " "1"" of type '" "wxEffects *""'");
29478 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29481 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
29485 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
29489 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
29493 if ( ! wxColour_helper(obj4
, &arg5
)) SWIG_fail
;
29497 if ( ! wxColour_helper(obj5
, &arg6
)) SWIG_fail
;
29500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29501 (arg1
)->Set((wxColour
const &)*arg2
,(wxColour
const &)*arg3
,(wxColour
const &)*arg4
,(wxColour
const &)*arg5
,(wxColour
const &)*arg6
);
29502 wxPyEndAllowThreads(__tstate
);
29503 if (PyErr_Occurred()) SWIG_fail
;
29505 resultobj
= SWIG_Py_Void();
29512 SWIGINTERN PyObject
*_wrap_Effects_DrawSunkenEdge(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29513 PyObject
*resultobj
= 0;
29514 wxEffects
*arg1
= (wxEffects
*) 0 ;
29517 int arg4
= (int) 1 ;
29525 PyObject
* obj0
= 0 ;
29526 PyObject
* obj1
= 0 ;
29527 PyObject
* obj2
= 0 ;
29528 PyObject
* obj3
= 0 ;
29529 char * kwnames
[] = {
29530 (char *) "self",(char *) "dc",(char *) "rect",(char *) "borderSize", NULL
29533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Effects_DrawSunkenEdge",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
29534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29535 if (!SWIG_IsOK(res1
)) {
29536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_DrawSunkenEdge" "', expected argument " "1"" of type '" "wxEffects *""'");
29538 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29539 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
29540 if (!SWIG_IsOK(res2
)) {
29541 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Effects_DrawSunkenEdge" "', expected argument " "2"" of type '" "wxDC &""'");
29544 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Effects_DrawSunkenEdge" "', expected argument " "2"" of type '" "wxDC &""'");
29546 arg2
= reinterpret_cast< wxDC
* >(argp2
);
29549 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
29552 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
29553 if (!SWIG_IsOK(ecode4
)) {
29554 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Effects_DrawSunkenEdge" "', expected argument " "4"" of type '" "int""'");
29556 arg4
= static_cast< int >(val4
);
29559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29560 (arg1
)->DrawSunkenEdge(*arg2
,(wxRect
const &)*arg3
,arg4
);
29561 wxPyEndAllowThreads(__tstate
);
29562 if (PyErr_Occurred()) SWIG_fail
;
29564 resultobj
= SWIG_Py_Void();
29571 SWIGINTERN PyObject
*_wrap_Effects_TileBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29572 PyObject
*resultobj
= 0;
29573 wxEffects
*arg1
= (wxEffects
*) 0 ;
29576 wxBitmap
*arg4
= 0 ;
29585 PyObject
* obj0
= 0 ;
29586 PyObject
* obj1
= 0 ;
29587 PyObject
* obj2
= 0 ;
29588 PyObject
* obj3
= 0 ;
29589 char * kwnames
[] = {
29590 (char *) "self",(char *) "rect",(char *) "dc",(char *) "bitmap", NULL
29593 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:Effects_TileBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
29594 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxEffects
, 0 | 0 );
29595 if (!SWIG_IsOK(res1
)) {
29596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Effects_TileBitmap" "', expected argument " "1"" of type '" "wxEffects *""'");
29598 arg1
= reinterpret_cast< wxEffects
* >(argp1
);
29601 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
29603 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
29604 if (!SWIG_IsOK(res3
)) {
29605 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Effects_TileBitmap" "', expected argument " "3"" of type '" "wxDC &""'");
29608 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Effects_TileBitmap" "', expected argument " "3"" of type '" "wxDC &""'");
29610 arg3
= reinterpret_cast< wxDC
* >(argp3
);
29611 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 );
29612 if (!SWIG_IsOK(res4
)) {
29613 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "Effects_TileBitmap" "', expected argument " "4"" of type '" "wxBitmap &""'");
29616 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "Effects_TileBitmap" "', expected argument " "4"" of type '" "wxBitmap &""'");
29618 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
29620 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29621 result
= (bool)(arg1
)->TileBitmap((wxRect
const &)*arg2
,*arg3
,*arg4
);
29622 wxPyEndAllowThreads(__tstate
);
29623 if (PyErr_Occurred()) SWIG_fail
;
29626 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29634 SWIGINTERN PyObject
*Effects_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29636 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29637 SWIG_TypeNewClientData(SWIGTYPE_p_wxEffects
, SWIG_NewClientData(obj
));
29638 return SWIG_Py_Void();
29641 SWIGINTERN PyObject
*Effects_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29642 return SWIG_Python_InitShadowInstance(args
);
29645 SWIGINTERN PyObject
*_wrap_new_SplitterRenderParams(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29646 PyObject
*resultobj
= 0;
29650 wxSplitterRenderParams
*result
= 0 ;
29657 PyObject
* obj0
= 0 ;
29658 PyObject
* obj1
= 0 ;
29659 PyObject
* obj2
= 0 ;
29660 char * kwnames
[] = {
29661 (char *) "widthSash_",(char *) "border_",(char *) "isSens_", NULL
29664 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:new_SplitterRenderParams",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29665 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
29666 if (!SWIG_IsOK(ecode1
)) {
29667 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_SplitterRenderParams" "', expected argument " "1"" of type '" "int""'");
29669 arg1
= static_cast< int >(val1
);
29670 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29671 if (!SWIG_IsOK(ecode2
)) {
29672 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SplitterRenderParams" "', expected argument " "2"" of type '" "int""'");
29674 arg2
= static_cast< int >(val2
);
29675 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
29676 if (!SWIG_IsOK(ecode3
)) {
29677 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_SplitterRenderParams" "', expected argument " "3"" of type '" "bool""'");
29679 arg3
= static_cast< bool >(val3
);
29681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29682 result
= (wxSplitterRenderParams
*)new wxSplitterRenderParams(arg1
,arg2
,arg3
);
29683 wxPyEndAllowThreads(__tstate
);
29684 if (PyErr_Occurred()) SWIG_fail
;
29686 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterRenderParams
, SWIG_POINTER_NEW
| 0 );
29693 SWIGINTERN PyObject
*_wrap_delete_SplitterRenderParams(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29694 PyObject
*resultobj
= 0;
29695 wxSplitterRenderParams
*arg1
= (wxSplitterRenderParams
*) 0 ;
29698 PyObject
*swig_obj
[1] ;
29700 if (!args
) SWIG_fail
;
29701 swig_obj
[0] = args
;
29702 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterRenderParams
, SWIG_POINTER_DISOWN
| 0 );
29703 if (!SWIG_IsOK(res1
)) {
29704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_SplitterRenderParams" "', expected argument " "1"" of type '" "wxSplitterRenderParams *""'");
29706 arg1
= reinterpret_cast< wxSplitterRenderParams
* >(argp1
);
29708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29711 wxPyEndAllowThreads(__tstate
);
29712 if (PyErr_Occurred()) SWIG_fail
;
29714 resultobj
= SWIG_Py_Void();
29721 SWIGINTERN PyObject
*_wrap_SplitterRenderParams_widthSash_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29722 PyObject
*resultobj
= 0;
29723 wxSplitterRenderParams
*arg1
= (wxSplitterRenderParams
*) 0 ;
29727 PyObject
*swig_obj
[1] ;
29729 if (!args
) SWIG_fail
;
29730 swig_obj
[0] = args
;
29731 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterRenderParams
, 0 | 0 );
29732 if (!SWIG_IsOK(res1
)) {
29733 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterRenderParams_widthSash_get" "', expected argument " "1"" of type '" "wxSplitterRenderParams *""'");
29735 arg1
= reinterpret_cast< wxSplitterRenderParams
* >(argp1
);
29736 result
= (int)(int) ((arg1
)->widthSash
);
29737 resultobj
= SWIG_From_int(static_cast< int >(result
));
29744 SWIGINTERN PyObject
*_wrap_SplitterRenderParams_border_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29745 PyObject
*resultobj
= 0;
29746 wxSplitterRenderParams
*arg1
= (wxSplitterRenderParams
*) 0 ;
29750 PyObject
*swig_obj
[1] ;
29752 if (!args
) SWIG_fail
;
29753 swig_obj
[0] = args
;
29754 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterRenderParams
, 0 | 0 );
29755 if (!SWIG_IsOK(res1
)) {
29756 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterRenderParams_border_get" "', expected argument " "1"" of type '" "wxSplitterRenderParams *""'");
29758 arg1
= reinterpret_cast< wxSplitterRenderParams
* >(argp1
);
29759 result
= (int)(int) ((arg1
)->border
);
29760 resultobj
= SWIG_From_int(static_cast< int >(result
));
29767 SWIGINTERN PyObject
*_wrap_SplitterRenderParams_isHotSensitive_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29768 PyObject
*resultobj
= 0;
29769 wxSplitterRenderParams
*arg1
= (wxSplitterRenderParams
*) 0 ;
29773 PyObject
*swig_obj
[1] ;
29775 if (!args
) SWIG_fail
;
29776 swig_obj
[0] = args
;
29777 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterRenderParams
, 0 | 0 );
29778 if (!SWIG_IsOK(res1
)) {
29779 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterRenderParams_isHotSensitive_get" "', expected argument " "1"" of type '" "wxSplitterRenderParams *""'");
29781 arg1
= reinterpret_cast< wxSplitterRenderParams
* >(argp1
);
29782 result
= (bool)(bool) ((arg1
)->isHotSensitive
);
29783 resultobj
= SWIG_From_bool(static_cast< bool >(result
));
29790 SWIGINTERN PyObject
*SplitterRenderParams_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29792 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29793 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplitterRenderParams
, SWIG_NewClientData(obj
));
29794 return SWIG_Py_Void();
29797 SWIGINTERN PyObject
*SplitterRenderParams_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29798 return SWIG_Python_InitShadowInstance(args
);
29801 SWIGINTERN PyObject
*_wrap_new_HeaderButtonParams(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29802 PyObject
*resultobj
= 0;
29803 wxHeaderButtonParams
*result
= 0 ;
29805 if (!SWIG_Python_UnpackTuple(args
,"new_HeaderButtonParams",0,0,0)) SWIG_fail
;
29807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29808 result
= (wxHeaderButtonParams
*)new wxHeaderButtonParams();
29809 wxPyEndAllowThreads(__tstate
);
29810 if (PyErr_Occurred()) SWIG_fail
;
29812 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxHeaderButtonParams
, SWIG_POINTER_NEW
| 0 );
29819 SWIGINTERN PyObject
*_wrap_delete_HeaderButtonParams(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29820 PyObject
*resultobj
= 0;
29821 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29824 PyObject
*swig_obj
[1] ;
29826 if (!args
) SWIG_fail
;
29827 swig_obj
[0] = args
;
29828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, SWIG_POINTER_DISOWN
| 0 );
29829 if (!SWIG_IsOK(res1
)) {
29830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_HeaderButtonParams" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29832 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29837 wxPyEndAllowThreads(__tstate
);
29838 if (PyErr_Occurred()) SWIG_fail
;
29840 resultobj
= SWIG_Py_Void();
29847 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_arrowColour_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29848 PyObject
*resultobj
= 0;
29849 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29850 wxColour
*arg2
= (wxColour
*) 0 ;
29854 PyObject
*swig_obj
[2] ;
29856 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_arrowColour_set",2,2,swig_obj
)) SWIG_fail
;
29857 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29858 if (!SWIG_IsOK(res1
)) {
29859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_arrowColour_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29861 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29864 if ( ! wxColour_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
29866 if (arg1
) (arg1
)->m_arrowColour
= *arg2
;
29868 resultobj
= SWIG_Py_Void();
29875 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_arrowColour_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29876 PyObject
*resultobj
= 0;
29877 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29878 wxColour
*result
= 0 ;
29881 PyObject
*swig_obj
[1] ;
29883 if (!args
) SWIG_fail
;
29884 swig_obj
[0] = args
;
29885 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29886 if (!SWIG_IsOK(res1
)) {
29887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_arrowColour_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29889 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29890 result
= (wxColour
*)& ((arg1
)->m_arrowColour
);
29891 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
29898 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_selectionColour_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29899 PyObject
*resultobj
= 0;
29900 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29901 wxColour
*arg2
= (wxColour
*) 0 ;
29905 PyObject
*swig_obj
[2] ;
29907 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_selectionColour_set",2,2,swig_obj
)) SWIG_fail
;
29908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29909 if (!SWIG_IsOK(res1
)) {
29910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_selectionColour_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29912 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29915 if ( ! wxColour_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
29917 if (arg1
) (arg1
)->m_selectionColour
= *arg2
;
29919 resultobj
= SWIG_Py_Void();
29926 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_selectionColour_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29927 PyObject
*resultobj
= 0;
29928 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29929 wxColour
*result
= 0 ;
29932 PyObject
*swig_obj
[1] ;
29934 if (!args
) SWIG_fail
;
29935 swig_obj
[0] = args
;
29936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29937 if (!SWIG_IsOK(res1
)) {
29938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_selectionColour_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29940 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29941 result
= (wxColour
*)& ((arg1
)->m_selectionColour
);
29942 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
29949 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelText_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29950 PyObject
*resultobj
= 0;
29951 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29952 wxString
*arg2
= (wxString
*) 0 ;
29955 bool temp2
= false ;
29956 PyObject
*swig_obj
[2] ;
29958 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_labelText_set",2,2,swig_obj
)) SWIG_fail
;
29959 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29960 if (!SWIG_IsOK(res1
)) {
29961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelText_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
29963 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
29965 arg2
= wxString_in_helper(swig_obj
[1]);
29966 if (arg2
== NULL
) SWIG_fail
;
29969 if (arg1
) (arg1
)->m_labelText
= *arg2
;
29971 resultobj
= SWIG_Py_Void();
29986 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelText_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29987 PyObject
*resultobj
= 0;
29988 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
29989 wxString
*result
= 0 ;
29992 PyObject
*swig_obj
[1] ;
29994 if (!args
) SWIG_fail
;
29995 swig_obj
[0] = args
;
29996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
29997 if (!SWIG_IsOK(res1
)) {
29998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelText_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30000 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30001 result
= (wxString
*)& ((arg1
)->m_labelText
);
30004 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
30006 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
30015 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelFont_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30016 PyObject
*resultobj
= 0;
30017 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30018 wxFont
*arg2
= (wxFont
*) 0 ;
30023 PyObject
*swig_obj
[2] ;
30025 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_labelFont_set",2,2,swig_obj
)) SWIG_fail
;
30026 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30027 if (!SWIG_IsOK(res1
)) {
30028 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelFont_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30030 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30031 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFont
, 0 | 0 );
30032 if (!SWIG_IsOK(res2
)) {
30033 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "HeaderButtonParams_m_labelFont_set" "', expected argument " "2"" of type '" "wxFont *""'");
30035 arg2
= reinterpret_cast< wxFont
* >(argp2
);
30036 if (arg1
) (arg1
)->m_labelFont
= *arg2
;
30038 resultobj
= SWIG_Py_Void();
30045 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelFont_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30046 PyObject
*resultobj
= 0;
30047 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30048 wxFont
*result
= 0 ;
30051 PyObject
*swig_obj
[1] ;
30053 if (!args
) SWIG_fail
;
30054 swig_obj
[0] = args
;
30055 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30056 if (!SWIG_IsOK(res1
)) {
30057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelFont_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30059 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30060 result
= (wxFont
*)& ((arg1
)->m_labelFont
);
30061 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFont
, 0 | 0 );
30068 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelColour_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30069 PyObject
*resultobj
= 0;
30070 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30071 wxColour
*arg2
= (wxColour
*) 0 ;
30075 PyObject
*swig_obj
[2] ;
30077 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_labelColour_set",2,2,swig_obj
)) SWIG_fail
;
30078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30079 if (!SWIG_IsOK(res1
)) {
30080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelColour_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30082 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30085 if ( ! wxColour_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
30087 if (arg1
) (arg1
)->m_labelColour
= *arg2
;
30089 resultobj
= SWIG_Py_Void();
30096 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelColour_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30097 PyObject
*resultobj
= 0;
30098 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30099 wxColour
*result
= 0 ;
30102 PyObject
*swig_obj
[1] ;
30104 if (!args
) SWIG_fail
;
30105 swig_obj
[0] = args
;
30106 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30107 if (!SWIG_IsOK(res1
)) {
30108 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelColour_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30110 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30111 result
= (wxColour
*)& ((arg1
)->m_labelColour
);
30112 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
30119 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelBitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30120 PyObject
*resultobj
= 0;
30121 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30122 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
30127 PyObject
*swig_obj
[2] ;
30129 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_labelBitmap_set",2,2,swig_obj
)) SWIG_fail
;
30130 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30131 if (!SWIG_IsOK(res1
)) {
30132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelBitmap_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30134 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30135 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
30136 if (!SWIG_IsOK(res2
)) {
30137 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "HeaderButtonParams_m_labelBitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
30139 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
30140 if (arg1
) (arg1
)->m_labelBitmap
= *arg2
;
30142 resultobj
= SWIG_Py_Void();
30149 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelBitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30150 PyObject
*resultobj
= 0;
30151 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30152 wxBitmap
*result
= 0 ;
30155 PyObject
*swig_obj
[1] ;
30157 if (!args
) SWIG_fail
;
30158 swig_obj
[0] = args
;
30159 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30160 if (!SWIG_IsOK(res1
)) {
30161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelBitmap_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30163 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30164 result
= (wxBitmap
*)& ((arg1
)->m_labelBitmap
);
30165 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
30172 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelAlignment_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30173 PyObject
*resultobj
= 0;
30174 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30180 PyObject
*swig_obj
[2] ;
30182 if (!SWIG_Python_UnpackTuple(args
,"HeaderButtonParams_m_labelAlignment_set",2,2,swig_obj
)) SWIG_fail
;
30183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30184 if (!SWIG_IsOK(res1
)) {
30185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelAlignment_set" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30187 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30188 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
30189 if (!SWIG_IsOK(ecode2
)) {
30190 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "HeaderButtonParams_m_labelAlignment_set" "', expected argument " "2"" of type '" "int""'");
30192 arg2
= static_cast< int >(val2
);
30193 if (arg1
) (arg1
)->m_labelAlignment
= arg2
;
30195 resultobj
= SWIG_Py_Void();
30202 SWIGINTERN PyObject
*_wrap_HeaderButtonParams_m_labelAlignment_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30203 PyObject
*resultobj
= 0;
30204 wxHeaderButtonParams
*arg1
= (wxHeaderButtonParams
*) 0 ;
30208 PyObject
*swig_obj
[1] ;
30210 if (!args
) SWIG_fail
;
30211 swig_obj
[0] = args
;
30212 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30213 if (!SWIG_IsOK(res1
)) {
30214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HeaderButtonParams_m_labelAlignment_get" "', expected argument " "1"" of type '" "wxHeaderButtonParams *""'");
30216 arg1
= reinterpret_cast< wxHeaderButtonParams
* >(argp1
);
30217 result
= (int) ((arg1
)->m_labelAlignment
);
30218 resultobj
= SWIG_From_int(static_cast< int >(result
));
30225 SWIGINTERN PyObject
*HeaderButtonParams_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30227 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30228 SWIG_TypeNewClientData(SWIGTYPE_p_wxHeaderButtonParams
, SWIG_NewClientData(obj
));
30229 return SWIG_Py_Void();
30232 SWIGINTERN PyObject
*HeaderButtonParams_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30233 return SWIG_Python_InitShadowInstance(args
);
30236 SWIGINTERN PyObject
*_wrap_new_RendererVersion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30237 PyObject
*resultobj
= 0;
30240 wxRendererVersion
*result
= 0 ;
30245 PyObject
* obj0
= 0 ;
30246 PyObject
* obj1
= 0 ;
30247 char * kwnames
[] = {
30248 (char *) "version_",(char *) "age_", NULL
30251 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_RendererVersion",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30252 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
30253 if (!SWIG_IsOK(ecode1
)) {
30254 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_RendererVersion" "', expected argument " "1"" of type '" "int""'");
30256 arg1
= static_cast< int >(val1
);
30257 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30258 if (!SWIG_IsOK(ecode2
)) {
30259 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_RendererVersion" "', expected argument " "2"" of type '" "int""'");
30261 arg2
= static_cast< int >(val2
);
30263 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30264 result
= (wxRendererVersion
*)new wxRendererVersion(arg1
,arg2
);
30265 wxPyEndAllowThreads(__tstate
);
30266 if (PyErr_Occurred()) SWIG_fail
;
30268 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRendererVersion
, SWIG_POINTER_NEW
| 0 );
30275 SWIGINTERN PyObject
*_wrap_delete_RendererVersion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30276 PyObject
*resultobj
= 0;
30277 wxRendererVersion
*arg1
= (wxRendererVersion
*) 0 ;
30280 PyObject
*swig_obj
[1] ;
30282 if (!args
) SWIG_fail
;
30283 swig_obj
[0] = args
;
30284 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRendererVersion
, SWIG_POINTER_DISOWN
| 0 );
30285 if (!SWIG_IsOK(res1
)) {
30286 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_RendererVersion" "', expected argument " "1"" of type '" "wxRendererVersion *""'");
30288 arg1
= reinterpret_cast< wxRendererVersion
* >(argp1
);
30290 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30293 wxPyEndAllowThreads(__tstate
);
30294 if (PyErr_Occurred()) SWIG_fail
;
30296 resultobj
= SWIG_Py_Void();
30303 SWIGINTERN PyObject
*_wrap_RendererVersion_IsCompatible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30304 PyObject
*resultobj
= 0;
30305 wxRendererVersion
*arg1
= 0 ;
30309 PyObject
* obj0
= 0 ;
30310 char * kwnames
[] = {
30311 (char *) "ver", NULL
30314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RendererVersion_IsCompatible",kwnames
,&obj0
)) SWIG_fail
;
30315 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxRendererVersion
, 0 | 0);
30316 if (!SWIG_IsOK(res1
)) {
30317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererVersion_IsCompatible" "', expected argument " "1"" of type '" "wxRendererVersion const &""'");
30320 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererVersion_IsCompatible" "', expected argument " "1"" of type '" "wxRendererVersion const &""'");
30322 arg1
= reinterpret_cast< wxRendererVersion
* >(argp1
);
30324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30325 result
= (bool)wxRendererVersion::IsCompatible((wxRendererVersion
const &)*arg1
);
30326 wxPyEndAllowThreads(__tstate
);
30327 if (PyErr_Occurred()) SWIG_fail
;
30330 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30338 SWIGINTERN PyObject
*_wrap_RendererVersion_version_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30339 PyObject
*resultobj
= 0;
30340 wxRendererVersion
*arg1
= (wxRendererVersion
*) 0 ;
30344 PyObject
*swig_obj
[1] ;
30346 if (!args
) SWIG_fail
;
30347 swig_obj
[0] = args
;
30348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRendererVersion
, 0 | 0 );
30349 if (!SWIG_IsOK(res1
)) {
30350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererVersion_version_get" "', expected argument " "1"" of type '" "wxRendererVersion *""'");
30352 arg1
= reinterpret_cast< wxRendererVersion
* >(argp1
);
30353 result
= (int)(int) ((arg1
)->version
);
30354 resultobj
= SWIG_From_int(static_cast< int >(result
));
30361 SWIGINTERN PyObject
*_wrap_RendererVersion_age_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30362 PyObject
*resultobj
= 0;
30363 wxRendererVersion
*arg1
= (wxRendererVersion
*) 0 ;
30367 PyObject
*swig_obj
[1] ;
30369 if (!args
) SWIG_fail
;
30370 swig_obj
[0] = args
;
30371 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRendererVersion
, 0 | 0 );
30372 if (!SWIG_IsOK(res1
)) {
30373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererVersion_age_get" "', expected argument " "1"" of type '" "wxRendererVersion *""'");
30375 arg1
= reinterpret_cast< wxRendererVersion
* >(argp1
);
30376 result
= (int)(int) ((arg1
)->age
);
30377 resultobj
= SWIG_From_int(static_cast< int >(result
));
30384 SWIGINTERN PyObject
*RendererVersion_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30386 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30387 SWIG_TypeNewClientData(SWIGTYPE_p_wxRendererVersion
, SWIG_NewClientData(obj
));
30388 return SWIG_Py_Void();
30391 SWIGINTERN PyObject
*RendererVersion_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30392 return SWIG_Python_InitShadowInstance(args
);
30395 SWIGINTERN PyObject
*_wrap_RendererNative_DrawHeaderButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30396 PyObject
*resultobj
= 0;
30397 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30398 wxWindow
*arg2
= (wxWindow
*) 0 ;
30401 int arg5
= (int) 0 ;
30402 wxHeaderSortIconType arg6
= (wxHeaderSortIconType
) wxHDR_SORT_ICON_NONE
;
30403 wxHeaderButtonParams
*arg7
= (wxHeaderButtonParams
*) NULL
;
30417 PyObject
* obj0
= 0 ;
30418 PyObject
* obj1
= 0 ;
30419 PyObject
* obj2
= 0 ;
30420 PyObject
* obj3
= 0 ;
30421 PyObject
* obj4
= 0 ;
30422 PyObject
* obj5
= 0 ;
30423 PyObject
* obj6
= 0 ;
30424 char * kwnames
[] = {
30425 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags",(char *) "sortArrow",(char *) "params", NULL
30428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:RendererNative_DrawHeaderButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30429 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30430 if (!SWIG_IsOK(res1
)) {
30431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30433 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30434 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30435 if (!SWIG_IsOK(res2
)) {
30436 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "2"" of type '" "wxWindow *""'");
30438 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30439 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30440 if (!SWIG_IsOK(res3
)) {
30441 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "3"" of type '" "wxDC &""'");
30444 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "3"" of type '" "wxDC &""'");
30446 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30449 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30452 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30453 if (!SWIG_IsOK(ecode5
)) {
30454 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "5"" of type '" "int""'");
30456 arg5
= static_cast< int >(val5
);
30459 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
30460 if (!SWIG_IsOK(ecode6
)) {
30461 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "6"" of type '" "wxHeaderSortIconType""'");
30463 arg6
= static_cast< wxHeaderSortIconType
>(val6
);
30466 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30467 if (!SWIG_IsOK(res7
)) {
30468 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "RendererNative_DrawHeaderButton" "', expected argument " "7"" of type '" "wxHeaderButtonParams *""'");
30470 arg7
= reinterpret_cast< wxHeaderButtonParams
* >(argp7
);
30473 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30474 (arg1
)->DrawHeaderButton(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
);
30475 wxPyEndAllowThreads(__tstate
);
30476 if (PyErr_Occurred()) SWIG_fail
;
30478 resultobj
= SWIG_Py_Void();
30485 SWIGINTERN PyObject
*_wrap_RendererNative_DrawHeaderButtonContents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30486 PyObject
*resultobj
= 0;
30487 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30488 wxWindow
*arg2
= (wxWindow
*) 0 ;
30491 int arg5
= (int) 0 ;
30492 wxHeaderSortIconType arg6
= (wxHeaderSortIconType
) wxHDR_SORT_ICON_NONE
;
30493 wxHeaderButtonParams
*arg7
= (wxHeaderButtonParams
*) NULL
;
30507 PyObject
* obj0
= 0 ;
30508 PyObject
* obj1
= 0 ;
30509 PyObject
* obj2
= 0 ;
30510 PyObject
* obj3
= 0 ;
30511 PyObject
* obj4
= 0 ;
30512 PyObject
* obj5
= 0 ;
30513 PyObject
* obj6
= 0 ;
30514 char * kwnames
[] = {
30515 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags",(char *) "sortArrow",(char *) "params", NULL
30518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:RendererNative_DrawHeaderButtonContents",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30520 if (!SWIG_IsOK(res1
)) {
30521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30523 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30524 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30525 if (!SWIG_IsOK(res2
)) {
30526 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "2"" of type '" "wxWindow *""'");
30528 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30529 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30530 if (!SWIG_IsOK(res3
)) {
30531 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "3"" of type '" "wxDC &""'");
30534 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "3"" of type '" "wxDC &""'");
30536 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30539 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30542 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30543 if (!SWIG_IsOK(ecode5
)) {
30544 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "5"" of type '" "int""'");
30546 arg5
= static_cast< int >(val5
);
30549 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
30550 if (!SWIG_IsOK(ecode6
)) {
30551 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "6"" of type '" "wxHeaderSortIconType""'");
30553 arg6
= static_cast< wxHeaderSortIconType
>(val6
);
30556 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_wxHeaderButtonParams
, 0 | 0 );
30557 if (!SWIG_IsOK(res7
)) {
30558 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "RendererNative_DrawHeaderButtonContents" "', expected argument " "7"" of type '" "wxHeaderButtonParams *""'");
30560 arg7
= reinterpret_cast< wxHeaderButtonParams
* >(argp7
);
30563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30564 (arg1
)->DrawHeaderButtonContents(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
);
30565 wxPyEndAllowThreads(__tstate
);
30566 if (PyErr_Occurred()) SWIG_fail
;
30568 resultobj
= SWIG_Py_Void();
30575 SWIGINTERN PyObject
*_wrap_RendererNative_GetHeaderButtonHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30576 PyObject
*resultobj
= 0;
30577 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30578 wxWindow
*arg2
= (wxWindow
*) 0 ;
30584 PyObject
* obj0
= 0 ;
30585 PyObject
* obj1
= 0 ;
30586 char * kwnames
[] = {
30587 (char *) "self",(char *) "win", NULL
30590 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RendererNative_GetHeaderButtonHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30591 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30592 if (!SWIG_IsOK(res1
)) {
30593 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_GetHeaderButtonHeight" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30595 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30596 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30597 if (!SWIG_IsOK(res2
)) {
30598 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_GetHeaderButtonHeight" "', expected argument " "2"" of type '" "wxWindow *""'");
30600 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30603 result
= (int)(arg1
)->GetHeaderButtonHeight(arg2
);
30604 wxPyEndAllowThreads(__tstate
);
30605 if (PyErr_Occurred()) SWIG_fail
;
30607 resultobj
= SWIG_From_int(static_cast< int >(result
));
30614 SWIGINTERN PyObject
*_wrap_RendererNative_DrawTreeItemButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30615 PyObject
*resultobj
= 0;
30616 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30617 wxWindow
*arg2
= (wxWindow
*) 0 ;
30620 int arg5
= (int) 0 ;
30630 PyObject
* obj0
= 0 ;
30631 PyObject
* obj1
= 0 ;
30632 PyObject
* obj2
= 0 ;
30633 PyObject
* obj3
= 0 ;
30634 PyObject
* obj4
= 0 ;
30635 char * kwnames
[] = {
30636 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
30639 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawTreeItemButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
30640 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30641 if (!SWIG_IsOK(res1
)) {
30642 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawTreeItemButton" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30644 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30645 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30646 if (!SWIG_IsOK(res2
)) {
30647 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawTreeItemButton" "', expected argument " "2"" of type '" "wxWindow *""'");
30649 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30650 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30651 if (!SWIG_IsOK(res3
)) {
30652 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawTreeItemButton" "', expected argument " "3"" of type '" "wxDC &""'");
30655 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawTreeItemButton" "', expected argument " "3"" of type '" "wxDC &""'");
30657 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30660 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30663 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30664 if (!SWIG_IsOK(ecode5
)) {
30665 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawTreeItemButton" "', expected argument " "5"" of type '" "int""'");
30667 arg5
= static_cast< int >(val5
);
30670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30671 (arg1
)->DrawTreeItemButton(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
30672 wxPyEndAllowThreads(__tstate
);
30673 if (PyErr_Occurred()) SWIG_fail
;
30675 resultobj
= SWIG_Py_Void();
30682 SWIGINTERN PyObject
*_wrap_RendererNative_DrawSplitterBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30683 PyObject
*resultobj
= 0;
30684 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30685 wxWindow
*arg2
= (wxWindow
*) 0 ;
30688 int arg5
= (int) 0 ;
30698 PyObject
* obj0
= 0 ;
30699 PyObject
* obj1
= 0 ;
30700 PyObject
* obj2
= 0 ;
30701 PyObject
* obj3
= 0 ;
30702 PyObject
* obj4
= 0 ;
30703 char * kwnames
[] = {
30704 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
30707 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawSplitterBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
30708 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30709 if (!SWIG_IsOK(res1
)) {
30710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawSplitterBorder" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30712 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30713 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30714 if (!SWIG_IsOK(res2
)) {
30715 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawSplitterBorder" "', expected argument " "2"" of type '" "wxWindow *""'");
30717 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30718 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30719 if (!SWIG_IsOK(res3
)) {
30720 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawSplitterBorder" "', expected argument " "3"" of type '" "wxDC &""'");
30723 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawSplitterBorder" "', expected argument " "3"" of type '" "wxDC &""'");
30725 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30728 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30731 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30732 if (!SWIG_IsOK(ecode5
)) {
30733 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawSplitterBorder" "', expected argument " "5"" of type '" "int""'");
30735 arg5
= static_cast< int >(val5
);
30738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30739 (arg1
)->DrawSplitterBorder(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
30740 wxPyEndAllowThreads(__tstate
);
30741 if (PyErr_Occurred()) SWIG_fail
;
30743 resultobj
= SWIG_Py_Void();
30750 SWIGINTERN PyObject
*_wrap_RendererNative_DrawSplitterSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30751 PyObject
*resultobj
= 0;
30752 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30753 wxWindow
*arg2
= (wxWindow
*) 0 ;
30757 wxOrientation arg6
;
30758 int arg7
= (int) 0 ;
30772 PyObject
* obj0
= 0 ;
30773 PyObject
* obj1
= 0 ;
30774 PyObject
* obj2
= 0 ;
30775 PyObject
* obj3
= 0 ;
30776 PyObject
* obj4
= 0 ;
30777 PyObject
* obj5
= 0 ;
30778 PyObject
* obj6
= 0 ;
30779 char * kwnames
[] = {
30780 (char *) "self",(char *) "win",(char *) "dc",(char *) "size",(char *) "position",(char *) "orient",(char *) "flags", NULL
30783 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO|O:RendererNative_DrawSplitterSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30784 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30785 if (!SWIG_IsOK(res1
)) {
30786 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30788 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30789 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30790 if (!SWIG_IsOK(res2
)) {
30791 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "2"" of type '" "wxWindow *""'");
30793 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30794 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30795 if (!SWIG_IsOK(res3
)) {
30796 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "3"" of type '" "wxDC &""'");
30799 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "3"" of type '" "wxDC &""'");
30801 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30804 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
30806 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30807 if (!SWIG_IsOK(ecode5
)) {
30808 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "5"" of type '" "int""'");
30810 arg5
= static_cast< int >(val5
);
30811 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
30812 if (!SWIG_IsOK(ecode6
)) {
30813 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "6"" of type '" "wxOrientation""'");
30815 arg6
= static_cast< wxOrientation
>(val6
);
30817 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
30818 if (!SWIG_IsOK(ecode7
)) {
30819 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "RendererNative_DrawSplitterSash" "', expected argument " "7"" of type '" "int""'");
30821 arg7
= static_cast< int >(val7
);
30824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30825 (arg1
)->DrawSplitterSash(arg2
,*arg3
,(wxSize
const &)*arg4
,arg5
,arg6
,arg7
);
30826 wxPyEndAllowThreads(__tstate
);
30827 if (PyErr_Occurred()) SWIG_fail
;
30829 resultobj
= SWIG_Py_Void();
30836 SWIGINTERN PyObject
*_wrap_RendererNative_DrawComboBoxDropButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30837 PyObject
*resultobj
= 0;
30838 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30839 wxWindow
*arg2
= (wxWindow
*) 0 ;
30842 int arg5
= (int) 0 ;
30852 PyObject
* obj0
= 0 ;
30853 PyObject
* obj1
= 0 ;
30854 PyObject
* obj2
= 0 ;
30855 PyObject
* obj3
= 0 ;
30856 PyObject
* obj4
= 0 ;
30857 char * kwnames
[] = {
30858 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
30861 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawComboBoxDropButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
30862 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30863 if (!SWIG_IsOK(res1
)) {
30864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawComboBoxDropButton" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30866 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30867 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30868 if (!SWIG_IsOK(res2
)) {
30869 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawComboBoxDropButton" "', expected argument " "2"" of type '" "wxWindow *""'");
30871 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30872 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30873 if (!SWIG_IsOK(res3
)) {
30874 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawComboBoxDropButton" "', expected argument " "3"" of type '" "wxDC &""'");
30877 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawComboBoxDropButton" "', expected argument " "3"" of type '" "wxDC &""'");
30879 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30882 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30885 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30886 if (!SWIG_IsOK(ecode5
)) {
30887 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawComboBoxDropButton" "', expected argument " "5"" of type '" "int""'");
30889 arg5
= static_cast< int >(val5
);
30892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30893 (arg1
)->DrawComboBoxDropButton(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
30894 wxPyEndAllowThreads(__tstate
);
30895 if (PyErr_Occurred()) SWIG_fail
;
30897 resultobj
= SWIG_Py_Void();
30904 SWIGINTERN PyObject
*_wrap_RendererNative_DrawDropArrow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30905 PyObject
*resultobj
= 0;
30906 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30907 wxWindow
*arg2
= (wxWindow
*) 0 ;
30910 int arg5
= (int) 0 ;
30920 PyObject
* obj0
= 0 ;
30921 PyObject
* obj1
= 0 ;
30922 PyObject
* obj2
= 0 ;
30923 PyObject
* obj3
= 0 ;
30924 PyObject
* obj4
= 0 ;
30925 char * kwnames
[] = {
30926 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
30929 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawDropArrow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
30930 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30931 if (!SWIG_IsOK(res1
)) {
30932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawDropArrow" "', expected argument " "1"" of type '" "wxRendererNative *""'");
30934 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
30935 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30936 if (!SWIG_IsOK(res2
)) {
30937 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawDropArrow" "', expected argument " "2"" of type '" "wxWindow *""'");
30939 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
30940 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
30941 if (!SWIG_IsOK(res3
)) {
30942 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawDropArrow" "', expected argument " "3"" of type '" "wxDC &""'");
30945 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawDropArrow" "', expected argument " "3"" of type '" "wxDC &""'");
30947 arg3
= reinterpret_cast< wxDC
* >(argp3
);
30950 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
30953 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
30954 if (!SWIG_IsOK(ecode5
)) {
30955 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawDropArrow" "', expected argument " "5"" of type '" "int""'");
30957 arg5
= static_cast< int >(val5
);
30960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30961 (arg1
)->DrawDropArrow(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
30962 wxPyEndAllowThreads(__tstate
);
30963 if (PyErr_Occurred()) SWIG_fail
;
30965 resultobj
= SWIG_Py_Void();
30972 SWIGINTERN PyObject
*_wrap_RendererNative_DrawCheckBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30973 PyObject
*resultobj
= 0;
30974 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
30975 wxWindow
*arg2
= (wxWindow
*) 0 ;
30978 int arg5
= (int) 0 ;
30988 PyObject
* obj0
= 0 ;
30989 PyObject
* obj1
= 0 ;
30990 PyObject
* obj2
= 0 ;
30991 PyObject
* obj3
= 0 ;
30992 PyObject
* obj4
= 0 ;
30993 char * kwnames
[] = {
30994 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
30997 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawCheckBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
30998 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
30999 if (!SWIG_IsOK(res1
)) {
31000 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawCheckBox" "', expected argument " "1"" of type '" "wxRendererNative *""'");
31002 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31003 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
31004 if (!SWIG_IsOK(res2
)) {
31005 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawCheckBox" "', expected argument " "2"" of type '" "wxWindow *""'");
31007 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
31008 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
31009 if (!SWIG_IsOK(res3
)) {
31010 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawCheckBox" "', expected argument " "3"" of type '" "wxDC &""'");
31013 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawCheckBox" "', expected argument " "3"" of type '" "wxDC &""'");
31015 arg3
= reinterpret_cast< wxDC
* >(argp3
);
31018 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
31021 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
31022 if (!SWIG_IsOK(ecode5
)) {
31023 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawCheckBox" "', expected argument " "5"" of type '" "int""'");
31025 arg5
= static_cast< int >(val5
);
31028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31029 (arg1
)->DrawCheckBox(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
31030 wxPyEndAllowThreads(__tstate
);
31031 if (PyErr_Occurred()) SWIG_fail
;
31033 resultobj
= SWIG_Py_Void();
31040 SWIGINTERN PyObject
*_wrap_RendererNative_DrawPushButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31041 PyObject
*resultobj
= 0;
31042 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
31043 wxWindow
*arg2
= (wxWindow
*) 0 ;
31046 int arg5
= (int) 0 ;
31056 PyObject
* obj0
= 0 ;
31057 PyObject
* obj1
= 0 ;
31058 PyObject
* obj2
= 0 ;
31059 PyObject
* obj3
= 0 ;
31060 PyObject
* obj4
= 0 ;
31061 char * kwnames
[] = {
31062 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
31065 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawPushButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
31066 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31067 if (!SWIG_IsOK(res1
)) {
31068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawPushButton" "', expected argument " "1"" of type '" "wxRendererNative *""'");
31070 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31071 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
31072 if (!SWIG_IsOK(res2
)) {
31073 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawPushButton" "', expected argument " "2"" of type '" "wxWindow *""'");
31075 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
31076 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
31077 if (!SWIG_IsOK(res3
)) {
31078 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawPushButton" "', expected argument " "3"" of type '" "wxDC &""'");
31081 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawPushButton" "', expected argument " "3"" of type '" "wxDC &""'");
31083 arg3
= reinterpret_cast< wxDC
* >(argp3
);
31086 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
31089 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
31090 if (!SWIG_IsOK(ecode5
)) {
31091 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawPushButton" "', expected argument " "5"" of type '" "int""'");
31093 arg5
= static_cast< int >(val5
);
31096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31097 (arg1
)->DrawPushButton(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
31098 wxPyEndAllowThreads(__tstate
);
31099 if (PyErr_Occurred()) SWIG_fail
;
31101 resultobj
= SWIG_Py_Void();
31108 SWIGINTERN PyObject
*_wrap_RendererNative_DrawItemSelectionRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31109 PyObject
*resultobj
= 0;
31110 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
31111 wxWindow
*arg2
= (wxWindow
*) 0 ;
31114 int arg5
= (int) 0 ;
31124 PyObject
* obj0
= 0 ;
31125 PyObject
* obj1
= 0 ;
31126 PyObject
* obj2
= 0 ;
31127 PyObject
* obj3
= 0 ;
31128 PyObject
* obj4
= 0 ;
31129 char * kwnames
[] = {
31130 (char *) "self",(char *) "win",(char *) "dc",(char *) "rect",(char *) "flags", NULL
31133 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:RendererNative_DrawItemSelectionRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
31134 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31135 if (!SWIG_IsOK(res1
)) {
31136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_DrawItemSelectionRect" "', expected argument " "1"" of type '" "wxRendererNative *""'");
31138 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31139 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
31140 if (!SWIG_IsOK(res2
)) {
31141 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_DrawItemSelectionRect" "', expected argument " "2"" of type '" "wxWindow *""'");
31143 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
31144 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
31145 if (!SWIG_IsOK(res3
)) {
31146 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "RendererNative_DrawItemSelectionRect" "', expected argument " "3"" of type '" "wxDC &""'");
31149 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "RendererNative_DrawItemSelectionRect" "', expected argument " "3"" of type '" "wxDC &""'");
31151 arg3
= reinterpret_cast< wxDC
* >(argp3
);
31154 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
31157 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
31158 if (!SWIG_IsOK(ecode5
)) {
31159 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "RendererNative_DrawItemSelectionRect" "', expected argument " "5"" of type '" "int""'");
31161 arg5
= static_cast< int >(val5
);
31164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31165 (arg1
)->DrawItemSelectionRect(arg2
,*arg3
,(wxRect
const &)*arg4
,arg5
);
31166 wxPyEndAllowThreads(__tstate
);
31167 if (PyErr_Occurred()) SWIG_fail
;
31169 resultobj
= SWIG_Py_Void();
31176 SWIGINTERN PyObject
*_wrap_RendererNative_GetSplitterParams(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31177 PyObject
*resultobj
= 0;
31178 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
31179 wxWindow
*arg2
= (wxWindow
*) 0 ;
31180 SwigValueWrapper
<wxSplitterRenderParams
> result
;
31185 PyObject
* obj0
= 0 ;
31186 PyObject
* obj1
= 0 ;
31187 char * kwnames
[] = {
31188 (char *) "self",(char *) "win", NULL
31191 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RendererNative_GetSplitterParams",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31192 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31193 if (!SWIG_IsOK(res1
)) {
31194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_GetSplitterParams" "', expected argument " "1"" of type '" "wxRendererNative *""'");
31196 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31197 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
31198 if (!SWIG_IsOK(res2
)) {
31199 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "RendererNative_GetSplitterParams" "', expected argument " "2"" of type '" "wxWindow const *""'");
31201 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
31203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31204 result
= (arg1
)->GetSplitterParams((wxWindow
const *)arg2
);
31205 wxPyEndAllowThreads(__tstate
);
31206 if (PyErr_Occurred()) SWIG_fail
;
31208 resultobj
= SWIG_NewPointerObj((new wxSplitterRenderParams(static_cast< const wxSplitterRenderParams
& >(result
))), SWIGTYPE_p_wxSplitterRenderParams
, SWIG_POINTER_OWN
| 0 );
31215 SWIGINTERN PyObject
*_wrap_RendererNative_Get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31216 PyObject
*resultobj
= 0;
31217 wxRendererNative
*result
= 0 ;
31219 if (!SWIG_Python_UnpackTuple(args
,"RendererNative_Get",0,0,0)) SWIG_fail
;
31221 if (!wxPyCheckForApp()) SWIG_fail
;
31222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31224 wxRendererNative
&_result_ref
= wxRendererNative::Get();
31225 result
= (wxRendererNative
*) &_result_ref
;
31227 wxPyEndAllowThreads(__tstate
);
31228 if (PyErr_Occurred()) SWIG_fail
;
31230 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31237 SWIGINTERN PyObject
*_wrap_RendererNative_GetGeneric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31238 PyObject
*resultobj
= 0;
31239 wxRendererNative
*result
= 0 ;
31241 if (!SWIG_Python_UnpackTuple(args
,"RendererNative_GetGeneric",0,0,0)) SWIG_fail
;
31243 if (!wxPyCheckForApp()) SWIG_fail
;
31244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31246 wxRendererNative
&_result_ref
= wxRendererNative::GetGeneric();
31247 result
= (wxRendererNative
*) &_result_ref
;
31249 wxPyEndAllowThreads(__tstate
);
31250 if (PyErr_Occurred()) SWIG_fail
;
31252 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31259 SWIGINTERN PyObject
*_wrap_RendererNative_GetDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31260 PyObject
*resultobj
= 0;
31261 wxRendererNative
*result
= 0 ;
31263 if (!SWIG_Python_UnpackTuple(args
,"RendererNative_GetDefault",0,0,0)) SWIG_fail
;
31265 if (!wxPyCheckForApp()) SWIG_fail
;
31266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31268 wxRendererNative
&_result_ref
= wxRendererNative::GetDefault();
31269 result
= (wxRendererNative
*) &_result_ref
;
31271 wxPyEndAllowThreads(__tstate
);
31272 if (PyErr_Occurred()) SWIG_fail
;
31274 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31281 SWIGINTERN PyObject
*_wrap_RendererNative_Set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31282 PyObject
*resultobj
= 0;
31283 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
31284 wxRendererNative
*result
= 0 ;
31287 PyObject
* obj0
= 0 ;
31288 char * kwnames
[] = {
31289 (char *) "renderer", NULL
31292 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RendererNative_Set",kwnames
,&obj0
)) SWIG_fail
;
31293 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31294 if (!SWIG_IsOK(res1
)) {
31295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_Set" "', expected argument " "1"" of type '" "wxRendererNative *""'");
31297 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31299 if (!wxPyCheckForApp()) SWIG_fail
;
31300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31301 result
= (wxRendererNative
*)wxRendererNative::Set(arg1
);
31302 wxPyEndAllowThreads(__tstate
);
31303 if (PyErr_Occurred()) SWIG_fail
;
31305 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31312 SWIGINTERN PyObject
*_wrap_RendererNative_GetVersion(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31313 PyObject
*resultobj
= 0;
31314 wxRendererNative
*arg1
= (wxRendererNative
*) 0 ;
31315 SwigValueWrapper
<wxRendererVersion
> result
;
31318 PyObject
*swig_obj
[1] ;
31320 if (!args
) SWIG_fail
;
31321 swig_obj
[0] = args
;
31322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxRendererNative
, 0 | 0 );
31323 if (!SWIG_IsOK(res1
)) {
31324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "RendererNative_GetVersion" "', expected argument " "1"" of type '" "wxRendererNative const *""'");
31326 arg1
= reinterpret_cast< wxRendererNative
* >(argp1
);
31328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31329 result
= ((wxRendererNative
const *)arg1
)->GetVersion();
31330 wxPyEndAllowThreads(__tstate
);
31331 if (PyErr_Occurred()) SWIG_fail
;
31333 resultobj
= SWIG_NewPointerObj((new wxRendererVersion(static_cast< const wxRendererVersion
& >(result
))), SWIGTYPE_p_wxRendererVersion
, SWIG_POINTER_OWN
| 0 );
31340 SWIGINTERN PyObject
*RendererNative_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31342 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
31343 SWIG_TypeNewClientData(SWIGTYPE_p_wxRendererNative
, SWIG_NewClientData(obj
));
31344 return SWIG_Py_Void();
31347 SWIGINTERN PyObject
*_wrap_new_PseudoDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31348 PyObject
*resultobj
= 0;
31349 wxPseudoDC
*result
= 0 ;
31351 if (!SWIG_Python_UnpackTuple(args
,"new_PseudoDC",0,0,0)) SWIG_fail
;
31353 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31354 result
= (wxPseudoDC
*)new wxPseudoDC();
31355 wxPyEndAllowThreads(__tstate
);
31356 if (PyErr_Occurred()) SWIG_fail
;
31358 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPseudoDC
, SWIG_POINTER_NEW
| 0 );
31365 SWIGINTERN PyObject
*_wrap_PseudoDC_BeginDrawing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31366 PyObject
*resultobj
= 0;
31367 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31370 PyObject
*swig_obj
[1] ;
31372 if (!args
) SWIG_fail
;
31373 swig_obj
[0] = args
;
31374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31375 if (!SWIG_IsOK(res1
)) {
31376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_BeginDrawing" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31378 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31381 (arg1
)->BeginDrawing();
31382 wxPyEndAllowThreads(__tstate
);
31383 if (PyErr_Occurred()) SWIG_fail
;
31385 resultobj
= SWIG_Py_Void();
31392 SWIGINTERN PyObject
*_wrap_PseudoDC_EndDrawing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31393 PyObject
*resultobj
= 0;
31394 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31397 PyObject
*swig_obj
[1] ;
31399 if (!args
) SWIG_fail
;
31400 swig_obj
[0] = args
;
31401 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31402 if (!SWIG_IsOK(res1
)) {
31403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_EndDrawing" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31405 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31408 (arg1
)->EndDrawing();
31409 wxPyEndAllowThreads(__tstate
);
31410 if (PyErr_Occurred()) SWIG_fail
;
31412 resultobj
= SWIG_Py_Void();
31419 SWIGINTERN PyObject
*_wrap_delete_PseudoDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31420 PyObject
*resultobj
= 0;
31421 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31424 PyObject
*swig_obj
[1] ;
31426 if (!args
) SWIG_fail
;
31427 swig_obj
[0] = args
;
31428 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, SWIG_POINTER_DISOWN
| 0 );
31429 if (!SWIG_IsOK(res1
)) {
31430 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PseudoDC" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31432 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31434 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31437 wxPyEndAllowThreads(__tstate
);
31438 if (PyErr_Occurred()) SWIG_fail
;
31440 resultobj
= SWIG_Py_Void();
31447 SWIGINTERN PyObject
*_wrap_PseudoDC_RemoveAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31448 PyObject
*resultobj
= 0;
31449 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31452 PyObject
*swig_obj
[1] ;
31454 if (!args
) SWIG_fail
;
31455 swig_obj
[0] = args
;
31456 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31457 if (!SWIG_IsOK(res1
)) {
31458 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_RemoveAll" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31460 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31462 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31463 (arg1
)->RemoveAll();
31464 wxPyEndAllowThreads(__tstate
);
31465 if (PyErr_Occurred()) SWIG_fail
;
31467 resultobj
= SWIG_Py_Void();
31474 SWIGINTERN PyObject
*_wrap_PseudoDC_GetLen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
31475 PyObject
*resultobj
= 0;
31476 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31480 PyObject
*swig_obj
[1] ;
31482 if (!args
) SWIG_fail
;
31483 swig_obj
[0] = args
;
31484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31485 if (!SWIG_IsOK(res1
)) {
31486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_GetLen" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31488 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31491 result
= (int)(arg1
)->GetLen();
31492 wxPyEndAllowThreads(__tstate
);
31493 if (PyErr_Occurred()) SWIG_fail
;
31495 resultobj
= SWIG_From_int(static_cast< int >(result
));
31502 SWIGINTERN PyObject
*_wrap_PseudoDC_SetId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31503 PyObject
*resultobj
= 0;
31504 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31510 PyObject
* obj0
= 0 ;
31511 PyObject
* obj1
= 0 ;
31512 char * kwnames
[] = {
31513 (char *) "self",(char *) "id", NULL
31516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31518 if (!SWIG_IsOK(res1
)) {
31519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetId" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31521 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31522 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31523 if (!SWIG_IsOK(ecode2
)) {
31524 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_SetId" "', expected argument " "2"" of type '" "int""'");
31526 arg2
= static_cast< int >(val2
);
31528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31529 (arg1
)->SetId(arg2
);
31530 wxPyEndAllowThreads(__tstate
);
31531 if (PyErr_Occurred()) SWIG_fail
;
31533 resultobj
= SWIG_Py_Void();
31540 SWIGINTERN PyObject
*_wrap_PseudoDC_ClearId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31541 PyObject
*resultobj
= 0;
31542 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31548 PyObject
* obj0
= 0 ;
31549 PyObject
* obj1
= 0 ;
31550 char * kwnames
[] = {
31551 (char *) "self",(char *) "id", NULL
31554 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_ClearId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31555 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31556 if (!SWIG_IsOK(res1
)) {
31557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_ClearId" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31559 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31560 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31561 if (!SWIG_IsOK(ecode2
)) {
31562 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_ClearId" "', expected argument " "2"" of type '" "int""'");
31564 arg2
= static_cast< int >(val2
);
31566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31567 (arg1
)->ClearId(arg2
);
31568 wxPyEndAllowThreads(__tstate
);
31569 if (PyErr_Occurred()) SWIG_fail
;
31571 resultobj
= SWIG_Py_Void();
31578 SWIGINTERN PyObject
*_wrap_PseudoDC_RemoveId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31579 PyObject
*resultobj
= 0;
31580 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31586 PyObject
* obj0
= 0 ;
31587 PyObject
* obj1
= 0 ;
31588 char * kwnames
[] = {
31589 (char *) "self",(char *) "id", NULL
31592 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_RemoveId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31593 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31594 if (!SWIG_IsOK(res1
)) {
31595 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_RemoveId" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31597 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31598 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31599 if (!SWIG_IsOK(ecode2
)) {
31600 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_RemoveId" "', expected argument " "2"" of type '" "int""'");
31602 arg2
= static_cast< int >(val2
);
31604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31605 (arg1
)->RemoveId(arg2
);
31606 wxPyEndAllowThreads(__tstate
);
31607 if (PyErr_Occurred()) SWIG_fail
;
31609 resultobj
= SWIG_Py_Void();
31616 SWIGINTERN PyObject
*_wrap_PseudoDC_TranslateId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31617 PyObject
*resultobj
= 0;
31618 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31630 PyObject
* obj0
= 0 ;
31631 PyObject
* obj1
= 0 ;
31632 PyObject
* obj2
= 0 ;
31633 PyObject
* obj3
= 0 ;
31634 char * kwnames
[] = {
31635 (char *) "self",(char *) "id",(char *) "dx",(char *) "dy", NULL
31638 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_TranslateId",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
31639 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31640 if (!SWIG_IsOK(res1
)) {
31641 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_TranslateId" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31643 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31644 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31645 if (!SWIG_IsOK(ecode2
)) {
31646 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_TranslateId" "', expected argument " "2"" of type '" "int""'");
31648 arg2
= static_cast< int >(val2
);
31649 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
31650 if (!SWIG_IsOK(ecode3
)) {
31651 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_TranslateId" "', expected argument " "3"" of type '" "int""'");
31653 arg3
= static_cast< int >(val3
);
31654 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
31655 if (!SWIG_IsOK(ecode4
)) {
31656 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_TranslateId" "', expected argument " "4"" of type '" "int""'");
31658 arg4
= static_cast< int >(val4
);
31660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31661 (arg1
)->TranslateId(arg2
,arg3
,arg4
);
31662 wxPyEndAllowThreads(__tstate
);
31663 if (PyErr_Occurred()) SWIG_fail
;
31665 resultobj
= SWIG_Py_Void();
31672 SWIGINTERN PyObject
*_wrap_PseudoDC_SetIdGreyedOut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31673 PyObject
*resultobj
= 0;
31674 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31676 bool arg3
= (bool) true ;
31683 PyObject
* obj0
= 0 ;
31684 PyObject
* obj1
= 0 ;
31685 PyObject
* obj2
= 0 ;
31686 char * kwnames
[] = {
31687 (char *) "self",(char *) "id",(char *) "greyout", NULL
31690 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:PseudoDC_SetIdGreyedOut",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31691 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31692 if (!SWIG_IsOK(res1
)) {
31693 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetIdGreyedOut" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31695 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31696 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31697 if (!SWIG_IsOK(ecode2
)) {
31698 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_SetIdGreyedOut" "', expected argument " "2"" of type '" "int""'");
31700 arg2
= static_cast< int >(val2
);
31702 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
31703 if (!SWIG_IsOK(ecode3
)) {
31704 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_SetIdGreyedOut" "', expected argument " "3"" of type '" "bool""'");
31706 arg3
= static_cast< bool >(val3
);
31709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31710 (arg1
)->SetIdGreyedOut(arg2
,arg3
);
31711 wxPyEndAllowThreads(__tstate
);
31712 if (PyErr_Occurred()) SWIG_fail
;
31714 resultobj
= SWIG_Py_Void();
31721 SWIGINTERN PyObject
*_wrap_PseudoDC_GetIdGreyedOut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31722 PyObject
*resultobj
= 0;
31723 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31730 PyObject
* obj0
= 0 ;
31731 PyObject
* obj1
= 0 ;
31732 char * kwnames
[] = {
31733 (char *) "self",(char *) "id", NULL
31736 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_GetIdGreyedOut",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31737 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31738 if (!SWIG_IsOK(res1
)) {
31739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_GetIdGreyedOut" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31741 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31742 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31743 if (!SWIG_IsOK(ecode2
)) {
31744 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_GetIdGreyedOut" "', expected argument " "2"" of type '" "int""'");
31746 arg2
= static_cast< int >(val2
);
31748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31749 result
= (bool)(arg1
)->GetIdGreyedOut(arg2
);
31750 wxPyEndAllowThreads(__tstate
);
31751 if (PyErr_Occurred()) SWIG_fail
;
31754 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
31762 SWIGINTERN PyObject
*_wrap_PseudoDC_FindObjects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31763 PyObject
*resultobj
= 0;
31764 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31767 int arg4
= (int) 1 ;
31768 wxColor
const &arg5_defvalue
= *wxWHITE
;
31769 wxColor
*arg5
= (wxColor
*) &arg5_defvalue
;
31770 PyObject
*result
= 0 ;
31781 PyObject
* obj0
= 0 ;
31782 PyObject
* obj1
= 0 ;
31783 PyObject
* obj2
= 0 ;
31784 PyObject
* obj3
= 0 ;
31785 PyObject
* obj4
= 0 ;
31786 char * kwnames
[] = {
31787 (char *) "self",(char *) "x",(char *) "y",(char *) "radius",(char *) "bg", NULL
31790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:PseudoDC_FindObjects",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
31791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31792 if (!SWIG_IsOK(res1
)) {
31793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_FindObjects" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31795 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31796 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31797 if (!SWIG_IsOK(ecode2
)) {
31798 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_FindObjects" "', expected argument " "2"" of type '" "int""'");
31800 arg2
= static_cast< int >(val2
);
31801 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
31802 if (!SWIG_IsOK(ecode3
)) {
31803 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_FindObjects" "', expected argument " "3"" of type '" "int""'");
31805 arg3
= static_cast< int >(val3
);
31807 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
31808 if (!SWIG_IsOK(ecode4
)) {
31809 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_FindObjects" "', expected argument " "4"" of type '" "int""'");
31811 arg4
= static_cast< int >(val4
);
31814 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxColor
, 0 | 0);
31815 if (!SWIG_IsOK(res5
)) {
31816 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "PseudoDC_FindObjects" "', expected argument " "5"" of type '" "wxColor const &""'");
31819 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_FindObjects" "', expected argument " "5"" of type '" "wxColor const &""'");
31821 arg5
= reinterpret_cast< wxColor
* >(argp5
);
31824 result
= (PyObject
*)(arg1
)->FindObjects(arg2
,arg3
,arg4
,(wxColor
const &)*arg5
);
31825 if (PyErr_Occurred()) SWIG_fail
;
31827 resultobj
= result
;
31834 SWIGINTERN PyObject
*_wrap_PseudoDC_FindObjectsByBBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31835 PyObject
*resultobj
= 0;
31836 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31839 PyObject
*result
= 0 ;
31846 PyObject
* obj0
= 0 ;
31847 PyObject
* obj1
= 0 ;
31848 PyObject
* obj2
= 0 ;
31849 char * kwnames
[] = {
31850 (char *) "self",(char *) "x",(char *) "y", NULL
31853 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_FindObjectsByBBox",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31854 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31855 if (!SWIG_IsOK(res1
)) {
31856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_FindObjectsByBBox" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31858 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31859 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31860 if (!SWIG_IsOK(ecode2
)) {
31861 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_FindObjectsByBBox" "', expected argument " "2"" of type '" "int""'");
31863 arg2
= static_cast< int >(val2
);
31864 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
31865 if (!SWIG_IsOK(ecode3
)) {
31866 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_FindObjectsByBBox" "', expected argument " "3"" of type '" "int""'");
31868 arg3
= static_cast< int >(val3
);
31870 result
= (PyObject
*)(arg1
)->FindObjectsByBBox(arg2
,arg3
);
31871 if (PyErr_Occurred()) SWIG_fail
;
31873 resultobj
= result
;
31880 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawIdToDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31881 PyObject
*resultobj
= 0;
31882 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31884 wxDC
*arg3
= (wxDC
*) 0 ;
31891 PyObject
* obj0
= 0 ;
31892 PyObject
* obj1
= 0 ;
31893 PyObject
* obj2
= 0 ;
31894 char * kwnames
[] = {
31895 (char *) "self",(char *) "id",(char *) "dc", NULL
31898 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawIdToDC",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31899 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31900 if (!SWIG_IsOK(res1
)) {
31901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawIdToDC" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31903 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31904 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31905 if (!SWIG_IsOK(ecode2
)) {
31906 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawIdToDC" "', expected argument " "2"" of type '" "int""'");
31908 arg2
= static_cast< int >(val2
);
31909 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxDC
, 0 | 0 );
31910 if (!SWIG_IsOK(res3
)) {
31911 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PseudoDC_DrawIdToDC" "', expected argument " "3"" of type '" "wxDC *""'");
31913 arg3
= reinterpret_cast< wxDC
* >(argp3
);
31915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31916 (arg1
)->DrawIdToDC(arg2
,arg3
);
31917 wxPyEndAllowThreads(__tstate
);
31918 if (PyErr_Occurred()) SWIG_fail
;
31920 resultobj
= SWIG_Py_Void();
31927 SWIGINTERN PyObject
*_wrap_PseudoDC_SetIdBounds(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31928 PyObject
*resultobj
= 0;
31929 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31937 PyObject
* obj0
= 0 ;
31938 PyObject
* obj1
= 0 ;
31939 PyObject
* obj2
= 0 ;
31940 char * kwnames
[] = {
31941 (char *) "self",(char *) "id",(char *) "rect", NULL
31944 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_SetIdBounds",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
31945 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31946 if (!SWIG_IsOK(res1
)) {
31947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetIdBounds" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31949 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31950 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31951 if (!SWIG_IsOK(ecode2
)) {
31952 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_SetIdBounds" "', expected argument " "2"" of type '" "int""'");
31954 arg2
= static_cast< int >(val2
);
31957 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
31960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31961 (arg1
)->SetIdBounds(arg2
,*arg3
);
31962 wxPyEndAllowThreads(__tstate
);
31963 if (PyErr_Occurred()) SWIG_fail
;
31965 resultobj
= SWIG_Py_Void();
31972 SWIGINTERN PyObject
*_wrap_PseudoDC_GetIdBounds(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
31973 PyObject
*resultobj
= 0;
31974 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
31981 PyObject
* obj0
= 0 ;
31982 PyObject
* obj1
= 0 ;
31983 char * kwnames
[] = {
31984 (char *) "self",(char *) "id", NULL
31987 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_GetIdBounds",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
31988 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
31989 if (!SWIG_IsOK(res1
)) {
31990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_GetIdBounds" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
31992 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
31993 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
31994 if (!SWIG_IsOK(ecode2
)) {
31995 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_GetIdBounds" "', expected argument " "2"" of type '" "int""'");
31997 arg2
= static_cast< int >(val2
);
31999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32000 result
= wxPseudoDC_GetIdBounds(arg1
,arg2
);
32001 wxPyEndAllowThreads(__tstate
);
32002 if (PyErr_Occurred()) SWIG_fail
;
32004 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
32011 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawToDCClipped(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32012 PyObject
*resultobj
= 0;
32013 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32014 wxDC
*arg2
= (wxDC
*) 0 ;
32021 PyObject
* obj0
= 0 ;
32022 PyObject
* obj1
= 0 ;
32023 PyObject
* obj2
= 0 ;
32024 char * kwnames
[] = {
32025 (char *) "self",(char *) "dc",(char *) "rect", NULL
32028 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawToDCClipped",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32029 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32030 if (!SWIG_IsOK(res1
)) {
32031 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawToDCClipped" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32033 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32034 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
32035 if (!SWIG_IsOK(res2
)) {
32036 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawToDCClipped" "', expected argument " "2"" of type '" "wxDC *""'");
32038 arg2
= reinterpret_cast< wxDC
* >(argp2
);
32041 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
32044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32045 (arg1
)->DrawToDCClipped(arg2
,(wxRect
const &)*arg3
);
32046 wxPyEndAllowThreads(__tstate
);
32047 if (PyErr_Occurred()) SWIG_fail
;
32049 resultobj
= SWIG_Py_Void();
32056 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawToDCClippedRgn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32057 PyObject
*resultobj
= 0;
32058 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32059 wxDC
*arg2
= (wxDC
*) 0 ;
32060 wxRegion
*arg3
= 0 ;
32067 PyObject
* obj0
= 0 ;
32068 PyObject
* obj1
= 0 ;
32069 PyObject
* obj2
= 0 ;
32070 char * kwnames
[] = {
32071 (char *) "self",(char *) "dc",(char *) "region", NULL
32074 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawToDCClippedRgn",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32075 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32076 if (!SWIG_IsOK(res1
)) {
32077 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawToDCClippedRgn" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32079 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32080 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
32081 if (!SWIG_IsOK(res2
)) {
32082 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawToDCClippedRgn" "', expected argument " "2"" of type '" "wxDC *""'");
32084 arg2
= reinterpret_cast< wxDC
* >(argp2
);
32085 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxRegion
, 0 | 0);
32086 if (!SWIG_IsOK(res3
)) {
32087 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PseudoDC_DrawToDCClippedRgn" "', expected argument " "3"" of type '" "wxRegion const &""'");
32090 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawToDCClippedRgn" "', expected argument " "3"" of type '" "wxRegion const &""'");
32092 arg3
= reinterpret_cast< wxRegion
* >(argp3
);
32094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32095 (arg1
)->DrawToDCClippedRgn(arg2
,(wxRegion
const &)*arg3
);
32096 wxPyEndAllowThreads(__tstate
);
32097 if (PyErr_Occurred()) SWIG_fail
;
32099 resultobj
= SWIG_Py_Void();
32106 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawToDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32107 PyObject
*resultobj
= 0;
32108 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32109 wxDC
*arg2
= (wxDC
*) 0 ;
32114 PyObject
* obj0
= 0 ;
32115 PyObject
* obj1
= 0 ;
32116 char * kwnames
[] = {
32117 (char *) "self",(char *) "dc", NULL
32120 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawToDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32121 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32122 if (!SWIG_IsOK(res1
)) {
32123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawToDC" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32125 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32126 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
32127 if (!SWIG_IsOK(res2
)) {
32128 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawToDC" "', expected argument " "2"" of type '" "wxDC *""'");
32130 arg2
= reinterpret_cast< wxDC
* >(argp2
);
32132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32133 (arg1
)->DrawToDC(arg2
);
32134 wxPyEndAllowThreads(__tstate
);
32135 if (PyErr_Occurred()) SWIG_fail
;
32137 resultobj
= SWIG_Py_Void();
32144 SWIGINTERN PyObject
*_wrap_PseudoDC_FloodFill(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32145 PyObject
*resultobj
= 0;
32146 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32149 wxColour
*arg4
= 0 ;
32150 int arg5
= (int) wxFLOOD_SURFACE
;
32160 PyObject
* obj0
= 0 ;
32161 PyObject
* obj1
= 0 ;
32162 PyObject
* obj2
= 0 ;
32163 PyObject
* obj3
= 0 ;
32164 PyObject
* obj4
= 0 ;
32165 char * kwnames
[] = {
32166 (char *) "self",(char *) "x",(char *) "y",(char *) "col",(char *) "style", NULL
32169 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:PseudoDC_FloodFill",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
32170 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32171 if (!SWIG_IsOK(res1
)) {
32172 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_FloodFill" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32174 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32175 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32176 if (!SWIG_IsOK(ecode2
)) {
32177 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_FloodFill" "', expected argument " "2"" of type '" "int""'");
32179 arg2
= static_cast< int >(val2
);
32180 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32181 if (!SWIG_IsOK(ecode3
)) {
32182 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_FloodFill" "', expected argument " "3"" of type '" "int""'");
32184 arg3
= static_cast< int >(val3
);
32187 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
32190 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32191 if (!SWIG_IsOK(ecode5
)) {
32192 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_FloodFill" "', expected argument " "5"" of type '" "int""'");
32194 arg5
= static_cast< int >(val5
);
32197 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32198 (arg1
)->FloodFill(arg2
,arg3
,(wxColour
const &)*arg4
,arg5
);
32199 wxPyEndAllowThreads(__tstate
);
32200 if (PyErr_Occurred()) SWIG_fail
;
32202 resultobj
= SWIG_Py_Void();
32209 SWIGINTERN PyObject
*_wrap_PseudoDC_FloodFillPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32210 PyObject
*resultobj
= 0;
32211 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32212 wxPoint
*arg2
= 0 ;
32213 wxColour
*arg3
= 0 ;
32214 int arg4
= (int) wxFLOOD_SURFACE
;
32221 PyObject
* obj0
= 0 ;
32222 PyObject
* obj1
= 0 ;
32223 PyObject
* obj2
= 0 ;
32224 PyObject
* obj3
= 0 ;
32225 char * kwnames
[] = {
32226 (char *) "self",(char *) "pt",(char *) "col",(char *) "style", NULL
32229 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:PseudoDC_FloodFillPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32230 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32231 if (!SWIG_IsOK(res1
)) {
32232 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_FloodFillPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32234 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32237 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32241 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
32244 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32245 if (!SWIG_IsOK(ecode4
)) {
32246 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_FloodFillPoint" "', expected argument " "4"" of type '" "int""'");
32248 arg4
= static_cast< int >(val4
);
32251 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32252 (arg1
)->FloodFill((wxPoint
const &)*arg2
,(wxColour
const &)*arg3
,arg4
);
32253 wxPyEndAllowThreads(__tstate
);
32254 if (PyErr_Occurred()) SWIG_fail
;
32256 resultobj
= SWIG_Py_Void();
32263 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32264 PyObject
*resultobj
= 0;
32265 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32280 PyObject
* obj0
= 0 ;
32281 PyObject
* obj1
= 0 ;
32282 PyObject
* obj2
= 0 ;
32283 PyObject
* obj3
= 0 ;
32284 PyObject
* obj4
= 0 ;
32285 char * kwnames
[] = {
32286 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2", NULL
32289 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawLine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
32290 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32291 if (!SWIG_IsOK(res1
)) {
32292 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawLine" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32294 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32295 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32296 if (!SWIG_IsOK(ecode2
)) {
32297 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawLine" "', expected argument " "2"" of type '" "int""'");
32299 arg2
= static_cast< int >(val2
);
32300 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32301 if (!SWIG_IsOK(ecode3
)) {
32302 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawLine" "', expected argument " "3"" of type '" "int""'");
32304 arg3
= static_cast< int >(val3
);
32305 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32306 if (!SWIG_IsOK(ecode4
)) {
32307 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawLine" "', expected argument " "4"" of type '" "int""'");
32309 arg4
= static_cast< int >(val4
);
32310 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32311 if (!SWIG_IsOK(ecode5
)) {
32312 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawLine" "', expected argument " "5"" of type '" "int""'");
32314 arg5
= static_cast< int >(val5
);
32316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32317 (arg1
)->DrawLine(arg2
,arg3
,arg4
,arg5
);
32318 wxPyEndAllowThreads(__tstate
);
32319 if (PyErr_Occurred()) SWIG_fail
;
32321 resultobj
= SWIG_Py_Void();
32328 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawLinePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32329 PyObject
*resultobj
= 0;
32330 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32331 wxPoint
*arg2
= 0 ;
32332 wxPoint
*arg3
= 0 ;
32337 PyObject
* obj0
= 0 ;
32338 PyObject
* obj1
= 0 ;
32339 PyObject
* obj2
= 0 ;
32340 char * kwnames
[] = {
32341 (char *) "self",(char *) "pt1",(char *) "pt2", NULL
32344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawLinePoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32346 if (!SWIG_IsOK(res1
)) {
32347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawLinePoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32349 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32352 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32356 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
32359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32360 (arg1
)->DrawLine((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
);
32361 wxPyEndAllowThreads(__tstate
);
32362 if (PyErr_Occurred()) SWIG_fail
;
32364 resultobj
= SWIG_Py_Void();
32371 SWIGINTERN PyObject
*_wrap_PseudoDC_CrossHair(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32372 PyObject
*resultobj
= 0;
32373 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32382 PyObject
* obj0
= 0 ;
32383 PyObject
* obj1
= 0 ;
32384 PyObject
* obj2
= 0 ;
32385 char * kwnames
[] = {
32386 (char *) "self",(char *) "x",(char *) "y", NULL
32389 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_CrossHair",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32390 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32391 if (!SWIG_IsOK(res1
)) {
32392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_CrossHair" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32394 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32395 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32396 if (!SWIG_IsOK(ecode2
)) {
32397 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_CrossHair" "', expected argument " "2"" of type '" "int""'");
32399 arg2
= static_cast< int >(val2
);
32400 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32401 if (!SWIG_IsOK(ecode3
)) {
32402 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_CrossHair" "', expected argument " "3"" of type '" "int""'");
32404 arg3
= static_cast< int >(val3
);
32406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32407 (arg1
)->CrossHair(arg2
,arg3
);
32408 wxPyEndAllowThreads(__tstate
);
32409 if (PyErr_Occurred()) SWIG_fail
;
32411 resultobj
= SWIG_Py_Void();
32418 SWIGINTERN PyObject
*_wrap_PseudoDC_CrossHairPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32419 PyObject
*resultobj
= 0;
32420 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32421 wxPoint
*arg2
= 0 ;
32425 PyObject
* obj0
= 0 ;
32426 PyObject
* obj1
= 0 ;
32427 char * kwnames
[] = {
32428 (char *) "self",(char *) "pt", NULL
32431 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_CrossHairPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32432 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32433 if (!SWIG_IsOK(res1
)) {
32434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_CrossHairPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32436 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32439 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32443 (arg1
)->CrossHair((wxPoint
const &)*arg2
);
32444 wxPyEndAllowThreads(__tstate
);
32445 if (PyErr_Occurred()) SWIG_fail
;
32447 resultobj
= SWIG_Py_Void();
32454 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawArc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32455 PyObject
*resultobj
= 0;
32456 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32477 PyObject
* obj0
= 0 ;
32478 PyObject
* obj1
= 0 ;
32479 PyObject
* obj2
= 0 ;
32480 PyObject
* obj3
= 0 ;
32481 PyObject
* obj4
= 0 ;
32482 PyObject
* obj5
= 0 ;
32483 PyObject
* obj6
= 0 ;
32484 char * kwnames
[] = {
32485 (char *) "self",(char *) "x1",(char *) "y1",(char *) "x2",(char *) "y2",(char *) "xc",(char *) "yc", NULL
32488 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:PseudoDC_DrawArc",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
32489 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32490 if (!SWIG_IsOK(res1
)) {
32491 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawArc" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32493 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32494 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32495 if (!SWIG_IsOK(ecode2
)) {
32496 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawArc" "', expected argument " "2"" of type '" "int""'");
32498 arg2
= static_cast< int >(val2
);
32499 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32500 if (!SWIG_IsOK(ecode3
)) {
32501 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawArc" "', expected argument " "3"" of type '" "int""'");
32503 arg3
= static_cast< int >(val3
);
32504 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32505 if (!SWIG_IsOK(ecode4
)) {
32506 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawArc" "', expected argument " "4"" of type '" "int""'");
32508 arg4
= static_cast< int >(val4
);
32509 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32510 if (!SWIG_IsOK(ecode5
)) {
32511 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawArc" "', expected argument " "5"" of type '" "int""'");
32513 arg5
= static_cast< int >(val5
);
32514 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
32515 if (!SWIG_IsOK(ecode6
)) {
32516 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PseudoDC_DrawArc" "', expected argument " "6"" of type '" "int""'");
32518 arg6
= static_cast< int >(val6
);
32519 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
32520 if (!SWIG_IsOK(ecode7
)) {
32521 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "PseudoDC_DrawArc" "', expected argument " "7"" of type '" "int""'");
32523 arg7
= static_cast< int >(val7
);
32525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32526 (arg1
)->DrawArc(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
32527 wxPyEndAllowThreads(__tstate
);
32528 if (PyErr_Occurred()) SWIG_fail
;
32530 resultobj
= SWIG_Py_Void();
32537 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawArcPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32538 PyObject
*resultobj
= 0;
32539 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32540 wxPoint
*arg2
= 0 ;
32541 wxPoint
*arg3
= 0 ;
32542 wxPoint
*arg4
= 0 ;
32548 PyObject
* obj0
= 0 ;
32549 PyObject
* obj1
= 0 ;
32550 PyObject
* obj2
= 0 ;
32551 PyObject
* obj3
= 0 ;
32552 char * kwnames
[] = {
32553 (char *) "self",(char *) "pt1",(char *) "pt2",(char *) "center", NULL
32556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawArcPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
32557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32558 if (!SWIG_IsOK(res1
)) {
32559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawArcPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32561 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32564 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32568 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
32572 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
32575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32576 (arg1
)->DrawArc((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
32577 wxPyEndAllowThreads(__tstate
);
32578 if (PyErr_Occurred()) SWIG_fail
;
32580 resultobj
= SWIG_Py_Void();
32587 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawCheckMark(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32588 PyObject
*resultobj
= 0;
32589 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32604 PyObject
* obj0
= 0 ;
32605 PyObject
* obj1
= 0 ;
32606 PyObject
* obj2
= 0 ;
32607 PyObject
* obj3
= 0 ;
32608 PyObject
* obj4
= 0 ;
32609 char * kwnames
[] = {
32610 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
32613 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawCheckMark",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
32614 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32615 if (!SWIG_IsOK(res1
)) {
32616 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawCheckMark" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32618 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32619 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32620 if (!SWIG_IsOK(ecode2
)) {
32621 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawCheckMark" "', expected argument " "2"" of type '" "int""'");
32623 arg2
= static_cast< int >(val2
);
32624 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32625 if (!SWIG_IsOK(ecode3
)) {
32626 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawCheckMark" "', expected argument " "3"" of type '" "int""'");
32628 arg3
= static_cast< int >(val3
);
32629 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32630 if (!SWIG_IsOK(ecode4
)) {
32631 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawCheckMark" "', expected argument " "4"" of type '" "int""'");
32633 arg4
= static_cast< int >(val4
);
32634 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32635 if (!SWIG_IsOK(ecode5
)) {
32636 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawCheckMark" "', expected argument " "5"" of type '" "int""'");
32638 arg5
= static_cast< int >(val5
);
32640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32641 (arg1
)->DrawCheckMark(arg2
,arg3
,arg4
,arg5
);
32642 wxPyEndAllowThreads(__tstate
);
32643 if (PyErr_Occurred()) SWIG_fail
;
32645 resultobj
= SWIG_Py_Void();
32652 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawCheckMarkRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32653 PyObject
*resultobj
= 0;
32654 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32659 PyObject
* obj0
= 0 ;
32660 PyObject
* obj1
= 0 ;
32661 char * kwnames
[] = {
32662 (char *) "self",(char *) "rect", NULL
32665 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawCheckMarkRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32666 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32667 if (!SWIG_IsOK(res1
)) {
32668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawCheckMarkRect" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32670 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32673 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
32676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32677 (arg1
)->DrawCheckMark((wxRect
const &)*arg2
);
32678 wxPyEndAllowThreads(__tstate
);
32679 if (PyErr_Occurred()) SWIG_fail
;
32681 resultobj
= SWIG_Py_Void();
32688 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawEllipticArc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32689 PyObject
*resultobj
= 0;
32690 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32711 PyObject
* obj0
= 0 ;
32712 PyObject
* obj1
= 0 ;
32713 PyObject
* obj2
= 0 ;
32714 PyObject
* obj3
= 0 ;
32715 PyObject
* obj4
= 0 ;
32716 PyObject
* obj5
= 0 ;
32717 PyObject
* obj6
= 0 ;
32718 char * kwnames
[] = {
32719 (char *) "self",(char *) "x",(char *) "y",(char *) "w",(char *) "h",(char *) "start",(char *) "end", NULL
32722 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:PseudoDC_DrawEllipticArc",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
32723 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32724 if (!SWIG_IsOK(res1
)) {
32725 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32727 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32728 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32729 if (!SWIG_IsOK(ecode2
)) {
32730 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "2"" of type '" "int""'");
32732 arg2
= static_cast< int >(val2
);
32733 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32734 if (!SWIG_IsOK(ecode3
)) {
32735 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "3"" of type '" "int""'");
32737 arg3
= static_cast< int >(val3
);
32738 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32739 if (!SWIG_IsOK(ecode4
)) {
32740 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "4"" of type '" "int""'");
32742 arg4
= static_cast< int >(val4
);
32743 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32744 if (!SWIG_IsOK(ecode5
)) {
32745 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "5"" of type '" "int""'");
32747 arg5
= static_cast< int >(val5
);
32748 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
32749 if (!SWIG_IsOK(ecode6
)) {
32750 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "6"" of type '" "double""'");
32752 arg6
= static_cast< double >(val6
);
32753 ecode7
= SWIG_AsVal_double(obj6
, &val7
);
32754 if (!SWIG_IsOK(ecode7
)) {
32755 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "PseudoDC_DrawEllipticArc" "', expected argument " "7"" of type '" "double""'");
32757 arg7
= static_cast< double >(val7
);
32759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32760 (arg1
)->DrawEllipticArc(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
32761 wxPyEndAllowThreads(__tstate
);
32762 if (PyErr_Occurred()) SWIG_fail
;
32764 resultobj
= SWIG_Py_Void();
32771 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawEllipticArcPointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32772 PyObject
*resultobj
= 0;
32773 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32774 wxPoint
*arg2
= 0 ;
32786 PyObject
* obj0
= 0 ;
32787 PyObject
* obj1
= 0 ;
32788 PyObject
* obj2
= 0 ;
32789 PyObject
* obj3
= 0 ;
32790 PyObject
* obj4
= 0 ;
32791 char * kwnames
[] = {
32792 (char *) "self",(char *) "pt",(char *) "sz",(char *) "start",(char *) "end", NULL
32795 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawEllipticArcPointSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
32796 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32797 if (!SWIG_IsOK(res1
)) {
32798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawEllipticArcPointSize" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32800 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32803 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32807 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
32809 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
32810 if (!SWIG_IsOK(ecode4
)) {
32811 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawEllipticArcPointSize" "', expected argument " "4"" of type '" "double""'");
32813 arg4
= static_cast< double >(val4
);
32814 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
32815 if (!SWIG_IsOK(ecode5
)) {
32816 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawEllipticArcPointSize" "', expected argument " "5"" of type '" "double""'");
32818 arg5
= static_cast< double >(val5
);
32820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32821 (arg1
)->DrawEllipticArc((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
,arg4
,arg5
);
32822 wxPyEndAllowThreads(__tstate
);
32823 if (PyErr_Occurred()) SWIG_fail
;
32825 resultobj
= SWIG_Py_Void();
32832 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32833 PyObject
*resultobj
= 0;
32834 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32843 PyObject
* obj0
= 0 ;
32844 PyObject
* obj1
= 0 ;
32845 PyObject
* obj2
= 0 ;
32846 char * kwnames
[] = {
32847 (char *) "self",(char *) "x",(char *) "y", NULL
32850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
32851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32852 if (!SWIG_IsOK(res1
)) {
32853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32855 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32856 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32857 if (!SWIG_IsOK(ecode2
)) {
32858 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawPoint" "', expected argument " "2"" of type '" "int""'");
32860 arg2
= static_cast< int >(val2
);
32861 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32862 if (!SWIG_IsOK(ecode3
)) {
32863 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawPoint" "', expected argument " "3"" of type '" "int""'");
32865 arg3
= static_cast< int >(val3
);
32867 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32868 (arg1
)->DrawPoint(arg2
,arg3
);
32869 wxPyEndAllowThreads(__tstate
);
32870 if (PyErr_Occurred()) SWIG_fail
;
32872 resultobj
= SWIG_Py_Void();
32879 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawPointPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32880 PyObject
*resultobj
= 0;
32881 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32882 wxPoint
*arg2
= 0 ;
32886 PyObject
* obj0
= 0 ;
32887 PyObject
* obj1
= 0 ;
32888 char * kwnames
[] = {
32889 (char *) "self",(char *) "pt", NULL
32892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawPointPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32893 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32894 if (!SWIG_IsOK(res1
)) {
32895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawPointPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32897 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32900 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32904 (arg1
)->DrawPoint((wxPoint
const &)*arg2
);
32905 wxPyEndAllowThreads(__tstate
);
32906 if (PyErr_Occurred()) SWIG_fail
;
32908 resultobj
= SWIG_Py_Void();
32915 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32916 PyObject
*resultobj
= 0;
32917 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32932 PyObject
* obj0
= 0 ;
32933 PyObject
* obj1
= 0 ;
32934 PyObject
* obj2
= 0 ;
32935 PyObject
* obj3
= 0 ;
32936 PyObject
* obj4
= 0 ;
32937 char * kwnames
[] = {
32938 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
32941 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
32942 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32943 if (!SWIG_IsOK(res1
)) {
32944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRectangle" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32946 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
32947 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
32948 if (!SWIG_IsOK(ecode2
)) {
32949 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawRectangle" "', expected argument " "2"" of type '" "int""'");
32951 arg2
= static_cast< int >(val2
);
32952 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
32953 if (!SWIG_IsOK(ecode3
)) {
32954 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawRectangle" "', expected argument " "3"" of type '" "int""'");
32956 arg3
= static_cast< int >(val3
);
32957 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
32958 if (!SWIG_IsOK(ecode4
)) {
32959 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawRectangle" "', expected argument " "4"" of type '" "int""'");
32961 arg4
= static_cast< int >(val4
);
32962 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
32963 if (!SWIG_IsOK(ecode5
)) {
32964 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawRectangle" "', expected argument " "5"" of type '" "int""'");
32966 arg5
= static_cast< int >(val5
);
32968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32969 (arg1
)->DrawRectangle(arg2
,arg3
,arg4
,arg5
);
32970 wxPyEndAllowThreads(__tstate
);
32971 if (PyErr_Occurred()) SWIG_fail
;
32973 resultobj
= SWIG_Py_Void();
32980 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRectangleRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
32981 PyObject
*resultobj
= 0;
32982 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
32987 PyObject
* obj0
= 0 ;
32988 PyObject
* obj1
= 0 ;
32989 char * kwnames
[] = {
32990 (char *) "self",(char *) "rect", NULL
32993 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawRectangleRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
32994 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
32995 if (!SWIG_IsOK(res1
)) {
32996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRectangleRect" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
32998 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33001 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
33004 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33005 (arg1
)->DrawRectangle((wxRect
const &)*arg2
);
33006 wxPyEndAllowThreads(__tstate
);
33007 if (PyErr_Occurred()) SWIG_fail
;
33009 resultobj
= SWIG_Py_Void();
33016 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRectanglePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33017 PyObject
*resultobj
= 0;
33018 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33019 wxPoint
*arg2
= 0 ;
33025 PyObject
* obj0
= 0 ;
33026 PyObject
* obj1
= 0 ;
33027 PyObject
* obj2
= 0 ;
33028 char * kwnames
[] = {
33029 (char *) "self",(char *) "pt",(char *) "sz", NULL
33032 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawRectanglePointSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33033 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33034 if (!SWIG_IsOK(res1
)) {
33035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRectanglePointSize" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33037 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33040 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
33044 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
33047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33048 (arg1
)->DrawRectangle((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
33049 wxPyEndAllowThreads(__tstate
);
33050 if (PyErr_Occurred()) SWIG_fail
;
33052 resultobj
= SWIG_Py_Void();
33059 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRoundedRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33060 PyObject
*resultobj
= 0;
33061 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33079 PyObject
* obj0
= 0 ;
33080 PyObject
* obj1
= 0 ;
33081 PyObject
* obj2
= 0 ;
33082 PyObject
* obj3
= 0 ;
33083 PyObject
* obj4
= 0 ;
33084 PyObject
* obj5
= 0 ;
33085 char * kwnames
[] = {
33086 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "radius", NULL
33089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:PseudoDC_DrawRoundedRectangle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
33090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33091 if (!SWIG_IsOK(res1
)) {
33092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33094 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33095 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33096 if (!SWIG_IsOK(ecode2
)) {
33097 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "2"" of type '" "int""'");
33099 arg2
= static_cast< int >(val2
);
33100 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33101 if (!SWIG_IsOK(ecode3
)) {
33102 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "3"" of type '" "int""'");
33104 arg3
= static_cast< int >(val3
);
33105 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33106 if (!SWIG_IsOK(ecode4
)) {
33107 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "4"" of type '" "int""'");
33109 arg4
= static_cast< int >(val4
);
33110 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
33111 if (!SWIG_IsOK(ecode5
)) {
33112 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "5"" of type '" "int""'");
33114 arg5
= static_cast< int >(val5
);
33115 ecode6
= SWIG_AsVal_double(obj5
, &val6
);
33116 if (!SWIG_IsOK(ecode6
)) {
33117 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PseudoDC_DrawRoundedRectangle" "', expected argument " "6"" of type '" "double""'");
33119 arg6
= static_cast< double >(val6
);
33121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33122 (arg1
)->DrawRoundedRectangle(arg2
,arg3
,arg4
,arg5
,arg6
);
33123 wxPyEndAllowThreads(__tstate
);
33124 if (PyErr_Occurred()) SWIG_fail
;
33126 resultobj
= SWIG_Py_Void();
33133 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRoundedRectangleRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33134 PyObject
*resultobj
= 0;
33135 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33143 PyObject
* obj0
= 0 ;
33144 PyObject
* obj1
= 0 ;
33145 PyObject
* obj2
= 0 ;
33146 char * kwnames
[] = {
33147 (char *) "self",(char *) "r",(char *) "radius", NULL
33150 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawRoundedRectangleRect",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33151 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33152 if (!SWIG_IsOK(res1
)) {
33153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRoundedRectangleRect" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33155 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33158 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
33160 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
33161 if (!SWIG_IsOK(ecode3
)) {
33162 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawRoundedRectangleRect" "', expected argument " "3"" of type '" "double""'");
33164 arg3
= static_cast< double >(val3
);
33166 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33167 (arg1
)->DrawRoundedRectangle((wxRect
const &)*arg2
,arg3
);
33168 wxPyEndAllowThreads(__tstate
);
33169 if (PyErr_Occurred()) SWIG_fail
;
33171 resultobj
= SWIG_Py_Void();
33178 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRoundedRectanglePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33179 PyObject
*resultobj
= 0;
33180 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33181 wxPoint
*arg2
= 0 ;
33190 PyObject
* obj0
= 0 ;
33191 PyObject
* obj1
= 0 ;
33192 PyObject
* obj2
= 0 ;
33193 PyObject
* obj3
= 0 ;
33194 char * kwnames
[] = {
33195 (char *) "self",(char *) "pt",(char *) "sz",(char *) "radius", NULL
33198 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawRoundedRectanglePointSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33199 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33200 if (!SWIG_IsOK(res1
)) {
33201 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRoundedRectanglePointSize" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33203 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33206 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
33210 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
33212 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
33213 if (!SWIG_IsOK(ecode4
)) {
33214 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawRoundedRectanglePointSize" "', expected argument " "4"" of type '" "double""'");
33216 arg4
= static_cast< double >(val4
);
33218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33219 (arg1
)->DrawRoundedRectangle((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
,arg4
);
33220 wxPyEndAllowThreads(__tstate
);
33221 if (PyErr_Occurred()) SWIG_fail
;
33223 resultobj
= SWIG_Py_Void();
33230 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawCircle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33231 PyObject
*resultobj
= 0;
33232 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33244 PyObject
* obj0
= 0 ;
33245 PyObject
* obj1
= 0 ;
33246 PyObject
* obj2
= 0 ;
33247 PyObject
* obj3
= 0 ;
33248 char * kwnames
[] = {
33249 (char *) "self",(char *) "x",(char *) "y",(char *) "radius", NULL
33252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawCircle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33254 if (!SWIG_IsOK(res1
)) {
33255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawCircle" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33257 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33258 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33259 if (!SWIG_IsOK(ecode2
)) {
33260 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawCircle" "', expected argument " "2"" of type '" "int""'");
33262 arg2
= static_cast< int >(val2
);
33263 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33264 if (!SWIG_IsOK(ecode3
)) {
33265 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawCircle" "', expected argument " "3"" of type '" "int""'");
33267 arg3
= static_cast< int >(val3
);
33268 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33269 if (!SWIG_IsOK(ecode4
)) {
33270 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawCircle" "', expected argument " "4"" of type '" "int""'");
33272 arg4
= static_cast< int >(val4
);
33274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33275 (arg1
)->DrawCircle(arg2
,arg3
,arg4
);
33276 wxPyEndAllowThreads(__tstate
);
33277 if (PyErr_Occurred()) SWIG_fail
;
33279 resultobj
= SWIG_Py_Void();
33286 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawCirclePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33287 PyObject
*resultobj
= 0;
33288 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33289 wxPoint
*arg2
= 0 ;
33296 PyObject
* obj0
= 0 ;
33297 PyObject
* obj1
= 0 ;
33298 PyObject
* obj2
= 0 ;
33299 char * kwnames
[] = {
33300 (char *) "self",(char *) "pt",(char *) "radius", NULL
33303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawCirclePoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33305 if (!SWIG_IsOK(res1
)) {
33306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawCirclePoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33308 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33311 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
33313 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33314 if (!SWIG_IsOK(ecode3
)) {
33315 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawCirclePoint" "', expected argument " "3"" of type '" "int""'");
33317 arg3
= static_cast< int >(val3
);
33319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33320 (arg1
)->DrawCircle((wxPoint
const &)*arg2
,arg3
);
33321 wxPyEndAllowThreads(__tstate
);
33322 if (PyErr_Occurred()) SWIG_fail
;
33324 resultobj
= SWIG_Py_Void();
33331 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawEllipse(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33332 PyObject
*resultobj
= 0;
33333 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33348 PyObject
* obj0
= 0 ;
33349 PyObject
* obj1
= 0 ;
33350 PyObject
* obj2
= 0 ;
33351 PyObject
* obj3
= 0 ;
33352 PyObject
* obj4
= 0 ;
33353 char * kwnames
[] = {
33354 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
33357 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawEllipse",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
33358 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33359 if (!SWIG_IsOK(res1
)) {
33360 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawEllipse" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33362 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33363 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
33364 if (!SWIG_IsOK(ecode2
)) {
33365 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_DrawEllipse" "', expected argument " "2"" of type '" "int""'");
33367 arg2
= static_cast< int >(val2
);
33368 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33369 if (!SWIG_IsOK(ecode3
)) {
33370 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawEllipse" "', expected argument " "3"" of type '" "int""'");
33372 arg3
= static_cast< int >(val3
);
33373 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33374 if (!SWIG_IsOK(ecode4
)) {
33375 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawEllipse" "', expected argument " "4"" of type '" "int""'");
33377 arg4
= static_cast< int >(val4
);
33378 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
33379 if (!SWIG_IsOK(ecode5
)) {
33380 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawEllipse" "', expected argument " "5"" of type '" "int""'");
33382 arg5
= static_cast< int >(val5
);
33384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33385 (arg1
)->DrawEllipse(arg2
,arg3
,arg4
,arg5
);
33386 wxPyEndAllowThreads(__tstate
);
33387 if (PyErr_Occurred()) SWIG_fail
;
33389 resultobj
= SWIG_Py_Void();
33396 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawEllipseRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33397 PyObject
*resultobj
= 0;
33398 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33403 PyObject
* obj0
= 0 ;
33404 PyObject
* obj1
= 0 ;
33405 char * kwnames
[] = {
33406 (char *) "self",(char *) "rect", NULL
33409 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawEllipseRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
33410 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33411 if (!SWIG_IsOK(res1
)) {
33412 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawEllipseRect" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33414 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33417 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
33420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33421 (arg1
)->DrawEllipse((wxRect
const &)*arg2
);
33422 wxPyEndAllowThreads(__tstate
);
33423 if (PyErr_Occurred()) SWIG_fail
;
33425 resultobj
= SWIG_Py_Void();
33432 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawEllipsePointSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33433 PyObject
*resultobj
= 0;
33434 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33435 wxPoint
*arg2
= 0 ;
33441 PyObject
* obj0
= 0 ;
33442 PyObject
* obj1
= 0 ;
33443 PyObject
* obj2
= 0 ;
33444 char * kwnames
[] = {
33445 (char *) "self",(char *) "pt",(char *) "sz", NULL
33448 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawEllipsePointSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33449 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33450 if (!SWIG_IsOK(res1
)) {
33451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawEllipsePointSize" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33453 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33456 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
33460 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
33463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33464 (arg1
)->DrawEllipse((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
33465 wxPyEndAllowThreads(__tstate
);
33466 if (PyErr_Occurred()) SWIG_fail
;
33468 resultobj
= SWIG_Py_Void();
33475 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33476 PyObject
*resultobj
= 0;
33477 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33489 PyObject
* obj0
= 0 ;
33490 PyObject
* obj1
= 0 ;
33491 PyObject
* obj2
= 0 ;
33492 PyObject
* obj3
= 0 ;
33493 char * kwnames
[] = {
33494 (char *) "self",(char *) "icon",(char *) "x",(char *) "y", NULL
33497 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawIcon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33498 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33499 if (!SWIG_IsOK(res1
)) {
33500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawIcon" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33502 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33503 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
33504 if (!SWIG_IsOK(res2
)) {
33505 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
33508 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
33510 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
33511 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33512 if (!SWIG_IsOK(ecode3
)) {
33513 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawIcon" "', expected argument " "3"" of type '" "int""'");
33515 arg3
= static_cast< int >(val3
);
33516 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33517 if (!SWIG_IsOK(ecode4
)) {
33518 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawIcon" "', expected argument " "4"" of type '" "int""'");
33520 arg4
= static_cast< int >(val4
);
33522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33523 (arg1
)->DrawIcon((wxIcon
const &)*arg2
,arg3
,arg4
);
33524 wxPyEndAllowThreads(__tstate
);
33525 if (PyErr_Occurred()) SWIG_fail
;
33527 resultobj
= SWIG_Py_Void();
33534 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawIconPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33535 PyObject
*resultobj
= 0;
33536 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33538 wxPoint
*arg3
= 0 ;
33544 PyObject
* obj0
= 0 ;
33545 PyObject
* obj1
= 0 ;
33546 PyObject
* obj2
= 0 ;
33547 char * kwnames
[] = {
33548 (char *) "self",(char *) "icon",(char *) "pt", NULL
33551 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawIconPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33552 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33553 if (!SWIG_IsOK(res1
)) {
33554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawIconPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33556 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33557 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
33558 if (!SWIG_IsOK(res2
)) {
33559 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawIconPoint" "', expected argument " "2"" of type '" "wxIcon const &""'");
33562 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawIconPoint" "', expected argument " "2"" of type '" "wxIcon const &""'");
33564 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
33567 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33571 (arg1
)->DrawIcon((wxIcon
const &)*arg2
,(wxPoint
const &)*arg3
);
33572 wxPyEndAllowThreads(__tstate
);
33573 if (PyErr_Occurred()) SWIG_fail
;
33575 resultobj
= SWIG_Py_Void();
33582 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33583 PyObject
*resultobj
= 0;
33584 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33585 wxBitmap
*arg2
= 0 ;
33588 bool arg5
= (bool) false ;
33599 PyObject
* obj0
= 0 ;
33600 PyObject
* obj1
= 0 ;
33601 PyObject
* obj2
= 0 ;
33602 PyObject
* obj3
= 0 ;
33603 PyObject
* obj4
= 0 ;
33604 char * kwnames
[] = {
33605 (char *) "self",(char *) "bmp",(char *) "x",(char *) "y",(char *) "useMask", NULL
33608 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:PseudoDC_DrawBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
33609 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33610 if (!SWIG_IsOK(res1
)) {
33611 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawBitmap" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33613 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33614 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
33615 if (!SWIG_IsOK(res2
)) {
33616 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
33619 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
33621 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
33622 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33623 if (!SWIG_IsOK(ecode3
)) {
33624 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawBitmap" "', expected argument " "3"" of type '" "int""'");
33626 arg3
= static_cast< int >(val3
);
33627 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33628 if (!SWIG_IsOK(ecode4
)) {
33629 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawBitmap" "', expected argument " "4"" of type '" "int""'");
33631 arg4
= static_cast< int >(val4
);
33633 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
33634 if (!SWIG_IsOK(ecode5
)) {
33635 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawBitmap" "', expected argument " "5"" of type '" "bool""'");
33637 arg5
= static_cast< bool >(val5
);
33640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33641 (arg1
)->DrawBitmap((wxBitmap
const &)*arg2
,arg3
,arg4
,arg5
);
33642 wxPyEndAllowThreads(__tstate
);
33643 if (PyErr_Occurred()) SWIG_fail
;
33645 resultobj
= SWIG_Py_Void();
33652 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawBitmapPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33653 PyObject
*resultobj
= 0;
33654 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33655 wxBitmap
*arg2
= 0 ;
33656 wxPoint
*arg3
= 0 ;
33657 bool arg4
= (bool) false ;
33665 PyObject
* obj0
= 0 ;
33666 PyObject
* obj1
= 0 ;
33667 PyObject
* obj2
= 0 ;
33668 PyObject
* obj3
= 0 ;
33669 char * kwnames
[] = {
33670 (char *) "self",(char *) "bmp",(char *) "pt",(char *) "useMask", NULL
33673 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:PseudoDC_DrawBitmapPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33674 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33675 if (!SWIG_IsOK(res1
)) {
33676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawBitmapPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33678 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33679 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
33680 if (!SWIG_IsOK(res2
)) {
33681 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_DrawBitmapPoint" "', expected argument " "2"" of type '" "wxBitmap const &""'");
33684 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawBitmapPoint" "', expected argument " "2"" of type '" "wxBitmap const &""'");
33686 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
33689 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33692 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
33693 if (!SWIG_IsOK(ecode4
)) {
33694 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawBitmapPoint" "', expected argument " "4"" of type '" "bool""'");
33696 arg4
= static_cast< bool >(val4
);
33699 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33700 (arg1
)->DrawBitmap((wxBitmap
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
);
33701 wxPyEndAllowThreads(__tstate
);
33702 if (PyErr_Occurred()) SWIG_fail
;
33704 resultobj
= SWIG_Py_Void();
33711 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33712 PyObject
*resultobj
= 0;
33713 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33714 wxString
*arg2
= 0 ;
33719 bool temp2
= false ;
33724 PyObject
* obj0
= 0 ;
33725 PyObject
* obj1
= 0 ;
33726 PyObject
* obj2
= 0 ;
33727 PyObject
* obj3
= 0 ;
33728 char * kwnames
[] = {
33729 (char *) "self",(char *) "text",(char *) "x",(char *) "y", NULL
33732 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33733 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33734 if (!SWIG_IsOK(res1
)) {
33735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawText" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33737 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33739 arg2
= wxString_in_helper(obj1
);
33740 if (arg2
== NULL
) SWIG_fail
;
33743 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33744 if (!SWIG_IsOK(ecode3
)) {
33745 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawText" "', expected argument " "3"" of type '" "int""'");
33747 arg3
= static_cast< int >(val3
);
33748 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33749 if (!SWIG_IsOK(ecode4
)) {
33750 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawText" "', expected argument " "4"" of type '" "int""'");
33752 arg4
= static_cast< int >(val4
);
33754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33755 (arg1
)->DrawText((wxString
const &)*arg2
,arg3
,arg4
);
33756 wxPyEndAllowThreads(__tstate
);
33757 if (PyErr_Occurred()) SWIG_fail
;
33759 resultobj
= SWIG_Py_Void();
33774 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawTextPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33775 PyObject
*resultobj
= 0;
33776 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33777 wxString
*arg2
= 0 ;
33778 wxPoint
*arg3
= 0 ;
33781 bool temp2
= false ;
33783 PyObject
* obj0
= 0 ;
33784 PyObject
* obj1
= 0 ;
33785 PyObject
* obj2
= 0 ;
33786 char * kwnames
[] = {
33787 (char *) "self",(char *) "text",(char *) "pt", NULL
33790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PseudoDC_DrawTextPoint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
33791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33792 if (!SWIG_IsOK(res1
)) {
33793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawTextPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33795 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33797 arg2
= wxString_in_helper(obj1
);
33798 if (arg2
== NULL
) SWIG_fail
;
33803 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33807 (arg1
)->DrawText((wxString
const &)*arg2
,(wxPoint
const &)*arg3
);
33808 wxPyEndAllowThreads(__tstate
);
33809 if (PyErr_Occurred()) SWIG_fail
;
33811 resultobj
= SWIG_Py_Void();
33826 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRotatedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33827 PyObject
*resultobj
= 0;
33828 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33829 wxString
*arg2
= 0 ;
33835 bool temp2
= false ;
33842 PyObject
* obj0
= 0 ;
33843 PyObject
* obj1
= 0 ;
33844 PyObject
* obj2
= 0 ;
33845 PyObject
* obj3
= 0 ;
33846 PyObject
* obj4
= 0 ;
33847 char * kwnames
[] = {
33848 (char *) "self",(char *) "text",(char *) "x",(char *) "y",(char *) "angle", NULL
33851 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PseudoDC_DrawRotatedText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
33852 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33853 if (!SWIG_IsOK(res1
)) {
33854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRotatedText" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33856 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33858 arg2
= wxString_in_helper(obj1
);
33859 if (arg2
== NULL
) SWIG_fail
;
33862 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
33863 if (!SWIG_IsOK(ecode3
)) {
33864 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PseudoDC_DrawRotatedText" "', expected argument " "3"" of type '" "int""'");
33866 arg3
= static_cast< int >(val3
);
33867 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
33868 if (!SWIG_IsOK(ecode4
)) {
33869 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawRotatedText" "', expected argument " "4"" of type '" "int""'");
33871 arg4
= static_cast< int >(val4
);
33872 ecode5
= SWIG_AsVal_double(obj4
, &val5
);
33873 if (!SWIG_IsOK(ecode5
)) {
33874 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawRotatedText" "', expected argument " "5"" of type '" "double""'");
33876 arg5
= static_cast< double >(val5
);
33878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33879 (arg1
)->DrawRotatedText((wxString
const &)*arg2
,arg3
,arg4
,arg5
);
33880 wxPyEndAllowThreads(__tstate
);
33881 if (PyErr_Occurred()) SWIG_fail
;
33883 resultobj
= SWIG_Py_Void();
33898 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawRotatedTextPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33899 PyObject
*resultobj
= 0;
33900 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33901 wxString
*arg2
= 0 ;
33902 wxPoint
*arg3
= 0 ;
33906 bool temp2
= false ;
33910 PyObject
* obj0
= 0 ;
33911 PyObject
* obj1
= 0 ;
33912 PyObject
* obj2
= 0 ;
33913 PyObject
* obj3
= 0 ;
33914 char * kwnames
[] = {
33915 (char *) "self",(char *) "text",(char *) "pt",(char *) "angle", NULL
33918 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:PseudoDC_DrawRotatedTextPoint",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33919 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33920 if (!SWIG_IsOK(res1
)) {
33921 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawRotatedTextPoint" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33923 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33925 arg2
= wxString_in_helper(obj1
);
33926 if (arg2
== NULL
) SWIG_fail
;
33931 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33933 ecode4
= SWIG_AsVal_double(obj3
, &val4
);
33934 if (!SWIG_IsOK(ecode4
)) {
33935 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawRotatedTextPoint" "', expected argument " "4"" of type '" "double""'");
33937 arg4
= static_cast< double >(val4
);
33939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33940 (arg1
)->DrawRotatedText((wxString
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
);
33941 wxPyEndAllowThreads(__tstate
);
33942 if (PyErr_Occurred()) SWIG_fail
;
33944 resultobj
= SWIG_Py_Void();
33959 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
33960 PyObject
*resultobj
= 0;
33961 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
33963 wxPoint
*arg3
= (wxPoint
*) 0 ;
33964 int arg4
= (int) 0 ;
33965 int arg5
= (int) 0 ;
33972 PyObject
* obj0
= 0 ;
33973 PyObject
* obj1
= 0 ;
33974 PyObject
* obj2
= 0 ;
33975 PyObject
* obj3
= 0 ;
33976 char * kwnames
[] = {
33977 (char *) "self",(char *) "points",(char *) "xoffset",(char *) "yoffset", NULL
33980 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:PseudoDC_DrawLines",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
33981 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
33982 if (!SWIG_IsOK(res1
)) {
33983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawLines" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
33985 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
33987 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
33988 if (arg3
== NULL
) SWIG_fail
;
33991 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
33992 if (!SWIG_IsOK(ecode4
)) {
33993 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawLines" "', expected argument " "4"" of type '" "int""'");
33995 arg4
= static_cast< int >(val4
);
33998 ecode5
= SWIG_AsVal_int(obj3
, &val5
);
33999 if (!SWIG_IsOK(ecode5
)) {
34000 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawLines" "', expected argument " "5"" of type '" "int""'");
34002 arg5
= static_cast< int >(val5
);
34005 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34006 (arg1
)->DrawLines(arg2
,arg3
,arg4
,arg5
);
34007 wxPyEndAllowThreads(__tstate
);
34008 if (PyErr_Occurred()) SWIG_fail
;
34010 resultobj
= SWIG_Py_Void();
34012 if (arg3
) delete [] arg3
;
34017 if (arg3
) delete [] arg3
;
34023 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawPolygon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34024 PyObject
*resultobj
= 0;
34025 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34027 wxPoint
*arg3
= (wxPoint
*) 0 ;
34028 int arg4
= (int) 0 ;
34029 int arg5
= (int) 0 ;
34030 int arg6
= (int) wxODDEVEN_RULE
;
34039 PyObject
* obj0
= 0 ;
34040 PyObject
* obj1
= 0 ;
34041 PyObject
* obj2
= 0 ;
34042 PyObject
* obj3
= 0 ;
34043 PyObject
* obj4
= 0 ;
34044 char * kwnames
[] = {
34045 (char *) "self",(char *) "points",(char *) "xoffset",(char *) "yoffset",(char *) "fillStyle", NULL
34048 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:PseudoDC_DrawPolygon",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
34049 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34050 if (!SWIG_IsOK(res1
)) {
34051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawPolygon" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34053 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34055 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
34056 if (arg3
== NULL
) SWIG_fail
;
34059 ecode4
= SWIG_AsVal_int(obj2
, &val4
);
34060 if (!SWIG_IsOK(ecode4
)) {
34061 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawPolygon" "', expected argument " "4"" of type '" "int""'");
34063 arg4
= static_cast< int >(val4
);
34066 ecode5
= SWIG_AsVal_int(obj3
, &val5
);
34067 if (!SWIG_IsOK(ecode5
)) {
34068 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawPolygon" "', expected argument " "5"" of type '" "int""'");
34070 arg5
= static_cast< int >(val5
);
34073 ecode6
= SWIG_AsVal_int(obj4
, &val6
);
34074 if (!SWIG_IsOK(ecode6
)) {
34075 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PseudoDC_DrawPolygon" "', expected argument " "6"" of type '" "int""'");
34077 arg6
= static_cast< int >(val6
);
34080 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34081 (arg1
)->DrawPolygon(arg2
,arg3
,arg4
,arg5
,arg6
);
34082 wxPyEndAllowThreads(__tstate
);
34083 if (PyErr_Occurred()) SWIG_fail
;
34085 resultobj
= SWIG_Py_Void();
34087 if (arg3
) delete [] arg3
;
34092 if (arg3
) delete [] arg3
;
34098 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34099 PyObject
*resultobj
= 0;
34100 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34101 wxString
*arg2
= 0 ;
34103 int arg4
= (int) wxALIGN_LEFT
|wxALIGN_TOP
;
34104 int arg5
= (int) -1 ;
34107 bool temp2
= false ;
34113 PyObject
* obj0
= 0 ;
34114 PyObject
* obj1
= 0 ;
34115 PyObject
* obj2
= 0 ;
34116 PyObject
* obj3
= 0 ;
34117 PyObject
* obj4
= 0 ;
34118 char * kwnames
[] = {
34119 (char *) "self",(char *) "text",(char *) "rect",(char *) "alignment",(char *) "indexAccel", NULL
34122 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:PseudoDC_DrawLabel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
34123 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34124 if (!SWIG_IsOK(res1
)) {
34125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawLabel" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34127 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34129 arg2
= wxString_in_helper(obj1
);
34130 if (arg2
== NULL
) SWIG_fail
;
34135 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
34138 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
34139 if (!SWIG_IsOK(ecode4
)) {
34140 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PseudoDC_DrawLabel" "', expected argument " "4"" of type '" "int""'");
34142 arg4
= static_cast< int >(val4
);
34145 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
34146 if (!SWIG_IsOK(ecode5
)) {
34147 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawLabel" "', expected argument " "5"" of type '" "int""'");
34149 arg5
= static_cast< int >(val5
);
34152 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34153 (arg1
)->DrawLabel((wxString
const &)*arg2
,(wxRect
const &)*arg3
,arg4
,arg5
);
34154 wxPyEndAllowThreads(__tstate
);
34155 if (PyErr_Occurred()) SWIG_fail
;
34157 resultobj
= SWIG_Py_Void();
34172 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawImageLabel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34173 PyObject
*resultobj
= 0;
34174 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34175 wxString
*arg2
= 0 ;
34176 wxBitmap
*arg3
= 0 ;
34178 int arg5
= (int) wxALIGN_LEFT
|wxALIGN_TOP
;
34179 int arg6
= (int) -1 ;
34182 bool temp2
= false ;
34190 PyObject
* obj0
= 0 ;
34191 PyObject
* obj1
= 0 ;
34192 PyObject
* obj2
= 0 ;
34193 PyObject
* obj3
= 0 ;
34194 PyObject
* obj4
= 0 ;
34195 PyObject
* obj5
= 0 ;
34196 char * kwnames
[] = {
34197 (char *) "self",(char *) "text",(char *) "image",(char *) "rect",(char *) "alignment",(char *) "indexAccel", NULL
34200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:PseudoDC_DrawImageLabel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
34201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34202 if (!SWIG_IsOK(res1
)) {
34203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawImageLabel" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34205 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34207 arg2
= wxString_in_helper(obj1
);
34208 if (arg2
== NULL
) SWIG_fail
;
34211 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
34212 if (!SWIG_IsOK(res3
)) {
34213 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PseudoDC_DrawImageLabel" "', expected argument " "3"" of type '" "wxBitmap const &""'");
34216 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_DrawImageLabel" "', expected argument " "3"" of type '" "wxBitmap const &""'");
34218 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
34221 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
34224 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
34225 if (!SWIG_IsOK(ecode5
)) {
34226 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PseudoDC_DrawImageLabel" "', expected argument " "5"" of type '" "int""'");
34228 arg5
= static_cast< int >(val5
);
34231 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
34232 if (!SWIG_IsOK(ecode6
)) {
34233 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PseudoDC_DrawImageLabel" "', expected argument " "6"" of type '" "int""'");
34235 arg6
= static_cast< int >(val6
);
34238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34239 (arg1
)->DrawLabel((wxString
const &)*arg2
,(wxBitmap
const &)*arg3
,(wxRect
const &)*arg4
,arg5
,arg6
);
34240 wxPyEndAllowThreads(__tstate
);
34241 if (PyErr_Occurred()) SWIG_fail
;
34243 resultobj
= SWIG_Py_Void();
34258 SWIGINTERN PyObject
*_wrap_PseudoDC_DrawSpline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34259 PyObject
*resultobj
= 0;
34260 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34262 wxPoint
*arg3
= (wxPoint
*) 0 ;
34265 PyObject
* obj0
= 0 ;
34266 PyObject
* obj1
= 0 ;
34267 char * kwnames
[] = {
34268 (char *) "self",(char *) "points", NULL
34271 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_DrawSpline",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34272 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34273 if (!SWIG_IsOK(res1
)) {
34274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_DrawSpline" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34276 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34278 arg3
= wxPoint_LIST_helper(obj1
, &arg2
);
34279 if (arg3
== NULL
) SWIG_fail
;
34282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34283 (arg1
)->DrawSpline(arg2
,arg3
);
34284 wxPyEndAllowThreads(__tstate
);
34285 if (PyErr_Occurred()) SWIG_fail
;
34287 resultobj
= SWIG_Py_Void();
34289 if (arg3
) delete [] arg3
;
34294 if (arg3
) delete [] arg3
;
34300 SWIGINTERN PyObject
*_wrap_PseudoDC_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34301 PyObject
*resultobj
= 0;
34302 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34305 PyObject
*swig_obj
[1] ;
34307 if (!args
) SWIG_fail
;
34308 swig_obj
[0] = args
;
34309 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34310 if (!SWIG_IsOK(res1
)) {
34311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_Clear" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34313 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34317 wxPyEndAllowThreads(__tstate
);
34318 if (PyErr_Occurred()) SWIG_fail
;
34320 resultobj
= SWIG_Py_Void();
34327 SWIGINTERN PyObject
*_wrap_PseudoDC_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34328 PyObject
*resultobj
= 0;
34329 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34335 PyObject
* obj0
= 0 ;
34336 PyObject
* obj1
= 0 ;
34337 char * kwnames
[] = {
34338 (char *) "self",(char *) "font", NULL
34341 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34342 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34343 if (!SWIG_IsOK(res1
)) {
34344 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetFont" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34346 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34347 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
34348 if (!SWIG_IsOK(res2
)) {
34349 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
34352 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_SetFont" "', expected argument " "2"" of type '" "wxFont const &""'");
34354 arg2
= reinterpret_cast< wxFont
* >(argp2
);
34356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34357 (arg1
)->SetFont((wxFont
const &)*arg2
);
34358 wxPyEndAllowThreads(__tstate
);
34359 if (PyErr_Occurred()) SWIG_fail
;
34361 resultobj
= SWIG_Py_Void();
34368 SWIGINTERN PyObject
*_wrap_PseudoDC_SetPen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34369 PyObject
*resultobj
= 0;
34370 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34376 PyObject
* obj0
= 0 ;
34377 PyObject
* obj1
= 0 ;
34378 char * kwnames
[] = {
34379 (char *) "self",(char *) "pen", NULL
34382 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetPen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34383 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34384 if (!SWIG_IsOK(res1
)) {
34385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetPen" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34387 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34388 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPen
, 0 | 0);
34389 if (!SWIG_IsOK(res2
)) {
34390 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
34393 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_SetPen" "', expected argument " "2"" of type '" "wxPen const &""'");
34395 arg2
= reinterpret_cast< wxPen
* >(argp2
);
34397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34398 (arg1
)->SetPen((wxPen
const &)*arg2
);
34399 wxPyEndAllowThreads(__tstate
);
34400 if (PyErr_Occurred()) SWIG_fail
;
34402 resultobj
= SWIG_Py_Void();
34409 SWIGINTERN PyObject
*_wrap_PseudoDC_SetBrush(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34410 PyObject
*resultobj
= 0;
34411 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34412 wxBrush
*arg2
= 0 ;
34417 PyObject
* obj0
= 0 ;
34418 PyObject
* obj1
= 0 ;
34419 char * kwnames
[] = {
34420 (char *) "self",(char *) "brush", NULL
34423 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetBrush",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34424 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34425 if (!SWIG_IsOK(res1
)) {
34426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetBrush" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34428 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34429 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBrush
, 0 | 0);
34430 if (!SWIG_IsOK(res2
)) {
34431 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
34434 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_SetBrush" "', expected argument " "2"" of type '" "wxBrush const &""'");
34436 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
34438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34439 (arg1
)->SetBrush((wxBrush
const &)*arg2
);
34440 wxPyEndAllowThreads(__tstate
);
34441 if (PyErr_Occurred()) SWIG_fail
;
34443 resultobj
= SWIG_Py_Void();
34450 SWIGINTERN PyObject
*_wrap_PseudoDC_SetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34451 PyObject
*resultobj
= 0;
34452 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34453 wxBrush
*arg2
= 0 ;
34458 PyObject
* obj0
= 0 ;
34459 PyObject
* obj1
= 0 ;
34460 char * kwnames
[] = {
34461 (char *) "self",(char *) "brush", NULL
34464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34466 if (!SWIG_IsOK(res1
)) {
34467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetBackground" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34469 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34470 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBrush
, 0 | 0);
34471 if (!SWIG_IsOK(res2
)) {
34472 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_SetBackground" "', expected argument " "2"" of type '" "wxBrush const &""'");
34475 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_SetBackground" "', expected argument " "2"" of type '" "wxBrush const &""'");
34477 arg2
= reinterpret_cast< wxBrush
* >(argp2
);
34479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34480 (arg1
)->SetBackground((wxBrush
const &)*arg2
);
34481 wxPyEndAllowThreads(__tstate
);
34482 if (PyErr_Occurred()) SWIG_fail
;
34484 resultobj
= SWIG_Py_Void();
34491 SWIGINTERN PyObject
*_wrap_PseudoDC_SetBackgroundMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34492 PyObject
*resultobj
= 0;
34493 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34499 PyObject
* obj0
= 0 ;
34500 PyObject
* obj1
= 0 ;
34501 char * kwnames
[] = {
34502 (char *) "self",(char *) "mode", NULL
34505 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetBackgroundMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34506 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34507 if (!SWIG_IsOK(res1
)) {
34508 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetBackgroundMode" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34510 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34511 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
34512 if (!SWIG_IsOK(ecode2
)) {
34513 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_SetBackgroundMode" "', expected argument " "2"" of type '" "int""'");
34515 arg2
= static_cast< int >(val2
);
34517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34518 (arg1
)->SetBackgroundMode(arg2
);
34519 wxPyEndAllowThreads(__tstate
);
34520 if (PyErr_Occurred()) SWIG_fail
;
34522 resultobj
= SWIG_Py_Void();
34529 SWIGINTERN PyObject
*_wrap_PseudoDC_SetPalette(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34530 PyObject
*resultobj
= 0;
34531 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34532 wxPalette
*arg2
= 0 ;
34537 PyObject
* obj0
= 0 ;
34538 PyObject
* obj1
= 0 ;
34539 char * kwnames
[] = {
34540 (char *) "self",(char *) "palette", NULL
34543 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetPalette",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34544 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34545 if (!SWIG_IsOK(res1
)) {
34546 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetPalette" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34548 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34549 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPalette
, 0 | 0);
34550 if (!SWIG_IsOK(res2
)) {
34551 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PseudoDC_SetPalette" "', expected argument " "2"" of type '" "wxPalette const &""'");
34554 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PseudoDC_SetPalette" "', expected argument " "2"" of type '" "wxPalette const &""'");
34556 arg2
= reinterpret_cast< wxPalette
* >(argp2
);
34558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34559 (arg1
)->SetPalette((wxPalette
const &)*arg2
);
34560 wxPyEndAllowThreads(__tstate
);
34561 if (PyErr_Occurred()) SWIG_fail
;
34563 resultobj
= SWIG_Py_Void();
34570 SWIGINTERN PyObject
*_wrap_PseudoDC_SetTextForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34571 PyObject
*resultobj
= 0;
34572 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34573 wxColour
*arg2
= 0 ;
34577 PyObject
* obj0
= 0 ;
34578 PyObject
* obj1
= 0 ;
34579 char * kwnames
[] = {
34580 (char *) "self",(char *) "colour", NULL
34583 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetTextForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34584 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34585 if (!SWIG_IsOK(res1
)) {
34586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetTextForeground" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34588 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34591 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
34594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34595 (arg1
)->SetTextForeground((wxColour
const &)*arg2
);
34596 wxPyEndAllowThreads(__tstate
);
34597 if (PyErr_Occurred()) SWIG_fail
;
34599 resultobj
= SWIG_Py_Void();
34606 SWIGINTERN PyObject
*_wrap_PseudoDC_SetTextBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34607 PyObject
*resultobj
= 0;
34608 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34609 wxColour
*arg2
= 0 ;
34613 PyObject
* obj0
= 0 ;
34614 PyObject
* obj1
= 0 ;
34615 char * kwnames
[] = {
34616 (char *) "self",(char *) "colour", NULL
34619 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetTextBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34620 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34621 if (!SWIG_IsOK(res1
)) {
34622 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetTextBackground" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34624 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34627 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
34630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34631 (arg1
)->SetTextBackground((wxColour
const &)*arg2
);
34632 wxPyEndAllowThreads(__tstate
);
34633 if (PyErr_Occurred()) SWIG_fail
;
34635 resultobj
= SWIG_Py_Void();
34642 SWIGINTERN PyObject
*_wrap_PseudoDC_SetLogicalFunction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
34643 PyObject
*resultobj
= 0;
34644 wxPseudoDC
*arg1
= (wxPseudoDC
*) 0 ;
34650 PyObject
* obj0
= 0 ;
34651 PyObject
* obj1
= 0 ;
34652 char * kwnames
[] = {
34653 (char *) "self",(char *) "function", NULL
34656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PseudoDC_SetLogicalFunction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
34657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPseudoDC
, 0 | 0 );
34658 if (!SWIG_IsOK(res1
)) {
34659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PseudoDC_SetLogicalFunction" "', expected argument " "1"" of type '" "wxPseudoDC *""'");
34661 arg1
= reinterpret_cast< wxPseudoDC
* >(argp1
);
34662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
34663 if (!SWIG_IsOK(ecode2
)) {
34664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PseudoDC_SetLogicalFunction" "', expected argument " "2"" of type '" "int""'");
34666 arg2
= static_cast< int >(val2
);
34668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34669 (arg1
)->SetLogicalFunction(arg2
);
34670 wxPyEndAllowThreads(__tstate
);
34671 if (PyErr_Occurred()) SWIG_fail
;
34673 resultobj
= SWIG_Py_Void();
34680 SWIGINTERN PyObject
*PseudoDC_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34682 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
34683 SWIG_TypeNewClientData(SWIGTYPE_p_wxPseudoDC
, SWIG_NewClientData(obj
));
34684 return SWIG_Py_Void();
34687 SWIGINTERN PyObject
*PseudoDC_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
34688 return SWIG_Python_InitShadowInstance(args
);
34691 static PyMethodDef SwigMethods
[] = {
34692 { (char *)"new_GDIObject", (PyCFunction
)_wrap_new_GDIObject
, METH_NOARGS
, NULL
},
34693 { (char *)"delete_GDIObject", (PyCFunction
)_wrap_delete_GDIObject
, METH_O
, NULL
},
34694 { (char *)"GDIObject_IsNull", (PyCFunction
)_wrap_GDIObject_IsNull
, METH_O
, NULL
},
34695 { (char *)"GDIObject_swigregister", GDIObject_swigregister
, METH_VARARGS
, NULL
},
34696 { (char *)"GDIObject_swiginit", GDIObject_swiginit
, METH_VARARGS
, NULL
},
34697 { (char *)"new_Colour", (PyCFunction
) _wrap_new_Colour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34698 { (char *)"new_NamedColour", (PyCFunction
) _wrap_new_NamedColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34699 { (char *)"new_ColourRGB", (PyCFunction
) _wrap_new_ColourRGB
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34700 { (char *)"delete_Colour", (PyCFunction
)_wrap_delete_Colour
, METH_O
, NULL
},
34701 { (char *)"Colour_Red", (PyCFunction
)_wrap_Colour_Red
, METH_O
, NULL
},
34702 { (char *)"Colour_Green", (PyCFunction
)_wrap_Colour_Green
, METH_O
, NULL
},
34703 { (char *)"Colour_Blue", (PyCFunction
)_wrap_Colour_Blue
, METH_O
, NULL
},
34704 { (char *)"Colour_Alpha", (PyCFunction
)_wrap_Colour_Alpha
, METH_O
, NULL
},
34705 { (char *)"Colour_IsOk", (PyCFunction
)_wrap_Colour_IsOk
, METH_O
, NULL
},
34706 { (char *)"Colour_Set", (PyCFunction
) _wrap_Colour_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34707 { (char *)"Colour_SetRGB", (PyCFunction
) _wrap_Colour_SetRGB
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34708 { (char *)"Colour_SetFromName", (PyCFunction
) _wrap_Colour_SetFromName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34709 { (char *)"Colour_GetAsString", (PyCFunction
) _wrap_Colour_GetAsString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34710 { (char *)"Colour_GetPixel", (PyCFunction
)_wrap_Colour_GetPixel
, METH_O
, NULL
},
34711 { (char *)"Colour___eq__", (PyCFunction
) _wrap_Colour___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34712 { (char *)"Colour___ne__", (PyCFunction
) _wrap_Colour___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34713 { (char *)"Colour_Get", (PyCFunction
) _wrap_Colour_Get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34714 { (char *)"Colour_GetRGB", (PyCFunction
)_wrap_Colour_GetRGB
, METH_O
, NULL
},
34715 { (char *)"Colour_swigregister", Colour_swigregister
, METH_VARARGS
, NULL
},
34716 { (char *)"Colour_swiginit", Colour_swiginit
, METH_VARARGS
, NULL
},
34717 { (char *)"new_Palette", (PyCFunction
) _wrap_new_Palette
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34718 { (char *)"delete_Palette", (PyCFunction
)_wrap_delete_Palette
, METH_O
, NULL
},
34719 { (char *)"Palette_GetPixel", (PyCFunction
) _wrap_Palette_GetPixel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34720 { (char *)"Palette_GetRGB", (PyCFunction
) _wrap_Palette_GetRGB
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34721 { (char *)"Palette_GetColoursCount", (PyCFunction
)_wrap_Palette_GetColoursCount
, METH_O
, NULL
},
34722 { (char *)"Palette_IsOk", (PyCFunction
)_wrap_Palette_IsOk
, METH_O
, NULL
},
34723 { (char *)"Palette_swigregister", Palette_swigregister
, METH_VARARGS
, NULL
},
34724 { (char *)"Palette_swiginit", Palette_swiginit
, METH_VARARGS
, NULL
},
34725 { (char *)"new_Pen", (PyCFunction
) _wrap_new_Pen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34726 { (char *)"delete_Pen", (PyCFunction
)_wrap_delete_Pen
, METH_O
, NULL
},
34727 { (char *)"Pen_GetCap", (PyCFunction
)_wrap_Pen_GetCap
, METH_O
, NULL
},
34728 { (char *)"Pen_GetColour", (PyCFunction
)_wrap_Pen_GetColour
, METH_O
, NULL
},
34729 { (char *)"Pen_GetJoin", (PyCFunction
)_wrap_Pen_GetJoin
, METH_O
, NULL
},
34730 { (char *)"Pen_GetStyle", (PyCFunction
)_wrap_Pen_GetStyle
, METH_O
, NULL
},
34731 { (char *)"Pen_GetWidth", (PyCFunction
)_wrap_Pen_GetWidth
, METH_O
, NULL
},
34732 { (char *)"Pen_IsOk", (PyCFunction
)_wrap_Pen_IsOk
, METH_O
, NULL
},
34733 { (char *)"Pen_SetCap", (PyCFunction
) _wrap_Pen_SetCap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34734 { (char *)"Pen_SetColour", (PyCFunction
) _wrap_Pen_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34735 { (char *)"Pen_SetJoin", (PyCFunction
) _wrap_Pen_SetJoin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34736 { (char *)"Pen_SetStyle", (PyCFunction
) _wrap_Pen_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34737 { (char *)"Pen_SetWidth", (PyCFunction
) _wrap_Pen_SetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34738 { (char *)"Pen_SetDashes", (PyCFunction
) _wrap_Pen_SetDashes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34739 { (char *)"Pen_GetDashes", (PyCFunction
)_wrap_Pen_GetDashes
, METH_O
, NULL
},
34740 { (char *)"Pen__SetDashes", (PyCFunction
) _wrap_Pen__SetDashes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34741 { (char *)"Pen___eq__", (PyCFunction
) _wrap_Pen___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34742 { (char *)"Pen___ne__", (PyCFunction
) _wrap_Pen___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34743 { (char *)"Pen_swigregister", Pen_swigregister
, METH_VARARGS
, NULL
},
34744 { (char *)"Pen_swiginit", Pen_swiginit
, METH_VARARGS
, NULL
},
34745 { (char *)"new_Brush", (PyCFunction
) _wrap_new_Brush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34746 { (char *)"new_BrushFromBitmap", (PyCFunction
) _wrap_new_BrushFromBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34747 { (char *)"delete_Brush", (PyCFunction
)_wrap_delete_Brush
, METH_O
, NULL
},
34748 { (char *)"Brush_SetColour", (PyCFunction
) _wrap_Brush_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34749 { (char *)"Brush_SetStyle", (PyCFunction
) _wrap_Brush_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34750 { (char *)"Brush_SetStipple", (PyCFunction
) _wrap_Brush_SetStipple
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34751 { (char *)"Brush_GetColour", (PyCFunction
)_wrap_Brush_GetColour
, METH_O
, NULL
},
34752 { (char *)"Brush_GetStyle", (PyCFunction
)_wrap_Brush_GetStyle
, METH_O
, NULL
},
34753 { (char *)"Brush_GetStipple", (PyCFunction
)_wrap_Brush_GetStipple
, METH_O
, NULL
},
34754 { (char *)"Brush_IsHatch", (PyCFunction
)_wrap_Brush_IsHatch
, METH_O
, NULL
},
34755 { (char *)"Brush_IsOk", (PyCFunction
)_wrap_Brush_IsOk
, METH_O
, NULL
},
34756 { (char *)"Brush_MacGetTheme", (PyCFunction
)_wrap_Brush_MacGetTheme
, METH_O
, NULL
},
34757 { (char *)"Brush_MacSetTheme", (PyCFunction
) _wrap_Brush_MacSetTheme
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34758 { (char *)"Brush_swigregister", Brush_swigregister
, METH_VARARGS
, NULL
},
34759 { (char *)"Brush_swiginit", Brush_swiginit
, METH_VARARGS
, NULL
},
34760 { (char *)"new_Bitmap", (PyCFunction
) _wrap_new_Bitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34761 { (char *)"delete_Bitmap", (PyCFunction
)_wrap_delete_Bitmap
, METH_O
, NULL
},
34762 { (char *)"new_EmptyBitmap", (PyCFunction
) _wrap_new_EmptyBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34763 { (char *)"new_BitmapFromIcon", (PyCFunction
) _wrap_new_BitmapFromIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34764 { (char *)"new_BitmapFromImage", (PyCFunction
) _wrap_new_BitmapFromImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34765 { (char *)"new_BitmapFromXPMData", (PyCFunction
) _wrap_new_BitmapFromXPMData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34766 { (char *)"new_BitmapFromBits", (PyCFunction
) _wrap_new_BitmapFromBits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34767 { (char *)"Bitmap_IsOk", (PyCFunction
)_wrap_Bitmap_IsOk
, METH_O
, NULL
},
34768 { (char *)"Bitmap_GetWidth", (PyCFunction
)_wrap_Bitmap_GetWidth
, METH_O
, NULL
},
34769 { (char *)"Bitmap_GetHeight", (PyCFunction
)_wrap_Bitmap_GetHeight
, METH_O
, NULL
},
34770 { (char *)"Bitmap_GetDepth", (PyCFunction
)_wrap_Bitmap_GetDepth
, METH_O
, NULL
},
34771 { (char *)"Bitmap_GetSize", (PyCFunction
)_wrap_Bitmap_GetSize
, METH_O
, NULL
},
34772 { (char *)"Bitmap_ConvertToImage", (PyCFunction
)_wrap_Bitmap_ConvertToImage
, METH_O
, NULL
},
34773 { (char *)"Bitmap_GetMask", (PyCFunction
)_wrap_Bitmap_GetMask
, METH_O
, NULL
},
34774 { (char *)"Bitmap_SetMask", (PyCFunction
) _wrap_Bitmap_SetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34775 { (char *)"Bitmap_SetMaskColour", (PyCFunction
) _wrap_Bitmap_SetMaskColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34776 { (char *)"Bitmap_GetSubBitmap", (PyCFunction
) _wrap_Bitmap_GetSubBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34777 { (char *)"Bitmap_SaveFile", (PyCFunction
) _wrap_Bitmap_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34778 { (char *)"Bitmap_LoadFile", (PyCFunction
) _wrap_Bitmap_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34779 { (char *)"Bitmap_GetPalette", (PyCFunction
)_wrap_Bitmap_GetPalette
, METH_O
, NULL
},
34780 { (char *)"Bitmap_CopyFromIcon", (PyCFunction
) _wrap_Bitmap_CopyFromIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34781 { (char *)"Bitmap_SetHeight", (PyCFunction
) _wrap_Bitmap_SetHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34782 { (char *)"Bitmap_SetWidth", (PyCFunction
) _wrap_Bitmap_SetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34783 { (char *)"Bitmap_SetDepth", (PyCFunction
) _wrap_Bitmap_SetDepth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34784 { (char *)"Bitmap_SetSize", (PyCFunction
) _wrap_Bitmap_SetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34785 { (char *)"Bitmap___eq__", (PyCFunction
) _wrap_Bitmap___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34786 { (char *)"Bitmap___ne__", (PyCFunction
) _wrap_Bitmap___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34787 { (char *)"Bitmap_swigregister", Bitmap_swigregister
, METH_VARARGS
, NULL
},
34788 { (char *)"Bitmap_swiginit", Bitmap_swiginit
, METH_VARARGS
, NULL
},
34789 { (char *)"_BitmapFromBufferAlpha", (PyCFunction
) _wrap__BitmapFromBufferAlpha
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34790 { (char *)"_BitmapFromBuffer", (PyCFunction
) _wrap__BitmapFromBuffer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34791 { (char *)"_BitmapFromBufferRGBA", (PyCFunction
) _wrap__BitmapFromBufferRGBA
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34792 { (char *)"PixelDataBase_GetOrigin", (PyCFunction
)_wrap_PixelDataBase_GetOrigin
, METH_O
, NULL
},
34793 { (char *)"PixelDataBase_GetWidth", (PyCFunction
)_wrap_PixelDataBase_GetWidth
, METH_O
, NULL
},
34794 { (char *)"PixelDataBase_GetHeight", (PyCFunction
)_wrap_PixelDataBase_GetHeight
, METH_O
, NULL
},
34795 { (char *)"PixelDataBase_GetSize", (PyCFunction
)_wrap_PixelDataBase_GetSize
, METH_O
, NULL
},
34796 { (char *)"PixelDataBase_GetRowStride", (PyCFunction
)_wrap_PixelDataBase_GetRowStride
, METH_O
, NULL
},
34797 { (char *)"PixelDataBase_swigregister", PixelDataBase_swigregister
, METH_VARARGS
, NULL
},
34798 { (char *)"new_NativePixelData", _wrap_new_NativePixelData
, METH_VARARGS
, NULL
},
34799 { (char *)"delete_NativePixelData", (PyCFunction
)_wrap_delete_NativePixelData
, METH_O
, NULL
},
34800 { (char *)"NativePixelData_GetPixels", (PyCFunction
)_wrap_NativePixelData_GetPixels
, METH_O
, NULL
},
34801 { (char *)"NativePixelData_UseAlpha", (PyCFunction
)_wrap_NativePixelData_UseAlpha
, METH_O
, NULL
},
34802 { (char *)"NativePixelData___nonzero__", (PyCFunction
)_wrap_NativePixelData___nonzero__
, METH_O
, NULL
},
34803 { (char *)"NativePixelData_swigregister", NativePixelData_swigregister
, METH_VARARGS
, NULL
},
34804 { (char *)"NativePixelData_swiginit", NativePixelData_swiginit
, METH_VARARGS
, NULL
},
34805 { (char *)"new_NativePixelData_Accessor", _wrap_new_NativePixelData_Accessor
, METH_VARARGS
, NULL
},
34806 { (char *)"delete_NativePixelData_Accessor", (PyCFunction
)_wrap_delete_NativePixelData_Accessor
, METH_O
, NULL
},
34807 { (char *)"NativePixelData_Accessor_Reset", (PyCFunction
) _wrap_NativePixelData_Accessor_Reset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34808 { (char *)"NativePixelData_Accessor_IsOk", (PyCFunction
)_wrap_NativePixelData_Accessor_IsOk
, METH_O
, NULL
},
34809 { (char *)"NativePixelData_Accessor_nextPixel", (PyCFunction
)_wrap_NativePixelData_Accessor_nextPixel
, METH_O
, NULL
},
34810 { (char *)"NativePixelData_Accessor_Offset", (PyCFunction
) _wrap_NativePixelData_Accessor_Offset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34811 { (char *)"NativePixelData_Accessor_OffsetX", (PyCFunction
) _wrap_NativePixelData_Accessor_OffsetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34812 { (char *)"NativePixelData_Accessor_OffsetY", (PyCFunction
) _wrap_NativePixelData_Accessor_OffsetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34813 { (char *)"NativePixelData_Accessor_MoveTo", (PyCFunction
) _wrap_NativePixelData_Accessor_MoveTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34814 { (char *)"NativePixelData_Accessor_Set", (PyCFunction
) _wrap_NativePixelData_Accessor_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34815 { (char *)"NativePixelData_Accessor_Get", (PyCFunction
)_wrap_NativePixelData_Accessor_Get
, METH_O
, NULL
},
34816 { (char *)"NativePixelData_Accessor_swigregister", NativePixelData_Accessor_swigregister
, METH_VARARGS
, NULL
},
34817 { (char *)"NativePixelData_Accessor_swiginit", NativePixelData_Accessor_swiginit
, METH_VARARGS
, NULL
},
34818 { (char *)"new_AlphaPixelData", _wrap_new_AlphaPixelData
, METH_VARARGS
, NULL
},
34819 { (char *)"delete_AlphaPixelData", (PyCFunction
)_wrap_delete_AlphaPixelData
, METH_O
, NULL
},
34820 { (char *)"AlphaPixelData_GetPixels", (PyCFunction
)_wrap_AlphaPixelData_GetPixels
, METH_O
, NULL
},
34821 { (char *)"AlphaPixelData_UseAlpha", (PyCFunction
)_wrap_AlphaPixelData_UseAlpha
, METH_O
, NULL
},
34822 { (char *)"AlphaPixelData___nonzero__", (PyCFunction
)_wrap_AlphaPixelData___nonzero__
, METH_O
, NULL
},
34823 { (char *)"AlphaPixelData_swigregister", AlphaPixelData_swigregister
, METH_VARARGS
, NULL
},
34824 { (char *)"AlphaPixelData_swiginit", AlphaPixelData_swiginit
, METH_VARARGS
, NULL
},
34825 { (char *)"new_AlphaPixelData_Accessor", _wrap_new_AlphaPixelData_Accessor
, METH_VARARGS
, NULL
},
34826 { (char *)"delete_AlphaPixelData_Accessor", (PyCFunction
)_wrap_delete_AlphaPixelData_Accessor
, METH_O
, NULL
},
34827 { (char *)"AlphaPixelData_Accessor_Reset", (PyCFunction
) _wrap_AlphaPixelData_Accessor_Reset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34828 { (char *)"AlphaPixelData_Accessor_IsOk", (PyCFunction
)_wrap_AlphaPixelData_Accessor_IsOk
, METH_O
, NULL
},
34829 { (char *)"AlphaPixelData_Accessor_nextPixel", (PyCFunction
)_wrap_AlphaPixelData_Accessor_nextPixel
, METH_O
, NULL
},
34830 { (char *)"AlphaPixelData_Accessor_Offset", (PyCFunction
) _wrap_AlphaPixelData_Accessor_Offset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34831 { (char *)"AlphaPixelData_Accessor_OffsetX", (PyCFunction
) _wrap_AlphaPixelData_Accessor_OffsetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34832 { (char *)"AlphaPixelData_Accessor_OffsetY", (PyCFunction
) _wrap_AlphaPixelData_Accessor_OffsetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34833 { (char *)"AlphaPixelData_Accessor_MoveTo", (PyCFunction
) _wrap_AlphaPixelData_Accessor_MoveTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34834 { (char *)"AlphaPixelData_Accessor_Set", (PyCFunction
) _wrap_AlphaPixelData_Accessor_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34835 { (char *)"AlphaPixelData_Accessor_Get", (PyCFunction
)_wrap_AlphaPixelData_Accessor_Get
, METH_O
, NULL
},
34836 { (char *)"AlphaPixelData_Accessor_swigregister", AlphaPixelData_Accessor_swigregister
, METH_VARARGS
, NULL
},
34837 { (char *)"AlphaPixelData_Accessor_swiginit", AlphaPixelData_Accessor_swiginit
, METH_VARARGS
, NULL
},
34838 { (char *)"new_Mask", (PyCFunction
) _wrap_new_Mask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34839 { (char *)"delete_Mask", (PyCFunction
)_wrap_delete_Mask
, METH_O
, NULL
},
34840 { (char *)"Mask_swigregister", Mask_swigregister
, METH_VARARGS
, NULL
},
34841 { (char *)"Mask_swiginit", Mask_swiginit
, METH_VARARGS
, NULL
},
34842 { (char *)"new_Icon", (PyCFunction
) _wrap_new_Icon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34843 { (char *)"delete_Icon", (PyCFunction
)_wrap_delete_Icon
, METH_O
, NULL
},
34844 { (char *)"new_EmptyIcon", (PyCFunction
)_wrap_new_EmptyIcon
, METH_NOARGS
, NULL
},
34845 { (char *)"new_IconFromLocation", (PyCFunction
) _wrap_new_IconFromLocation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34846 { (char *)"new_IconFromBitmap", (PyCFunction
) _wrap_new_IconFromBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34847 { (char *)"new_IconFromXPMData", (PyCFunction
) _wrap_new_IconFromXPMData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34848 { (char *)"Icon_IsOk", (PyCFunction
)_wrap_Icon_IsOk
, METH_O
, NULL
},
34849 { (char *)"Icon_GetWidth", (PyCFunction
)_wrap_Icon_GetWidth
, METH_O
, NULL
},
34850 { (char *)"Icon_GetHeight", (PyCFunction
)_wrap_Icon_GetHeight
, METH_O
, NULL
},
34851 { (char *)"Icon_GetDepth", (PyCFunction
)_wrap_Icon_GetDepth
, METH_O
, NULL
},
34852 { (char *)"Icon_SetWidth", (PyCFunction
) _wrap_Icon_SetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34853 { (char *)"Icon_SetHeight", (PyCFunction
) _wrap_Icon_SetHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34854 { (char *)"Icon_SetDepth", (PyCFunction
) _wrap_Icon_SetDepth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34855 { (char *)"Icon_CopyFromBitmap", (PyCFunction
) _wrap_Icon_CopyFromBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34856 { (char *)"Icon_swigregister", Icon_swigregister
, METH_VARARGS
, NULL
},
34857 { (char *)"Icon_swiginit", Icon_swiginit
, METH_VARARGS
, NULL
},
34858 { (char *)"new_IconLocation", (PyCFunction
) _wrap_new_IconLocation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34859 { (char *)"delete_IconLocation", (PyCFunction
)_wrap_delete_IconLocation
, METH_O
, NULL
},
34860 { (char *)"IconLocation_IsOk", (PyCFunction
)_wrap_IconLocation_IsOk
, METH_O
, NULL
},
34861 { (char *)"IconLocation_SetFileName", (PyCFunction
) _wrap_IconLocation_SetFileName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34862 { (char *)"IconLocation_GetFileName", (PyCFunction
)_wrap_IconLocation_GetFileName
, METH_O
, NULL
},
34863 { (char *)"IconLocation_SetIndex", (PyCFunction
) _wrap_IconLocation_SetIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34864 { (char *)"IconLocation_GetIndex", (PyCFunction
)_wrap_IconLocation_GetIndex
, METH_O
, NULL
},
34865 { (char *)"IconLocation_swigregister", IconLocation_swigregister
, METH_VARARGS
, NULL
},
34866 { (char *)"IconLocation_swiginit", IconLocation_swiginit
, METH_VARARGS
, NULL
},
34867 { (char *)"new_IconBundle", (PyCFunction
)_wrap_new_IconBundle
, METH_NOARGS
, NULL
},
34868 { (char *)"new_IconBundleFromFile", (PyCFunction
) _wrap_new_IconBundleFromFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34869 { (char *)"new_IconBundleFromIcon", (PyCFunction
) _wrap_new_IconBundleFromIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34870 { (char *)"delete_IconBundle", (PyCFunction
)_wrap_delete_IconBundle
, METH_O
, NULL
},
34871 { (char *)"IconBundle_AddIcon", (PyCFunction
) _wrap_IconBundle_AddIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34872 { (char *)"IconBundle_AddIconFromFile", (PyCFunction
) _wrap_IconBundle_AddIconFromFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34873 { (char *)"IconBundle_GetIcon", (PyCFunction
) _wrap_IconBundle_GetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34874 { (char *)"IconBundle_swigregister", IconBundle_swigregister
, METH_VARARGS
, NULL
},
34875 { (char *)"IconBundle_swiginit", IconBundle_swiginit
, METH_VARARGS
, NULL
},
34876 { (char *)"new_Cursor", (PyCFunction
) _wrap_new_Cursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34877 { (char *)"delete_Cursor", (PyCFunction
)_wrap_delete_Cursor
, METH_O
, NULL
},
34878 { (char *)"new_StockCursor", (PyCFunction
) _wrap_new_StockCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34879 { (char *)"new_CursorFromImage", (PyCFunction
) _wrap_new_CursorFromImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34880 { (char *)"Cursor_IsOk", (PyCFunction
)_wrap_Cursor_IsOk
, METH_O
, NULL
},
34881 { (char *)"Cursor_swigregister", Cursor_swigregister
, METH_VARARGS
, NULL
},
34882 { (char *)"Cursor_swiginit", Cursor_swiginit
, METH_VARARGS
, NULL
},
34883 { (char *)"new_Region", (PyCFunction
) _wrap_new_Region
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34884 { (char *)"new_RegionFromBitmap", (PyCFunction
) _wrap_new_RegionFromBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34885 { (char *)"new_RegionFromBitmapColour", (PyCFunction
) _wrap_new_RegionFromBitmapColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34886 { (char *)"new_RegionFromPoints", (PyCFunction
) _wrap_new_RegionFromPoints
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34887 { (char *)"delete_Region", (PyCFunction
)_wrap_delete_Region
, METH_O
, NULL
},
34888 { (char *)"Region_Clear", (PyCFunction
)_wrap_Region_Clear
, METH_O
, NULL
},
34889 { (char *)"Region_Offset", (PyCFunction
) _wrap_Region_Offset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34890 { (char *)"Region_Contains", (PyCFunction
) _wrap_Region_Contains
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34891 { (char *)"Region_ContainsPoint", (PyCFunction
) _wrap_Region_ContainsPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34892 { (char *)"Region_ContainsRect", (PyCFunction
) _wrap_Region_ContainsRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34893 { (char *)"Region_ContainsRectDim", (PyCFunction
) _wrap_Region_ContainsRectDim
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34894 { (char *)"Region_GetBox", (PyCFunction
)_wrap_Region_GetBox
, METH_O
, NULL
},
34895 { (char *)"Region_Intersect", (PyCFunction
) _wrap_Region_Intersect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34896 { (char *)"Region_IntersectRect", (PyCFunction
) _wrap_Region_IntersectRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34897 { (char *)"Region_IntersectRegion", (PyCFunction
) _wrap_Region_IntersectRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34898 { (char *)"Region_IsEmpty", (PyCFunction
)_wrap_Region_IsEmpty
, METH_O
, NULL
},
34899 { (char *)"Region_IsEqual", (PyCFunction
) _wrap_Region_IsEqual
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34900 { (char *)"Region_Union", (PyCFunction
) _wrap_Region_Union
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34901 { (char *)"Region_UnionRect", (PyCFunction
) _wrap_Region_UnionRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34902 { (char *)"Region_UnionRegion", (PyCFunction
) _wrap_Region_UnionRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34903 { (char *)"Region_Subtract", (PyCFunction
) _wrap_Region_Subtract
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34904 { (char *)"Region_SubtractRect", (PyCFunction
) _wrap_Region_SubtractRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34905 { (char *)"Region_SubtractRegion", (PyCFunction
) _wrap_Region_SubtractRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34906 { (char *)"Region_Xor", (PyCFunction
) _wrap_Region_Xor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34907 { (char *)"Region_XorRect", (PyCFunction
) _wrap_Region_XorRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34908 { (char *)"Region_XorRegion", (PyCFunction
) _wrap_Region_XorRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34909 { (char *)"Region_ConvertToBitmap", (PyCFunction
)_wrap_Region_ConvertToBitmap
, METH_O
, NULL
},
34910 { (char *)"Region_UnionBitmap", (PyCFunction
) _wrap_Region_UnionBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34911 { (char *)"Region_UnionBitmapColour", (PyCFunction
) _wrap_Region_UnionBitmapColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34912 { (char *)"Region_swigregister", Region_swigregister
, METH_VARARGS
, NULL
},
34913 { (char *)"Region_swiginit", Region_swiginit
, METH_VARARGS
, NULL
},
34914 { (char *)"new_RegionIterator", (PyCFunction
) _wrap_new_RegionIterator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34915 { (char *)"delete_RegionIterator", (PyCFunction
)_wrap_delete_RegionIterator
, METH_O
, NULL
},
34916 { (char *)"RegionIterator_GetX", (PyCFunction
)_wrap_RegionIterator_GetX
, METH_O
, NULL
},
34917 { (char *)"RegionIterator_GetY", (PyCFunction
)_wrap_RegionIterator_GetY
, METH_O
, NULL
},
34918 { (char *)"RegionIterator_GetW", (PyCFunction
)_wrap_RegionIterator_GetW
, METH_O
, NULL
},
34919 { (char *)"RegionIterator_GetWidth", (PyCFunction
)_wrap_RegionIterator_GetWidth
, METH_O
, NULL
},
34920 { (char *)"RegionIterator_GetH", (PyCFunction
)_wrap_RegionIterator_GetH
, METH_O
, NULL
},
34921 { (char *)"RegionIterator_GetHeight", (PyCFunction
)_wrap_RegionIterator_GetHeight
, METH_O
, NULL
},
34922 { (char *)"RegionIterator_GetRect", (PyCFunction
)_wrap_RegionIterator_GetRect
, METH_O
, NULL
},
34923 { (char *)"RegionIterator_HaveRects", (PyCFunction
)_wrap_RegionIterator_HaveRects
, METH_O
, NULL
},
34924 { (char *)"RegionIterator_Reset", (PyCFunction
)_wrap_RegionIterator_Reset
, METH_O
, NULL
},
34925 { (char *)"RegionIterator_Next", (PyCFunction
)_wrap_RegionIterator_Next
, METH_O
, NULL
},
34926 { (char *)"RegionIterator___nonzero__", (PyCFunction
)_wrap_RegionIterator___nonzero__
, METH_O
, NULL
},
34927 { (char *)"RegionIterator_swigregister", RegionIterator_swigregister
, METH_VARARGS
, NULL
},
34928 { (char *)"RegionIterator_swiginit", RegionIterator_swiginit
, METH_VARARGS
, NULL
},
34929 { (char *)"new_NativeFontInfo", (PyCFunction
)_wrap_new_NativeFontInfo
, METH_NOARGS
, NULL
},
34930 { (char *)"delete_NativeFontInfo", (PyCFunction
)_wrap_delete_NativeFontInfo
, METH_O
, NULL
},
34931 { (char *)"NativeFontInfo_Init", (PyCFunction
)_wrap_NativeFontInfo_Init
, METH_O
, NULL
},
34932 { (char *)"NativeFontInfo_InitFromFont", (PyCFunction
) _wrap_NativeFontInfo_InitFromFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34933 { (char *)"NativeFontInfo_GetPointSize", (PyCFunction
)_wrap_NativeFontInfo_GetPointSize
, METH_O
, NULL
},
34934 { (char *)"NativeFontInfo_GetStyle", (PyCFunction
)_wrap_NativeFontInfo_GetStyle
, METH_O
, NULL
},
34935 { (char *)"NativeFontInfo_GetWeight", (PyCFunction
)_wrap_NativeFontInfo_GetWeight
, METH_O
, NULL
},
34936 { (char *)"NativeFontInfo_GetUnderlined", (PyCFunction
)_wrap_NativeFontInfo_GetUnderlined
, METH_O
, NULL
},
34937 { (char *)"NativeFontInfo_GetFaceName", (PyCFunction
)_wrap_NativeFontInfo_GetFaceName
, METH_O
, NULL
},
34938 { (char *)"NativeFontInfo_GetFamily", (PyCFunction
)_wrap_NativeFontInfo_GetFamily
, METH_O
, NULL
},
34939 { (char *)"NativeFontInfo_GetEncoding", (PyCFunction
)_wrap_NativeFontInfo_GetEncoding
, METH_O
, NULL
},
34940 { (char *)"NativeFontInfo_SetPointSize", (PyCFunction
) _wrap_NativeFontInfo_SetPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34941 { (char *)"NativeFontInfo_SetStyle", (PyCFunction
) _wrap_NativeFontInfo_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34942 { (char *)"NativeFontInfo_SetWeight", (PyCFunction
) _wrap_NativeFontInfo_SetWeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34943 { (char *)"NativeFontInfo_SetUnderlined", (PyCFunction
) _wrap_NativeFontInfo_SetUnderlined
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34944 { (char *)"NativeFontInfo_SetFaceName", (PyCFunction
) _wrap_NativeFontInfo_SetFaceName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34945 { (char *)"NativeFontInfo_SetFamily", (PyCFunction
) _wrap_NativeFontInfo_SetFamily
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34946 { (char *)"NativeFontInfo_SetEncoding", (PyCFunction
) _wrap_NativeFontInfo_SetEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34947 { (char *)"NativeFontInfo_FromString", (PyCFunction
) _wrap_NativeFontInfo_FromString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34948 { (char *)"NativeFontInfo_ToString", (PyCFunction
)_wrap_NativeFontInfo_ToString
, METH_O
, NULL
},
34949 { (char *)"NativeFontInfo___str__", (PyCFunction
)_wrap_NativeFontInfo___str__
, METH_O
, NULL
},
34950 { (char *)"NativeFontInfo_FromUserString", (PyCFunction
) _wrap_NativeFontInfo_FromUserString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34951 { (char *)"NativeFontInfo_ToUserString", (PyCFunction
)_wrap_NativeFontInfo_ToUserString
, METH_O
, NULL
},
34952 { (char *)"NativeFontInfo_swigregister", NativeFontInfo_swigregister
, METH_VARARGS
, NULL
},
34953 { (char *)"NativeFontInfo_swiginit", NativeFontInfo_swiginit
, METH_VARARGS
, NULL
},
34954 { (char *)"NativeEncodingInfo_facename_set", _wrap_NativeEncodingInfo_facename_set
, METH_VARARGS
, NULL
},
34955 { (char *)"NativeEncodingInfo_facename_get", (PyCFunction
)_wrap_NativeEncodingInfo_facename_get
, METH_O
, NULL
},
34956 { (char *)"NativeEncodingInfo_encoding_set", _wrap_NativeEncodingInfo_encoding_set
, METH_VARARGS
, NULL
},
34957 { (char *)"NativeEncodingInfo_encoding_get", (PyCFunction
)_wrap_NativeEncodingInfo_encoding_get
, METH_O
, NULL
},
34958 { (char *)"new_NativeEncodingInfo", (PyCFunction
)_wrap_new_NativeEncodingInfo
, METH_NOARGS
, NULL
},
34959 { (char *)"delete_NativeEncodingInfo", (PyCFunction
)_wrap_delete_NativeEncodingInfo
, METH_O
, NULL
},
34960 { (char *)"NativeEncodingInfo_FromString", (PyCFunction
) _wrap_NativeEncodingInfo_FromString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34961 { (char *)"NativeEncodingInfo_ToString", (PyCFunction
)_wrap_NativeEncodingInfo_ToString
, METH_O
, NULL
},
34962 { (char *)"NativeEncodingInfo_swigregister", NativeEncodingInfo_swigregister
, METH_VARARGS
, NULL
},
34963 { (char *)"NativeEncodingInfo_swiginit", NativeEncodingInfo_swiginit
, METH_VARARGS
, NULL
},
34964 { (char *)"GetNativeFontEncoding", (PyCFunction
) _wrap_GetNativeFontEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34965 { (char *)"TestFontEncoding", (PyCFunction
) _wrap_TestFontEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34966 { (char *)"new_FontMapper", (PyCFunction
)_wrap_new_FontMapper
, METH_NOARGS
, NULL
},
34967 { (char *)"delete_FontMapper", (PyCFunction
)_wrap_delete_FontMapper
, METH_O
, NULL
},
34968 { (char *)"FontMapper_Get", (PyCFunction
)_wrap_FontMapper_Get
, METH_NOARGS
, NULL
},
34969 { (char *)"FontMapper_Set", (PyCFunction
) _wrap_FontMapper_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34970 { (char *)"FontMapper_CharsetToEncoding", (PyCFunction
) _wrap_FontMapper_CharsetToEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34971 { (char *)"FontMapper_GetSupportedEncodingsCount", (PyCFunction
)_wrap_FontMapper_GetSupportedEncodingsCount
, METH_NOARGS
, NULL
},
34972 { (char *)"FontMapper_GetEncoding", (PyCFunction
) _wrap_FontMapper_GetEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34973 { (char *)"FontMapper_GetEncodingName", (PyCFunction
) _wrap_FontMapper_GetEncodingName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34974 { (char *)"FontMapper_GetEncodingDescription", (PyCFunction
) _wrap_FontMapper_GetEncodingDescription
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34975 { (char *)"FontMapper_GetEncodingFromName", (PyCFunction
) _wrap_FontMapper_GetEncodingFromName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34976 { (char *)"FontMapper_SetConfigPath", (PyCFunction
) _wrap_FontMapper_SetConfigPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34977 { (char *)"FontMapper_GetDefaultConfigPath", (PyCFunction
)_wrap_FontMapper_GetDefaultConfigPath
, METH_NOARGS
, NULL
},
34978 { (char *)"FontMapper_GetAltForEncoding", (PyCFunction
) _wrap_FontMapper_GetAltForEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34979 { (char *)"FontMapper_IsEncodingAvailable", (PyCFunction
) _wrap_FontMapper_IsEncodingAvailable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34980 { (char *)"FontMapper_SetDialogParent", (PyCFunction
) _wrap_FontMapper_SetDialogParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34981 { (char *)"FontMapper_SetDialogTitle", (PyCFunction
) _wrap_FontMapper_SetDialogTitle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34982 { (char *)"FontMapper_swigregister", FontMapper_swigregister
, METH_VARARGS
, NULL
},
34983 { (char *)"FontMapper_swiginit", FontMapper_swiginit
, METH_VARARGS
, NULL
},
34984 { (char *)"new_Font", (PyCFunction
) _wrap_new_Font
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34985 { (char *)"delete_Font", (PyCFunction
)_wrap_delete_Font
, METH_O
, NULL
},
34986 { (char *)"new_FontFromNativeInfo", (PyCFunction
) _wrap_new_FontFromNativeInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34987 { (char *)"new_FontFromNativeInfoString", (PyCFunction
) _wrap_new_FontFromNativeInfoString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34988 { (char *)"new_FFont", (PyCFunction
) _wrap_new_FFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34989 { (char *)"new_FontFromPixelSize", (PyCFunction
) _wrap_new_FontFromPixelSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34990 { (char *)"new_FFontFromPixelSize", (PyCFunction
) _wrap_new_FFontFromPixelSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34991 { (char *)"Font_IsOk", (PyCFunction
)_wrap_Font_IsOk
, METH_O
, NULL
},
34992 { (char *)"Font___eq__", (PyCFunction
) _wrap_Font___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34993 { (char *)"Font___ne__", (PyCFunction
) _wrap_Font___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
34994 { (char *)"Font_GetPointSize", (PyCFunction
)_wrap_Font_GetPointSize
, METH_O
, NULL
},
34995 { (char *)"Font_GetPixelSize", (PyCFunction
)_wrap_Font_GetPixelSize
, METH_O
, NULL
},
34996 { (char *)"Font_IsUsingSizeInPixels", (PyCFunction
)_wrap_Font_IsUsingSizeInPixels
, METH_O
, NULL
},
34997 { (char *)"Font_GetFamily", (PyCFunction
)_wrap_Font_GetFamily
, METH_O
, NULL
},
34998 { (char *)"Font_GetStyle", (PyCFunction
)_wrap_Font_GetStyle
, METH_O
, NULL
},
34999 { (char *)"Font_GetWeight", (PyCFunction
)_wrap_Font_GetWeight
, METH_O
, NULL
},
35000 { (char *)"Font_GetUnderlined", (PyCFunction
)_wrap_Font_GetUnderlined
, METH_O
, NULL
},
35001 { (char *)"Font_GetFaceName", (PyCFunction
)_wrap_Font_GetFaceName
, METH_O
, NULL
},
35002 { (char *)"Font_GetEncoding", (PyCFunction
)_wrap_Font_GetEncoding
, METH_O
, NULL
},
35003 { (char *)"Font_GetNativeFontInfo", (PyCFunction
)_wrap_Font_GetNativeFontInfo
, METH_O
, NULL
},
35004 { (char *)"Font_IsFixedWidth", (PyCFunction
)_wrap_Font_IsFixedWidth
, METH_O
, NULL
},
35005 { (char *)"Font_GetNativeFontInfoDesc", (PyCFunction
)_wrap_Font_GetNativeFontInfoDesc
, METH_O
, NULL
},
35006 { (char *)"Font_GetNativeFontInfoUserDesc", (PyCFunction
)_wrap_Font_GetNativeFontInfoUserDesc
, METH_O
, NULL
},
35007 { (char *)"Font_SetPointSize", (PyCFunction
) _wrap_Font_SetPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35008 { (char *)"Font_SetPixelSize", (PyCFunction
) _wrap_Font_SetPixelSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35009 { (char *)"Font_SetFamily", (PyCFunction
) _wrap_Font_SetFamily
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35010 { (char *)"Font_SetStyle", (PyCFunction
) _wrap_Font_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35011 { (char *)"Font_SetWeight", (PyCFunction
) _wrap_Font_SetWeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35012 { (char *)"Font_SetFaceName", (PyCFunction
) _wrap_Font_SetFaceName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35013 { (char *)"Font_SetUnderlined", (PyCFunction
) _wrap_Font_SetUnderlined
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35014 { (char *)"Font_SetEncoding", (PyCFunction
) _wrap_Font_SetEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35015 { (char *)"Font_SetNativeFontInfo", (PyCFunction
) _wrap_Font_SetNativeFontInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35016 { (char *)"Font_SetNativeFontInfoFromString", (PyCFunction
) _wrap_Font_SetNativeFontInfoFromString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35017 { (char *)"Font_SetNativeFontInfoUserDesc", (PyCFunction
) _wrap_Font_SetNativeFontInfoUserDesc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35018 { (char *)"Font_GetFamilyString", (PyCFunction
)_wrap_Font_GetFamilyString
, METH_O
, NULL
},
35019 { (char *)"Font_GetStyleString", (PyCFunction
)_wrap_Font_GetStyleString
, METH_O
, NULL
},
35020 { (char *)"Font_GetWeightString", (PyCFunction
)_wrap_Font_GetWeightString
, METH_O
, NULL
},
35021 { (char *)"Font_SetNoAntiAliasing", (PyCFunction
) _wrap_Font_SetNoAntiAliasing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35022 { (char *)"Font_GetNoAntiAliasing", (PyCFunction
)_wrap_Font_GetNoAntiAliasing
, METH_O
, NULL
},
35023 { (char *)"Font_GetDefaultEncoding", (PyCFunction
)_wrap_Font_GetDefaultEncoding
, METH_NOARGS
, NULL
},
35024 { (char *)"Font_SetDefaultEncoding", (PyCFunction
) _wrap_Font_SetDefaultEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35025 { (char *)"Font_swigregister", Font_swigregister
, METH_VARARGS
, NULL
},
35026 { (char *)"Font_swiginit", Font_swiginit
, METH_VARARGS
, NULL
},
35027 { (char *)"new_FontEnumerator", (PyCFunction
)_wrap_new_FontEnumerator
, METH_NOARGS
, NULL
},
35028 { (char *)"delete_FontEnumerator", (PyCFunction
)_wrap_delete_FontEnumerator
, METH_O
, NULL
},
35029 { (char *)"FontEnumerator__setCallbackInfo", (PyCFunction
) _wrap_FontEnumerator__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35030 { (char *)"FontEnumerator_EnumerateFacenames", (PyCFunction
) _wrap_FontEnumerator_EnumerateFacenames
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35031 { (char *)"FontEnumerator_EnumerateEncodings", (PyCFunction
) _wrap_FontEnumerator_EnumerateEncodings
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35032 { (char *)"FontEnumerator_GetEncodings", (PyCFunction
)_wrap_FontEnumerator_GetEncodings
, METH_NOARGS
, NULL
},
35033 { (char *)"FontEnumerator_GetFacenames", (PyCFunction
)_wrap_FontEnumerator_GetFacenames
, METH_NOARGS
, NULL
},
35034 { (char *)"FontEnumerator_IsValidFacename", (PyCFunction
) _wrap_FontEnumerator_IsValidFacename
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35035 { (char *)"FontEnumerator_swigregister", FontEnumerator_swigregister
, METH_VARARGS
, NULL
},
35036 { (char *)"FontEnumerator_swiginit", FontEnumerator_swiginit
, METH_VARARGS
, NULL
},
35037 { (char *)"LanguageInfo_Language_set", _wrap_LanguageInfo_Language_set
, METH_VARARGS
, NULL
},
35038 { (char *)"LanguageInfo_Language_get", (PyCFunction
)_wrap_LanguageInfo_Language_get
, METH_O
, NULL
},
35039 { (char *)"LanguageInfo_CanonicalName_set", _wrap_LanguageInfo_CanonicalName_set
, METH_VARARGS
, NULL
},
35040 { (char *)"LanguageInfo_CanonicalName_get", (PyCFunction
)_wrap_LanguageInfo_CanonicalName_get
, METH_O
, NULL
},
35041 { (char *)"LanguageInfo_Description_set", _wrap_LanguageInfo_Description_set
, METH_VARARGS
, NULL
},
35042 { (char *)"LanguageInfo_Description_get", (PyCFunction
)_wrap_LanguageInfo_Description_get
, METH_O
, NULL
},
35043 { (char *)"LanguageInfo_swigregister", LanguageInfo_swigregister
, METH_VARARGS
, NULL
},
35044 { (char *)"new_Locale", (PyCFunction
) _wrap_new_Locale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35045 { (char *)"delete_Locale", (PyCFunction
)_wrap_delete_Locale
, METH_O
, NULL
},
35046 { (char *)"Locale_Init1", (PyCFunction
) _wrap_Locale_Init1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35047 { (char *)"Locale_Init2", (PyCFunction
) _wrap_Locale_Init2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35048 { (char *)"Locale_GetSystemLanguage", (PyCFunction
)_wrap_Locale_GetSystemLanguage
, METH_NOARGS
, NULL
},
35049 { (char *)"Locale_GetSystemEncoding", (PyCFunction
)_wrap_Locale_GetSystemEncoding
, METH_NOARGS
, NULL
},
35050 { (char *)"Locale_GetSystemEncodingName", (PyCFunction
)_wrap_Locale_GetSystemEncodingName
, METH_NOARGS
, NULL
},
35051 { (char *)"Locale_IsOk", (PyCFunction
)_wrap_Locale_IsOk
, METH_O
, NULL
},
35052 { (char *)"Locale_GetLocale", (PyCFunction
)_wrap_Locale_GetLocale
, METH_O
, NULL
},
35053 { (char *)"Locale_GetLanguage", (PyCFunction
)_wrap_Locale_GetLanguage
, METH_O
, NULL
},
35054 { (char *)"Locale_GetSysName", (PyCFunction
)_wrap_Locale_GetSysName
, METH_O
, NULL
},
35055 { (char *)"Locale_GetCanonicalName", (PyCFunction
)_wrap_Locale_GetCanonicalName
, METH_O
, NULL
},
35056 { (char *)"Locale_AddCatalogLookupPathPrefix", (PyCFunction
) _wrap_Locale_AddCatalogLookupPathPrefix
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35057 { (char *)"Locale_AddCatalog", (PyCFunction
) _wrap_Locale_AddCatalog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35058 { (char *)"Locale_IsAvailable", (PyCFunction
) _wrap_Locale_IsAvailable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35059 { (char *)"Locale_IsLoaded", (PyCFunction
) _wrap_Locale_IsLoaded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35060 { (char *)"Locale_GetLanguageInfo", (PyCFunction
) _wrap_Locale_GetLanguageInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35061 { (char *)"Locale_GetLanguageName", (PyCFunction
) _wrap_Locale_GetLanguageName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35062 { (char *)"Locale_FindLanguageInfo", (PyCFunction
) _wrap_Locale_FindLanguageInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35063 { (char *)"Locale_AddLanguage", (PyCFunction
) _wrap_Locale_AddLanguage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35064 { (char *)"Locale_GetString", (PyCFunction
) _wrap_Locale_GetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35065 { (char *)"Locale_GetName", (PyCFunction
)_wrap_Locale_GetName
, METH_O
, NULL
},
35066 { (char *)"Locale_swigregister", Locale_swigregister
, METH_VARARGS
, NULL
},
35067 { (char *)"Locale_swiginit", Locale_swiginit
, METH_VARARGS
, NULL
},
35068 { (char *)"new_PyLocale", (PyCFunction
) _wrap_new_PyLocale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35069 { (char *)"delete_PyLocale", (PyCFunction
)_wrap_delete_PyLocale
, METH_O
, NULL
},
35070 { (char *)"PyLocale__setCallbackInfo", (PyCFunction
) _wrap_PyLocale__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35071 { (char *)"PyLocale_GetSingularString", (PyCFunction
) _wrap_PyLocale_GetSingularString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35072 { (char *)"PyLocale_GetPluralString", (PyCFunction
) _wrap_PyLocale_GetPluralString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35073 { (char *)"PyLocale_swigregister", PyLocale_swigregister
, METH_VARARGS
, NULL
},
35074 { (char *)"PyLocale_swiginit", PyLocale_swiginit
, METH_VARARGS
, NULL
},
35075 { (char *)"GetLocale", (PyCFunction
)_wrap_GetLocale
, METH_NOARGS
, NULL
},
35076 { (char *)"GetTranslation", _wrap_GetTranslation
, METH_VARARGS
, NULL
},
35077 { (char *)"new_EncodingConverter", (PyCFunction
)_wrap_new_EncodingConverter
, METH_NOARGS
, NULL
},
35078 { (char *)"delete_EncodingConverter", (PyCFunction
)_wrap_delete_EncodingConverter
, METH_O
, NULL
},
35079 { (char *)"EncodingConverter_Init", (PyCFunction
) _wrap_EncodingConverter_Init
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35080 { (char *)"EncodingConverter_Convert", (PyCFunction
) _wrap_EncodingConverter_Convert
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35081 { (char *)"EncodingConverter_GetPlatformEquivalents", (PyCFunction
) _wrap_EncodingConverter_GetPlatformEquivalents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35082 { (char *)"EncodingConverter_GetAllEquivalents", (PyCFunction
) _wrap_EncodingConverter_GetAllEquivalents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35083 { (char *)"EncodingConverter_CanConvert", (PyCFunction
) _wrap_EncodingConverter_CanConvert
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35084 { (char *)"EncodingConverter_swigregister", EncodingConverter_swigregister
, METH_VARARGS
, NULL
},
35085 { (char *)"EncodingConverter_swiginit", EncodingConverter_swiginit
, METH_VARARGS
, NULL
},
35086 { (char *)"delete_DC", (PyCFunction
)_wrap_delete_DC
, METH_O
, NULL
},
35087 { (char *)"DC_FloodFill", (PyCFunction
) _wrap_DC_FloodFill
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35088 { (char *)"DC_FloodFillPoint", (PyCFunction
) _wrap_DC_FloodFillPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35089 { (char *)"DC_GradientFillConcentric", (PyCFunction
) _wrap_DC_GradientFillConcentric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35090 { (char *)"DC_GradientFillLinear", (PyCFunction
) _wrap_DC_GradientFillLinear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35091 { (char *)"DC_GetPixel", (PyCFunction
) _wrap_DC_GetPixel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35092 { (char *)"DC_GetPixelPoint", (PyCFunction
) _wrap_DC_GetPixelPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35093 { (char *)"DC_DrawLine", (PyCFunction
) _wrap_DC_DrawLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35094 { (char *)"DC_DrawLinePoint", (PyCFunction
) _wrap_DC_DrawLinePoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35095 { (char *)"DC_CrossHair", (PyCFunction
) _wrap_DC_CrossHair
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35096 { (char *)"DC_CrossHairPoint", (PyCFunction
) _wrap_DC_CrossHairPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35097 { (char *)"DC_DrawArc", (PyCFunction
) _wrap_DC_DrawArc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35098 { (char *)"DC_DrawArcPoint", (PyCFunction
) _wrap_DC_DrawArcPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35099 { (char *)"DC_DrawCheckMark", (PyCFunction
) _wrap_DC_DrawCheckMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35100 { (char *)"DC_DrawCheckMarkRect", (PyCFunction
) _wrap_DC_DrawCheckMarkRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35101 { (char *)"DC_DrawEllipticArc", (PyCFunction
) _wrap_DC_DrawEllipticArc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35102 { (char *)"DC_DrawEllipticArcPointSize", (PyCFunction
) _wrap_DC_DrawEllipticArcPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35103 { (char *)"DC_DrawPoint", (PyCFunction
) _wrap_DC_DrawPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35104 { (char *)"DC_DrawPointPoint", (PyCFunction
) _wrap_DC_DrawPointPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35105 { (char *)"DC_DrawRectangle", (PyCFunction
) _wrap_DC_DrawRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35106 { (char *)"DC_DrawRectangleRect", (PyCFunction
) _wrap_DC_DrawRectangleRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35107 { (char *)"DC_DrawRectanglePointSize", (PyCFunction
) _wrap_DC_DrawRectanglePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35108 { (char *)"DC_DrawRoundedRectangle", (PyCFunction
) _wrap_DC_DrawRoundedRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35109 { (char *)"DC_DrawRoundedRectangleRect", (PyCFunction
) _wrap_DC_DrawRoundedRectangleRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35110 { (char *)"DC_DrawRoundedRectanglePointSize", (PyCFunction
) _wrap_DC_DrawRoundedRectanglePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35111 { (char *)"DC_DrawCircle", (PyCFunction
) _wrap_DC_DrawCircle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35112 { (char *)"DC_DrawCirclePoint", (PyCFunction
) _wrap_DC_DrawCirclePoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35113 { (char *)"DC_DrawEllipse", (PyCFunction
) _wrap_DC_DrawEllipse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35114 { (char *)"DC_DrawEllipseRect", (PyCFunction
) _wrap_DC_DrawEllipseRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35115 { (char *)"DC_DrawEllipsePointSize", (PyCFunction
) _wrap_DC_DrawEllipsePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35116 { (char *)"DC_DrawIcon", (PyCFunction
) _wrap_DC_DrawIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35117 { (char *)"DC_DrawIconPoint", (PyCFunction
) _wrap_DC_DrawIconPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35118 { (char *)"DC_DrawBitmap", (PyCFunction
) _wrap_DC_DrawBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35119 { (char *)"DC_DrawBitmapPoint", (PyCFunction
) _wrap_DC_DrawBitmapPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35120 { (char *)"DC_DrawText", (PyCFunction
) _wrap_DC_DrawText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35121 { (char *)"DC_DrawTextPoint", (PyCFunction
) _wrap_DC_DrawTextPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35122 { (char *)"DC_DrawRotatedText", (PyCFunction
) _wrap_DC_DrawRotatedText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35123 { (char *)"DC_DrawRotatedTextPoint", (PyCFunction
) _wrap_DC_DrawRotatedTextPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35124 { (char *)"DC_Blit", (PyCFunction
) _wrap_DC_Blit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35125 { (char *)"DC_BlitPointSize", (PyCFunction
) _wrap_DC_BlitPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35126 { (char *)"DC_SetClippingRegion", (PyCFunction
) _wrap_DC_SetClippingRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35127 { (char *)"DC_SetClippingRegionPointSize", (PyCFunction
) _wrap_DC_SetClippingRegionPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35128 { (char *)"DC_SetClippingRegionAsRegion", (PyCFunction
) _wrap_DC_SetClippingRegionAsRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35129 { (char *)"DC_SetClippingRect", (PyCFunction
) _wrap_DC_SetClippingRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35130 { (char *)"DC_DrawLines", (PyCFunction
) _wrap_DC_DrawLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35131 { (char *)"DC_DrawPolygon", (PyCFunction
) _wrap_DC_DrawPolygon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35132 { (char *)"DC_DrawLabel", (PyCFunction
) _wrap_DC_DrawLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35133 { (char *)"DC_DrawImageLabel", (PyCFunction
) _wrap_DC_DrawImageLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35134 { (char *)"DC_DrawSpline", (PyCFunction
) _wrap_DC_DrawSpline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35135 { (char *)"DC_Clear", (PyCFunction
)_wrap_DC_Clear
, METH_O
, NULL
},
35136 { (char *)"DC_StartDoc", (PyCFunction
) _wrap_DC_StartDoc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35137 { (char *)"DC_EndDoc", (PyCFunction
)_wrap_DC_EndDoc
, METH_O
, NULL
},
35138 { (char *)"DC_StartPage", (PyCFunction
)_wrap_DC_StartPage
, METH_O
, NULL
},
35139 { (char *)"DC_EndPage", (PyCFunction
)_wrap_DC_EndPage
, METH_O
, NULL
},
35140 { (char *)"DC_SetFont", (PyCFunction
) _wrap_DC_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35141 { (char *)"DC_SetPen", (PyCFunction
) _wrap_DC_SetPen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35142 { (char *)"DC_SetBrush", (PyCFunction
) _wrap_DC_SetBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35143 { (char *)"DC_SetBackground", (PyCFunction
) _wrap_DC_SetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35144 { (char *)"DC_SetBackgroundMode", (PyCFunction
) _wrap_DC_SetBackgroundMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35145 { (char *)"DC_SetPalette", (PyCFunction
) _wrap_DC_SetPalette
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35146 { (char *)"DC_DestroyClippingRegion", (PyCFunction
)_wrap_DC_DestroyClippingRegion
, METH_O
, NULL
},
35147 { (char *)"DC_GetClippingBox", (PyCFunction
)_wrap_DC_GetClippingBox
, METH_O
, NULL
},
35148 { (char *)"DC_GetClippingRect", (PyCFunction
)_wrap_DC_GetClippingRect
, METH_O
, NULL
},
35149 { (char *)"DC_GetCharHeight", (PyCFunction
)_wrap_DC_GetCharHeight
, METH_O
, NULL
},
35150 { (char *)"DC_GetCharWidth", (PyCFunction
)_wrap_DC_GetCharWidth
, METH_O
, NULL
},
35151 { (char *)"DC_GetTextExtent", (PyCFunction
) _wrap_DC_GetTextExtent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35152 { (char *)"DC_GetFullTextExtent", (PyCFunction
) _wrap_DC_GetFullTextExtent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35153 { (char *)"DC_GetMultiLineTextExtent", (PyCFunction
) _wrap_DC_GetMultiLineTextExtent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35154 { (char *)"DC_GetPartialTextExtents", (PyCFunction
) _wrap_DC_GetPartialTextExtents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35155 { (char *)"DC_GetSize", (PyCFunction
)_wrap_DC_GetSize
, METH_O
, NULL
},
35156 { (char *)"DC_GetSizeTuple", (PyCFunction
)_wrap_DC_GetSizeTuple
, METH_O
, NULL
},
35157 { (char *)"DC_GetSizeMM", (PyCFunction
)_wrap_DC_GetSizeMM
, METH_O
, NULL
},
35158 { (char *)"DC_GetSizeMMTuple", (PyCFunction
)_wrap_DC_GetSizeMMTuple
, METH_O
, NULL
},
35159 { (char *)"DC_DeviceToLogicalX", (PyCFunction
) _wrap_DC_DeviceToLogicalX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35160 { (char *)"DC_DeviceToLogicalY", (PyCFunction
) _wrap_DC_DeviceToLogicalY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35161 { (char *)"DC_DeviceToLogicalXRel", (PyCFunction
) _wrap_DC_DeviceToLogicalXRel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35162 { (char *)"DC_DeviceToLogicalYRel", (PyCFunction
) _wrap_DC_DeviceToLogicalYRel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35163 { (char *)"DC_LogicalToDeviceX", (PyCFunction
) _wrap_DC_LogicalToDeviceX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35164 { (char *)"DC_LogicalToDeviceY", (PyCFunction
) _wrap_DC_LogicalToDeviceY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35165 { (char *)"DC_LogicalToDeviceXRel", (PyCFunction
) _wrap_DC_LogicalToDeviceXRel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35166 { (char *)"DC_LogicalToDeviceYRel", (PyCFunction
) _wrap_DC_LogicalToDeviceYRel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35167 { (char *)"DC_CanDrawBitmap", (PyCFunction
)_wrap_DC_CanDrawBitmap
, METH_O
, NULL
},
35168 { (char *)"DC_CanGetTextExtent", (PyCFunction
)_wrap_DC_CanGetTextExtent
, METH_O
, NULL
},
35169 { (char *)"DC_GetDepth", (PyCFunction
)_wrap_DC_GetDepth
, METH_O
, NULL
},
35170 { (char *)"DC_GetPPI", (PyCFunction
)_wrap_DC_GetPPI
, METH_O
, NULL
},
35171 { (char *)"DC_IsOk", (PyCFunction
)_wrap_DC_IsOk
, METH_O
, NULL
},
35172 { (char *)"DC_GetBackgroundMode", (PyCFunction
)_wrap_DC_GetBackgroundMode
, METH_O
, NULL
},
35173 { (char *)"DC_GetBackground", (PyCFunction
)_wrap_DC_GetBackground
, METH_O
, NULL
},
35174 { (char *)"DC_GetBrush", (PyCFunction
)_wrap_DC_GetBrush
, METH_O
, NULL
},
35175 { (char *)"DC_GetFont", (PyCFunction
)_wrap_DC_GetFont
, METH_O
, NULL
},
35176 { (char *)"DC_GetPen", (PyCFunction
)_wrap_DC_GetPen
, METH_O
, NULL
},
35177 { (char *)"DC_GetTextBackground", (PyCFunction
)_wrap_DC_GetTextBackground
, METH_O
, NULL
},
35178 { (char *)"DC_GetTextForeground", (PyCFunction
)_wrap_DC_GetTextForeground
, METH_O
, NULL
},
35179 { (char *)"DC_SetTextForeground", (PyCFunction
) _wrap_DC_SetTextForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35180 { (char *)"DC_SetTextBackground", (PyCFunction
) _wrap_DC_SetTextBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35181 { (char *)"DC_GetMapMode", (PyCFunction
)_wrap_DC_GetMapMode
, METH_O
, NULL
},
35182 { (char *)"DC_SetMapMode", (PyCFunction
) _wrap_DC_SetMapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35183 { (char *)"DC_GetUserScale", (PyCFunction
)_wrap_DC_GetUserScale
, METH_O
, NULL
},
35184 { (char *)"DC_SetUserScale", (PyCFunction
) _wrap_DC_SetUserScale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35185 { (char *)"DC_GetLogicalScale", (PyCFunction
)_wrap_DC_GetLogicalScale
, METH_O
, NULL
},
35186 { (char *)"DC_SetLogicalScale", (PyCFunction
) _wrap_DC_SetLogicalScale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35187 { (char *)"DC_GetLogicalOrigin", (PyCFunction
)_wrap_DC_GetLogicalOrigin
, METH_O
, NULL
},
35188 { (char *)"DC_GetLogicalOriginTuple", (PyCFunction
)_wrap_DC_GetLogicalOriginTuple
, METH_O
, NULL
},
35189 { (char *)"DC_SetLogicalOrigin", (PyCFunction
) _wrap_DC_SetLogicalOrigin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35190 { (char *)"DC_SetLogicalOriginPoint", (PyCFunction
) _wrap_DC_SetLogicalOriginPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35191 { (char *)"DC_GetDeviceOrigin", (PyCFunction
)_wrap_DC_GetDeviceOrigin
, METH_O
, NULL
},
35192 { (char *)"DC_GetDeviceOriginTuple", (PyCFunction
)_wrap_DC_GetDeviceOriginTuple
, METH_O
, NULL
},
35193 { (char *)"DC_SetDeviceOrigin", (PyCFunction
) _wrap_DC_SetDeviceOrigin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35194 { (char *)"DC_SetDeviceOriginPoint", (PyCFunction
) _wrap_DC_SetDeviceOriginPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35195 { (char *)"DC_SetAxisOrientation", (PyCFunction
) _wrap_DC_SetAxisOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35196 { (char *)"DC_GetLogicalFunction", (PyCFunction
)_wrap_DC_GetLogicalFunction
, METH_O
, NULL
},
35197 { (char *)"DC_SetLogicalFunction", (PyCFunction
) _wrap_DC_SetLogicalFunction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35198 { (char *)"DC_ComputeScaleAndOrigin", (PyCFunction
)_wrap_DC_ComputeScaleAndOrigin
, METH_O
, NULL
},
35199 { (char *)"DC_CalcBoundingBox", (PyCFunction
) _wrap_DC_CalcBoundingBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35200 { (char *)"DC_CalcBoundingBoxPoint", (PyCFunction
) _wrap_DC_CalcBoundingBoxPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35201 { (char *)"DC_ResetBoundingBox", (PyCFunction
)_wrap_DC_ResetBoundingBox
, METH_O
, NULL
},
35202 { (char *)"DC_MinX", (PyCFunction
)_wrap_DC_MinX
, METH_O
, NULL
},
35203 { (char *)"DC_MaxX", (PyCFunction
)_wrap_DC_MaxX
, METH_O
, NULL
},
35204 { (char *)"DC_MinY", (PyCFunction
)_wrap_DC_MinY
, METH_O
, NULL
},
35205 { (char *)"DC_MaxY", (PyCFunction
)_wrap_DC_MaxY
, METH_O
, NULL
},
35206 { (char *)"DC_GetBoundingBox", (PyCFunction
)_wrap_DC_GetBoundingBox
, METH_O
, NULL
},
35207 { (char *)"DC_GetLayoutDirection", (PyCFunction
)_wrap_DC_GetLayoutDirection
, METH_O
, NULL
},
35208 { (char *)"DC_SetLayoutDirection", (PyCFunction
) _wrap_DC_SetLayoutDirection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35209 { (char *)"DC__DrawPointList", (PyCFunction
) _wrap_DC__DrawPointList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35210 { (char *)"DC__DrawLineList", (PyCFunction
) _wrap_DC__DrawLineList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35211 { (char *)"DC__DrawRectangleList", (PyCFunction
) _wrap_DC__DrawRectangleList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35212 { (char *)"DC__DrawEllipseList", (PyCFunction
) _wrap_DC__DrawEllipseList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35213 { (char *)"DC__DrawPolygonList", (PyCFunction
) _wrap_DC__DrawPolygonList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35214 { (char *)"DC__DrawTextList", (PyCFunction
) _wrap_DC__DrawTextList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35215 { (char *)"DC_swigregister", DC_swigregister
, METH_VARARGS
, NULL
},
35216 { (char *)"new_MemoryDC", (PyCFunction
) _wrap_new_MemoryDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35217 { (char *)"new_MemoryDCFromDC", (PyCFunction
) _wrap_new_MemoryDCFromDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35218 { (char *)"MemoryDC_SelectObject", (PyCFunction
) _wrap_MemoryDC_SelectObject
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35219 { (char *)"MemoryDC_swigregister", MemoryDC_swigregister
, METH_VARARGS
, NULL
},
35220 { (char *)"MemoryDC_swiginit", MemoryDC_swiginit
, METH_VARARGS
, NULL
},
35221 { (char *)"new_ScreenDC", (PyCFunction
)_wrap_new_ScreenDC
, METH_NOARGS
, NULL
},
35222 { (char *)"ScreenDC_StartDrawingOnTopWin", (PyCFunction
) _wrap_ScreenDC_StartDrawingOnTopWin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35223 { (char *)"ScreenDC_StartDrawingOnTop", (PyCFunction
) _wrap_ScreenDC_StartDrawingOnTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35224 { (char *)"ScreenDC_EndDrawingOnTop", (PyCFunction
)_wrap_ScreenDC_EndDrawingOnTop
, METH_O
, NULL
},
35225 { (char *)"ScreenDC_swigregister", ScreenDC_swigregister
, METH_VARARGS
, NULL
},
35226 { (char *)"ScreenDC_swiginit", ScreenDC_swiginit
, METH_VARARGS
, NULL
},
35227 { (char *)"new_WindowDC", (PyCFunction
) _wrap_new_WindowDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35228 { (char *)"WindowDC_swigregister", WindowDC_swigregister
, METH_VARARGS
, NULL
},
35229 { (char *)"WindowDC_swiginit", WindowDC_swiginit
, METH_VARARGS
, NULL
},
35230 { (char *)"new_ClientDC", (PyCFunction
) _wrap_new_ClientDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35231 { (char *)"ClientDC_swigregister", ClientDC_swigregister
, METH_VARARGS
, NULL
},
35232 { (char *)"ClientDC_swiginit", ClientDC_swiginit
, METH_VARARGS
, NULL
},
35233 { (char *)"new_PaintDC", (PyCFunction
) _wrap_new_PaintDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35234 { (char *)"PaintDC_swigregister", PaintDC_swigregister
, METH_VARARGS
, NULL
},
35235 { (char *)"PaintDC_swiginit", PaintDC_swiginit
, METH_VARARGS
, NULL
},
35236 { (char *)"new_BufferedDC", _wrap_new_BufferedDC
, METH_VARARGS
, NULL
},
35237 { (char *)"delete_BufferedDC", (PyCFunction
)_wrap_delete_BufferedDC
, METH_O
, NULL
},
35238 { (char *)"BufferedDC_UnMask", (PyCFunction
)_wrap_BufferedDC_UnMask
, METH_O
, NULL
},
35239 { (char *)"BufferedDC_swigregister", BufferedDC_swigregister
, METH_VARARGS
, NULL
},
35240 { (char *)"BufferedDC_swiginit", BufferedDC_swiginit
, METH_VARARGS
, NULL
},
35241 { (char *)"new_BufferedPaintDC", (PyCFunction
) _wrap_new_BufferedPaintDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35242 { (char *)"BufferedPaintDC_swigregister", BufferedPaintDC_swigregister
, METH_VARARGS
, NULL
},
35243 { (char *)"BufferedPaintDC_swiginit", BufferedPaintDC_swiginit
, METH_VARARGS
, NULL
},
35244 { (char *)"new_AutoBufferedPaintDC", (PyCFunction
) _wrap_new_AutoBufferedPaintDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35245 { (char *)"AutoBufferedPaintDC_swigregister", AutoBufferedPaintDC_swigregister
, METH_VARARGS
, NULL
},
35246 { (char *)"AutoBufferedPaintDC_swiginit", AutoBufferedPaintDC_swiginit
, METH_VARARGS
, NULL
},
35247 { (char *)"AutoBufferedPaintDCFactory", (PyCFunction
) _wrap_AutoBufferedPaintDCFactory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35248 { (char *)"new_MirrorDC", (PyCFunction
) _wrap_new_MirrorDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35249 { (char *)"MirrorDC_swigregister", MirrorDC_swigregister
, METH_VARARGS
, NULL
},
35250 { (char *)"MirrorDC_swiginit", MirrorDC_swiginit
, METH_VARARGS
, NULL
},
35251 { (char *)"new_PostScriptDC", (PyCFunction
) _wrap_new_PostScriptDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35252 { (char *)"PostScriptDC_GetPrintData", (PyCFunction
)_wrap_PostScriptDC_GetPrintData
, METH_O
, NULL
},
35253 { (char *)"PostScriptDC_SetPrintData", (PyCFunction
) _wrap_PostScriptDC_SetPrintData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35254 { (char *)"PostScriptDC_SetResolution", (PyCFunction
) _wrap_PostScriptDC_SetResolution
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35255 { (char *)"PostScriptDC_GetResolution", (PyCFunction
)_wrap_PostScriptDC_GetResolution
, METH_NOARGS
, NULL
},
35256 { (char *)"PostScriptDC_swigregister", PostScriptDC_swigregister
, METH_VARARGS
, NULL
},
35257 { (char *)"PostScriptDC_swiginit", PostScriptDC_swiginit
, METH_VARARGS
, NULL
},
35258 { (char *)"new_MetaFile", (PyCFunction
) _wrap_new_MetaFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35259 { (char *)"delete_MetaFile", (PyCFunction
)_wrap_delete_MetaFile
, METH_O
, NULL
},
35260 { (char *)"MetaFile_IsOk", (PyCFunction
)_wrap_MetaFile_IsOk
, METH_O
, NULL
},
35261 { (char *)"MetaFile_SetClipboard", (PyCFunction
) _wrap_MetaFile_SetClipboard
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35262 { (char *)"MetaFile_GetSize", (PyCFunction
)_wrap_MetaFile_GetSize
, METH_O
, NULL
},
35263 { (char *)"MetaFile_GetWidth", (PyCFunction
)_wrap_MetaFile_GetWidth
, METH_O
, NULL
},
35264 { (char *)"MetaFile_GetHeight", (PyCFunction
)_wrap_MetaFile_GetHeight
, METH_O
, NULL
},
35265 { (char *)"MetaFile_swigregister", MetaFile_swigregister
, METH_VARARGS
, NULL
},
35266 { (char *)"MetaFile_swiginit", MetaFile_swiginit
, METH_VARARGS
, NULL
},
35267 { (char *)"new_MetaFileDC", (PyCFunction
) _wrap_new_MetaFileDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35268 { (char *)"MetaFileDC_Close", (PyCFunction
)_wrap_MetaFileDC_Close
, METH_O
, NULL
},
35269 { (char *)"MetaFileDC_swigregister", MetaFileDC_swigregister
, METH_VARARGS
, NULL
},
35270 { (char *)"MetaFileDC_swiginit", MetaFileDC_swiginit
, METH_VARARGS
, NULL
},
35271 { (char *)"new_PrinterDC", (PyCFunction
) _wrap_new_PrinterDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35272 { (char *)"PrinterDC_swigregister", PrinterDC_swigregister
, METH_VARARGS
, NULL
},
35273 { (char *)"PrinterDC_swiginit", PrinterDC_swiginit
, METH_VARARGS
, NULL
},
35274 { (char *)"delete_GraphicsPath", (PyCFunction
)_wrap_delete_GraphicsPath
, METH_O
, NULL
},
35275 { (char *)"GraphicsPath_MoveToPoint", (PyCFunction
) _wrap_GraphicsPath_MoveToPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35276 { (char *)"GraphicsPath_AddLineToPoint", (PyCFunction
) _wrap_GraphicsPath_AddLineToPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35277 { (char *)"GraphicsPath_AddCurveToPoint", (PyCFunction
) _wrap_GraphicsPath_AddCurveToPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35278 { (char *)"GraphicsPath_CloseSubpath", (PyCFunction
)_wrap_GraphicsPath_CloseSubpath
, METH_O
, NULL
},
35279 { (char *)"GraphicsPath_GetCurrentPoint", (PyCFunction
)_wrap_GraphicsPath_GetCurrentPoint
, METH_O
, NULL
},
35280 { (char *)"GraphicsPath_AddArc", (PyCFunction
) _wrap_GraphicsPath_AddArc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35281 { (char *)"GraphicsPath_AddQuadCurveToPoint", (PyCFunction
) _wrap_GraphicsPath_AddQuadCurveToPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35282 { (char *)"GraphicsPath_AddRectangle", (PyCFunction
) _wrap_GraphicsPath_AddRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35283 { (char *)"GraphicsPath_AddCircle", (PyCFunction
) _wrap_GraphicsPath_AddCircle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35284 { (char *)"GraphicsPath_AddArcToPoint", (PyCFunction
) _wrap_GraphicsPath_AddArcToPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35285 { (char *)"GraphicsPath_swigregister", GraphicsPath_swigregister
, METH_VARARGS
, NULL
},
35286 { (char *)"delete_GraphicsContext", (PyCFunction
)_wrap_delete_GraphicsContext
, METH_O
, NULL
},
35287 { (char *)"GraphicsContext_Create", _wrap_GraphicsContext_Create
, METH_VARARGS
, NULL
},
35288 { (char *)"GraphicsContext_CreateFromNative", (PyCFunction
) _wrap_GraphicsContext_CreateFromNative
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35289 { (char *)"GraphicsContext_CreatePath", (PyCFunction
)_wrap_GraphicsContext_CreatePath
, METH_O
, NULL
},
35290 { (char *)"GraphicsContext_PushState", (PyCFunction
)_wrap_GraphicsContext_PushState
, METH_O
, NULL
},
35291 { (char *)"GraphicsContext_PopState", (PyCFunction
)_wrap_GraphicsContext_PopState
, METH_O
, NULL
},
35292 { (char *)"GraphicsContext_ClipRegion", (PyCFunction
) _wrap_GraphicsContext_ClipRegion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35293 { (char *)"GraphicsContext_Clip", (PyCFunction
) _wrap_GraphicsContext_Clip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35294 { (char *)"GraphicsContext_ResetClip", (PyCFunction
)_wrap_GraphicsContext_ResetClip
, METH_O
, NULL
},
35295 { (char *)"GraphicsContext_GetNativeContext", (PyCFunction
)_wrap_GraphicsContext_GetNativeContext
, METH_O
, NULL
},
35296 { (char *)"GraphicsContext_Translate", (PyCFunction
) _wrap_GraphicsContext_Translate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35297 { (char *)"GraphicsContext_Scale", (PyCFunction
) _wrap_GraphicsContext_Scale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35298 { (char *)"GraphicsContext_Rotate", (PyCFunction
) _wrap_GraphicsContext_Rotate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35299 { (char *)"GraphicsContext_SetPen", (PyCFunction
) _wrap_GraphicsContext_SetPen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35300 { (char *)"GraphicsContext_SetBrush", (PyCFunction
) _wrap_GraphicsContext_SetBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35301 { (char *)"GraphicsContext_SetLinearGradientBrush", (PyCFunction
) _wrap_GraphicsContext_SetLinearGradientBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35302 { (char *)"GraphicsContext_SetRadialGradientBrush", (PyCFunction
) _wrap_GraphicsContext_SetRadialGradientBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35303 { (char *)"GraphicsContext_SetFont", (PyCFunction
) _wrap_GraphicsContext_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35304 { (char *)"GraphicsContext_SetTextColour", (PyCFunction
) _wrap_GraphicsContext_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35305 { (char *)"GraphicsContext_StrokePath", (PyCFunction
) _wrap_GraphicsContext_StrokePath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35306 { (char *)"GraphicsContext_FillPath", (PyCFunction
) _wrap_GraphicsContext_FillPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35307 { (char *)"GraphicsContext_DrawPath", (PyCFunction
) _wrap_GraphicsContext_DrawPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35308 { (char *)"GraphicsContext_DrawText", (PyCFunction
) _wrap_GraphicsContext_DrawText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35309 { (char *)"GraphicsContext_DrawRotatedText", (PyCFunction
) _wrap_GraphicsContext_DrawRotatedText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35310 { (char *)"GraphicsContext_GetFullTextExtent", (PyCFunction
) _wrap_GraphicsContext_GetFullTextExtent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35311 { (char *)"GraphicsContext_GetTextExtent", (PyCFunction
) _wrap_GraphicsContext_GetTextExtent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35312 { (char *)"GraphicsContext_GetPartialTextExtents", (PyCFunction
) _wrap_GraphicsContext_GetPartialTextExtents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35313 { (char *)"GraphicsContext_DrawBitmap", (PyCFunction
) _wrap_GraphicsContext_DrawBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35314 { (char *)"GraphicsContext_DrawIcon", (PyCFunction
) _wrap_GraphicsContext_DrawIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35315 { (char *)"GraphicsContext_StrokeLine", (PyCFunction
) _wrap_GraphicsContext_StrokeLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35316 { (char *)"GraphicsContext_StrokeLines", (PyCFunction
) _wrap_GraphicsContext_StrokeLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35317 { (char *)"GraphicsContext_StrokeLineSegements", (PyCFunction
) _wrap_GraphicsContext_StrokeLineSegements
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35318 { (char *)"GraphicsContext_DrawLines", (PyCFunction
) _wrap_GraphicsContext_DrawLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35319 { (char *)"GraphicsContext_DrawRectangle", (PyCFunction
) _wrap_GraphicsContext_DrawRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35320 { (char *)"GraphicsContext_DrawEllipse", (PyCFunction
) _wrap_GraphicsContext_DrawEllipse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35321 { (char *)"GraphicsContext_DrawRoundedRectangle", (PyCFunction
) _wrap_GraphicsContext_DrawRoundedRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35322 { (char *)"GraphicsContext_swigregister", GraphicsContext_swigregister
, METH_VARARGS
, NULL
},
35323 { (char *)"new_GCDC", (PyCFunction
) _wrap_new_GCDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35324 { (char *)"delete_GCDC", (PyCFunction
)_wrap_delete_GCDC
, METH_O
, NULL
},
35325 { (char *)"GCDC_GetGraphicsContext", (PyCFunction
)_wrap_GCDC_GetGraphicsContext
, METH_O
, NULL
},
35326 { (char *)"GCDC_SetGraphicsContext", (PyCFunction
) _wrap_GCDC_SetGraphicsContext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35327 { (char *)"GCDC_swigregister", GCDC_swigregister
, METH_VARARGS
, NULL
},
35328 { (char *)"GCDC_swiginit", GCDC_swiginit
, METH_VARARGS
, NULL
},
35329 { (char *)"new_Overlay", (PyCFunction
)_wrap_new_Overlay
, METH_NOARGS
, NULL
},
35330 { (char *)"delete_Overlay", (PyCFunction
)_wrap_delete_Overlay
, METH_O
, NULL
},
35331 { (char *)"Overlay_Reset", (PyCFunction
)_wrap_Overlay_Reset
, METH_O
, NULL
},
35332 { (char *)"Overlay_swigregister", Overlay_swigregister
, METH_VARARGS
, NULL
},
35333 { (char *)"Overlay_swiginit", Overlay_swiginit
, METH_VARARGS
, NULL
},
35334 { (char *)"new_DCOverlay", _wrap_new_DCOverlay
, METH_VARARGS
, NULL
},
35335 { (char *)"delete_DCOverlay", (PyCFunction
)_wrap_delete_DCOverlay
, METH_O
, NULL
},
35336 { (char *)"DCOverlay_Clear", (PyCFunction
)_wrap_DCOverlay_Clear
, METH_O
, NULL
},
35337 { (char *)"DCOverlay_swigregister", DCOverlay_swigregister
, METH_VARARGS
, NULL
},
35338 { (char *)"DCOverlay_swiginit", DCOverlay_swiginit
, METH_VARARGS
, NULL
},
35339 { (char *)"new_ImageList", (PyCFunction
) _wrap_new_ImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35340 { (char *)"delete_ImageList", (PyCFunction
)_wrap_delete_ImageList
, METH_O
, NULL
},
35341 { (char *)"ImageList_Add", (PyCFunction
) _wrap_ImageList_Add
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35342 { (char *)"ImageList_AddWithColourMask", (PyCFunction
) _wrap_ImageList_AddWithColourMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35343 { (char *)"ImageList_AddIcon", (PyCFunction
) _wrap_ImageList_AddIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35344 { (char *)"ImageList_GetBitmap", (PyCFunction
) _wrap_ImageList_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35345 { (char *)"ImageList_GetIcon", (PyCFunction
) _wrap_ImageList_GetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35346 { (char *)"ImageList_Replace", (PyCFunction
) _wrap_ImageList_Replace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35347 { (char *)"ImageList_Draw", (PyCFunction
) _wrap_ImageList_Draw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35348 { (char *)"ImageList_GetImageCount", (PyCFunction
)_wrap_ImageList_GetImageCount
, METH_O
, NULL
},
35349 { (char *)"ImageList_Remove", (PyCFunction
) _wrap_ImageList_Remove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35350 { (char *)"ImageList_RemoveAll", (PyCFunction
)_wrap_ImageList_RemoveAll
, METH_O
, NULL
},
35351 { (char *)"ImageList_GetSize", (PyCFunction
) _wrap_ImageList_GetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35352 { (char *)"ImageList_swigregister", ImageList_swigregister
, METH_VARARGS
, NULL
},
35353 { (char *)"ImageList_swiginit", ImageList_swiginit
, METH_VARARGS
, NULL
},
35354 { (char *)"new_StockGDI", (PyCFunction
)_wrap_new_StockGDI
, METH_NOARGS
, NULL
},
35355 { (char *)"delete_StockGDI", (PyCFunction
)_wrap_delete_StockGDI
, METH_O
, NULL
},
35356 { (char *)"StockGDI_DeleteAll", (PyCFunction
)_wrap_StockGDI_DeleteAll
, METH_NOARGS
, NULL
},
35357 { (char *)"StockGDI_instance", (PyCFunction
)_wrap_StockGDI_instance
, METH_NOARGS
, NULL
},
35358 { (char *)"StockGDI_GetBrush", (PyCFunction
) _wrap_StockGDI_GetBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35359 { (char *)"StockGDI_GetColour", (PyCFunction
) _wrap_StockGDI_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35360 { (char *)"StockGDI_GetCursor", (PyCFunction
) _wrap_StockGDI_GetCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35361 { (char *)"StockGDI_GetPen", (PyCFunction
) _wrap_StockGDI_GetPen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35362 { (char *)"StockGDI_GetFont", (PyCFunction
) _wrap_StockGDI_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35363 { (char *)"StockGDI_swigregister", StockGDI_swigregister
, METH_VARARGS
, NULL
},
35364 { (char *)"StockGDI_swiginit", StockGDI_swiginit
, METH_VARARGS
, NULL
},
35365 { (char *)"new_GDIObjListBase", (PyCFunction
)_wrap_new_GDIObjListBase
, METH_NOARGS
, NULL
},
35366 { (char *)"delete_GDIObjListBase", (PyCFunction
)_wrap_delete_GDIObjListBase
, METH_O
, NULL
},
35367 { (char *)"GDIObjListBase_swigregister", GDIObjListBase_swigregister
, METH_VARARGS
, NULL
},
35368 { (char *)"GDIObjListBase_swiginit", GDIObjListBase_swiginit
, METH_VARARGS
, NULL
},
35369 { (char *)"PenList_FindOrCreatePen", (PyCFunction
) _wrap_PenList_FindOrCreatePen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35370 { (char *)"PenList_AddPen", (PyCFunction
) _wrap_PenList_AddPen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35371 { (char *)"PenList_RemovePen", (PyCFunction
) _wrap_PenList_RemovePen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35372 { (char *)"PenList_swigregister", PenList_swigregister
, METH_VARARGS
, NULL
},
35373 { (char *)"BrushList_FindOrCreateBrush", (PyCFunction
) _wrap_BrushList_FindOrCreateBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35374 { (char *)"BrushList_AddBrush", (PyCFunction
) _wrap_BrushList_AddBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35375 { (char *)"BrushList_RemoveBrush", (PyCFunction
) _wrap_BrushList_RemoveBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35376 { (char *)"BrushList_swigregister", BrushList_swigregister
, METH_VARARGS
, NULL
},
35377 { (char *)"FontList_FindOrCreateFont", (PyCFunction
) _wrap_FontList_FindOrCreateFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35378 { (char *)"FontList_AddFont", (PyCFunction
) _wrap_FontList_AddFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35379 { (char *)"FontList_RemoveFont", (PyCFunction
) _wrap_FontList_RemoveFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35380 { (char *)"FontList_swigregister", FontList_swigregister
, METH_VARARGS
, NULL
},
35381 { (char *)"new_ColourDatabase", (PyCFunction
)_wrap_new_ColourDatabase
, METH_NOARGS
, NULL
},
35382 { (char *)"delete_ColourDatabase", (PyCFunction
)_wrap_delete_ColourDatabase
, METH_O
, NULL
},
35383 { (char *)"ColourDatabase_Find", (PyCFunction
) _wrap_ColourDatabase_Find
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35384 { (char *)"ColourDatabase_FindName", (PyCFunction
) _wrap_ColourDatabase_FindName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35385 { (char *)"ColourDatabase_AddColour", (PyCFunction
) _wrap_ColourDatabase_AddColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35386 { (char *)"ColourDatabase_Append", (PyCFunction
) _wrap_ColourDatabase_Append
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35387 { (char *)"ColourDatabase_swigregister", ColourDatabase_swigregister
, METH_VARARGS
, NULL
},
35388 { (char *)"ColourDatabase_swiginit", ColourDatabase_swiginit
, METH_VARARGS
, NULL
},
35389 { (char *)"_wxPyInitTheFontList", (PyCFunction
)_wrap__wxPyInitTheFontList
, METH_NOARGS
, NULL
},
35390 { (char *)"_wxPyInitThePenList", (PyCFunction
)_wrap__wxPyInitThePenList
, METH_NOARGS
, NULL
},
35391 { (char *)"_wxPyInitTheBrushList", (PyCFunction
)_wrap__wxPyInitTheBrushList
, METH_NOARGS
, NULL
},
35392 { (char *)"_wxPyInitTheColourDatabase", (PyCFunction
)_wrap__wxPyInitTheColourDatabase
, METH_NOARGS
, NULL
},
35393 { (char *)"new_Effects", (PyCFunction
)_wrap_new_Effects
, METH_NOARGS
, NULL
},
35394 { (char *)"Effects_GetHighlightColour", (PyCFunction
)_wrap_Effects_GetHighlightColour
, METH_O
, NULL
},
35395 { (char *)"Effects_GetLightShadow", (PyCFunction
)_wrap_Effects_GetLightShadow
, METH_O
, NULL
},
35396 { (char *)"Effects_GetFaceColour", (PyCFunction
)_wrap_Effects_GetFaceColour
, METH_O
, NULL
},
35397 { (char *)"Effects_GetMediumShadow", (PyCFunction
)_wrap_Effects_GetMediumShadow
, METH_O
, NULL
},
35398 { (char *)"Effects_GetDarkShadow", (PyCFunction
)_wrap_Effects_GetDarkShadow
, METH_O
, NULL
},
35399 { (char *)"Effects_SetHighlightColour", (PyCFunction
) _wrap_Effects_SetHighlightColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35400 { (char *)"Effects_SetLightShadow", (PyCFunction
) _wrap_Effects_SetLightShadow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35401 { (char *)"Effects_SetFaceColour", (PyCFunction
) _wrap_Effects_SetFaceColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35402 { (char *)"Effects_SetMediumShadow", (PyCFunction
) _wrap_Effects_SetMediumShadow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35403 { (char *)"Effects_SetDarkShadow", (PyCFunction
) _wrap_Effects_SetDarkShadow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35404 { (char *)"Effects_Set", (PyCFunction
) _wrap_Effects_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35405 { (char *)"Effects_DrawSunkenEdge", (PyCFunction
) _wrap_Effects_DrawSunkenEdge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35406 { (char *)"Effects_TileBitmap", (PyCFunction
) _wrap_Effects_TileBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35407 { (char *)"Effects_swigregister", Effects_swigregister
, METH_VARARGS
, NULL
},
35408 { (char *)"Effects_swiginit", Effects_swiginit
, METH_VARARGS
, NULL
},
35409 { (char *)"new_SplitterRenderParams", (PyCFunction
) _wrap_new_SplitterRenderParams
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35410 { (char *)"delete_SplitterRenderParams", (PyCFunction
)_wrap_delete_SplitterRenderParams
, METH_O
, NULL
},
35411 { (char *)"SplitterRenderParams_widthSash_get", (PyCFunction
)_wrap_SplitterRenderParams_widthSash_get
, METH_O
, NULL
},
35412 { (char *)"SplitterRenderParams_border_get", (PyCFunction
)_wrap_SplitterRenderParams_border_get
, METH_O
, NULL
},
35413 { (char *)"SplitterRenderParams_isHotSensitive_get", (PyCFunction
)_wrap_SplitterRenderParams_isHotSensitive_get
, METH_O
, NULL
},
35414 { (char *)"SplitterRenderParams_swigregister", SplitterRenderParams_swigregister
, METH_VARARGS
, NULL
},
35415 { (char *)"SplitterRenderParams_swiginit", SplitterRenderParams_swiginit
, METH_VARARGS
, NULL
},
35416 { (char *)"new_HeaderButtonParams", (PyCFunction
)_wrap_new_HeaderButtonParams
, METH_NOARGS
, NULL
},
35417 { (char *)"delete_HeaderButtonParams", (PyCFunction
)_wrap_delete_HeaderButtonParams
, METH_O
, NULL
},
35418 { (char *)"HeaderButtonParams_m_arrowColour_set", _wrap_HeaderButtonParams_m_arrowColour_set
, METH_VARARGS
, NULL
},
35419 { (char *)"HeaderButtonParams_m_arrowColour_get", (PyCFunction
)_wrap_HeaderButtonParams_m_arrowColour_get
, METH_O
, NULL
},
35420 { (char *)"HeaderButtonParams_m_selectionColour_set", _wrap_HeaderButtonParams_m_selectionColour_set
, METH_VARARGS
, NULL
},
35421 { (char *)"HeaderButtonParams_m_selectionColour_get", (PyCFunction
)_wrap_HeaderButtonParams_m_selectionColour_get
, METH_O
, NULL
},
35422 { (char *)"HeaderButtonParams_m_labelText_set", _wrap_HeaderButtonParams_m_labelText_set
, METH_VARARGS
, NULL
},
35423 { (char *)"HeaderButtonParams_m_labelText_get", (PyCFunction
)_wrap_HeaderButtonParams_m_labelText_get
, METH_O
, NULL
},
35424 { (char *)"HeaderButtonParams_m_labelFont_set", _wrap_HeaderButtonParams_m_labelFont_set
, METH_VARARGS
, NULL
},
35425 { (char *)"HeaderButtonParams_m_labelFont_get", (PyCFunction
)_wrap_HeaderButtonParams_m_labelFont_get
, METH_O
, NULL
},
35426 { (char *)"HeaderButtonParams_m_labelColour_set", _wrap_HeaderButtonParams_m_labelColour_set
, METH_VARARGS
, NULL
},
35427 { (char *)"HeaderButtonParams_m_labelColour_get", (PyCFunction
)_wrap_HeaderButtonParams_m_labelColour_get
, METH_O
, NULL
},
35428 { (char *)"HeaderButtonParams_m_labelBitmap_set", _wrap_HeaderButtonParams_m_labelBitmap_set
, METH_VARARGS
, NULL
},
35429 { (char *)"HeaderButtonParams_m_labelBitmap_get", (PyCFunction
)_wrap_HeaderButtonParams_m_labelBitmap_get
, METH_O
, NULL
},
35430 { (char *)"HeaderButtonParams_m_labelAlignment_set", _wrap_HeaderButtonParams_m_labelAlignment_set
, METH_VARARGS
, NULL
},
35431 { (char *)"HeaderButtonParams_m_labelAlignment_get", (PyCFunction
)_wrap_HeaderButtonParams_m_labelAlignment_get
, METH_O
, NULL
},
35432 { (char *)"HeaderButtonParams_swigregister", HeaderButtonParams_swigregister
, METH_VARARGS
, NULL
},
35433 { (char *)"HeaderButtonParams_swiginit", HeaderButtonParams_swiginit
, METH_VARARGS
, NULL
},
35434 { (char *)"new_RendererVersion", (PyCFunction
) _wrap_new_RendererVersion
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35435 { (char *)"delete_RendererVersion", (PyCFunction
)_wrap_delete_RendererVersion
, METH_O
, NULL
},
35436 { (char *)"RendererVersion_IsCompatible", (PyCFunction
) _wrap_RendererVersion_IsCompatible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35437 { (char *)"RendererVersion_version_get", (PyCFunction
)_wrap_RendererVersion_version_get
, METH_O
, NULL
},
35438 { (char *)"RendererVersion_age_get", (PyCFunction
)_wrap_RendererVersion_age_get
, METH_O
, NULL
},
35439 { (char *)"RendererVersion_swigregister", RendererVersion_swigregister
, METH_VARARGS
, NULL
},
35440 { (char *)"RendererVersion_swiginit", RendererVersion_swiginit
, METH_VARARGS
, NULL
},
35441 { (char *)"RendererNative_DrawHeaderButton", (PyCFunction
) _wrap_RendererNative_DrawHeaderButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35442 { (char *)"RendererNative_DrawHeaderButtonContents", (PyCFunction
) _wrap_RendererNative_DrawHeaderButtonContents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35443 { (char *)"RendererNative_GetHeaderButtonHeight", (PyCFunction
) _wrap_RendererNative_GetHeaderButtonHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35444 { (char *)"RendererNative_DrawTreeItemButton", (PyCFunction
) _wrap_RendererNative_DrawTreeItemButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35445 { (char *)"RendererNative_DrawSplitterBorder", (PyCFunction
) _wrap_RendererNative_DrawSplitterBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35446 { (char *)"RendererNative_DrawSplitterSash", (PyCFunction
) _wrap_RendererNative_DrawSplitterSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35447 { (char *)"RendererNative_DrawComboBoxDropButton", (PyCFunction
) _wrap_RendererNative_DrawComboBoxDropButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35448 { (char *)"RendererNative_DrawDropArrow", (PyCFunction
) _wrap_RendererNative_DrawDropArrow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35449 { (char *)"RendererNative_DrawCheckBox", (PyCFunction
) _wrap_RendererNative_DrawCheckBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35450 { (char *)"RendererNative_DrawPushButton", (PyCFunction
) _wrap_RendererNative_DrawPushButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35451 { (char *)"RendererNative_DrawItemSelectionRect", (PyCFunction
) _wrap_RendererNative_DrawItemSelectionRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35452 { (char *)"RendererNative_GetSplitterParams", (PyCFunction
) _wrap_RendererNative_GetSplitterParams
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35453 { (char *)"RendererNative_Get", (PyCFunction
)_wrap_RendererNative_Get
, METH_NOARGS
, NULL
},
35454 { (char *)"RendererNative_GetGeneric", (PyCFunction
)_wrap_RendererNative_GetGeneric
, METH_NOARGS
, NULL
},
35455 { (char *)"RendererNative_GetDefault", (PyCFunction
)_wrap_RendererNative_GetDefault
, METH_NOARGS
, NULL
},
35456 { (char *)"RendererNative_Set", (PyCFunction
) _wrap_RendererNative_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35457 { (char *)"RendererNative_GetVersion", (PyCFunction
)_wrap_RendererNative_GetVersion
, METH_O
, NULL
},
35458 { (char *)"RendererNative_swigregister", RendererNative_swigregister
, METH_VARARGS
, NULL
},
35459 { (char *)"new_PseudoDC", (PyCFunction
)_wrap_new_PseudoDC
, METH_NOARGS
, NULL
},
35460 { (char *)"PseudoDC_BeginDrawing", (PyCFunction
)_wrap_PseudoDC_BeginDrawing
, METH_O
, NULL
},
35461 { (char *)"PseudoDC_EndDrawing", (PyCFunction
)_wrap_PseudoDC_EndDrawing
, METH_O
, NULL
},
35462 { (char *)"delete_PseudoDC", (PyCFunction
)_wrap_delete_PseudoDC
, METH_O
, NULL
},
35463 { (char *)"PseudoDC_RemoveAll", (PyCFunction
)_wrap_PseudoDC_RemoveAll
, METH_O
, NULL
},
35464 { (char *)"PseudoDC_GetLen", (PyCFunction
)_wrap_PseudoDC_GetLen
, METH_O
, NULL
},
35465 { (char *)"PseudoDC_SetId", (PyCFunction
) _wrap_PseudoDC_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35466 { (char *)"PseudoDC_ClearId", (PyCFunction
) _wrap_PseudoDC_ClearId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35467 { (char *)"PseudoDC_RemoveId", (PyCFunction
) _wrap_PseudoDC_RemoveId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35468 { (char *)"PseudoDC_TranslateId", (PyCFunction
) _wrap_PseudoDC_TranslateId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35469 { (char *)"PseudoDC_SetIdGreyedOut", (PyCFunction
) _wrap_PseudoDC_SetIdGreyedOut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35470 { (char *)"PseudoDC_GetIdGreyedOut", (PyCFunction
) _wrap_PseudoDC_GetIdGreyedOut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35471 { (char *)"PseudoDC_FindObjects", (PyCFunction
) _wrap_PseudoDC_FindObjects
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35472 { (char *)"PseudoDC_FindObjectsByBBox", (PyCFunction
) _wrap_PseudoDC_FindObjectsByBBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35473 { (char *)"PseudoDC_DrawIdToDC", (PyCFunction
) _wrap_PseudoDC_DrawIdToDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35474 { (char *)"PseudoDC_SetIdBounds", (PyCFunction
) _wrap_PseudoDC_SetIdBounds
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35475 { (char *)"PseudoDC_GetIdBounds", (PyCFunction
) _wrap_PseudoDC_GetIdBounds
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35476 { (char *)"PseudoDC_DrawToDCClipped", (PyCFunction
) _wrap_PseudoDC_DrawToDCClipped
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35477 { (char *)"PseudoDC_DrawToDCClippedRgn", (PyCFunction
) _wrap_PseudoDC_DrawToDCClippedRgn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35478 { (char *)"PseudoDC_DrawToDC", (PyCFunction
) _wrap_PseudoDC_DrawToDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35479 { (char *)"PseudoDC_FloodFill", (PyCFunction
) _wrap_PseudoDC_FloodFill
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35480 { (char *)"PseudoDC_FloodFillPoint", (PyCFunction
) _wrap_PseudoDC_FloodFillPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35481 { (char *)"PseudoDC_DrawLine", (PyCFunction
) _wrap_PseudoDC_DrawLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35482 { (char *)"PseudoDC_DrawLinePoint", (PyCFunction
) _wrap_PseudoDC_DrawLinePoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35483 { (char *)"PseudoDC_CrossHair", (PyCFunction
) _wrap_PseudoDC_CrossHair
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35484 { (char *)"PseudoDC_CrossHairPoint", (PyCFunction
) _wrap_PseudoDC_CrossHairPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35485 { (char *)"PseudoDC_DrawArc", (PyCFunction
) _wrap_PseudoDC_DrawArc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35486 { (char *)"PseudoDC_DrawArcPoint", (PyCFunction
) _wrap_PseudoDC_DrawArcPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35487 { (char *)"PseudoDC_DrawCheckMark", (PyCFunction
) _wrap_PseudoDC_DrawCheckMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35488 { (char *)"PseudoDC_DrawCheckMarkRect", (PyCFunction
) _wrap_PseudoDC_DrawCheckMarkRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35489 { (char *)"PseudoDC_DrawEllipticArc", (PyCFunction
) _wrap_PseudoDC_DrawEllipticArc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35490 { (char *)"PseudoDC_DrawEllipticArcPointSize", (PyCFunction
) _wrap_PseudoDC_DrawEllipticArcPointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35491 { (char *)"PseudoDC_DrawPoint", (PyCFunction
) _wrap_PseudoDC_DrawPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35492 { (char *)"PseudoDC_DrawPointPoint", (PyCFunction
) _wrap_PseudoDC_DrawPointPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35493 { (char *)"PseudoDC_DrawRectangle", (PyCFunction
) _wrap_PseudoDC_DrawRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35494 { (char *)"PseudoDC_DrawRectangleRect", (PyCFunction
) _wrap_PseudoDC_DrawRectangleRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35495 { (char *)"PseudoDC_DrawRectanglePointSize", (PyCFunction
) _wrap_PseudoDC_DrawRectanglePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35496 { (char *)"PseudoDC_DrawRoundedRectangle", (PyCFunction
) _wrap_PseudoDC_DrawRoundedRectangle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35497 { (char *)"PseudoDC_DrawRoundedRectangleRect", (PyCFunction
) _wrap_PseudoDC_DrawRoundedRectangleRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35498 { (char *)"PseudoDC_DrawRoundedRectanglePointSize", (PyCFunction
) _wrap_PseudoDC_DrawRoundedRectanglePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35499 { (char *)"PseudoDC_DrawCircle", (PyCFunction
) _wrap_PseudoDC_DrawCircle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35500 { (char *)"PseudoDC_DrawCirclePoint", (PyCFunction
) _wrap_PseudoDC_DrawCirclePoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35501 { (char *)"PseudoDC_DrawEllipse", (PyCFunction
) _wrap_PseudoDC_DrawEllipse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35502 { (char *)"PseudoDC_DrawEllipseRect", (PyCFunction
) _wrap_PseudoDC_DrawEllipseRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35503 { (char *)"PseudoDC_DrawEllipsePointSize", (PyCFunction
) _wrap_PseudoDC_DrawEllipsePointSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35504 { (char *)"PseudoDC_DrawIcon", (PyCFunction
) _wrap_PseudoDC_DrawIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35505 { (char *)"PseudoDC_DrawIconPoint", (PyCFunction
) _wrap_PseudoDC_DrawIconPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35506 { (char *)"PseudoDC_DrawBitmap", (PyCFunction
) _wrap_PseudoDC_DrawBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35507 { (char *)"PseudoDC_DrawBitmapPoint", (PyCFunction
) _wrap_PseudoDC_DrawBitmapPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35508 { (char *)"PseudoDC_DrawText", (PyCFunction
) _wrap_PseudoDC_DrawText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35509 { (char *)"PseudoDC_DrawTextPoint", (PyCFunction
) _wrap_PseudoDC_DrawTextPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35510 { (char *)"PseudoDC_DrawRotatedText", (PyCFunction
) _wrap_PseudoDC_DrawRotatedText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35511 { (char *)"PseudoDC_DrawRotatedTextPoint", (PyCFunction
) _wrap_PseudoDC_DrawRotatedTextPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35512 { (char *)"PseudoDC_DrawLines", (PyCFunction
) _wrap_PseudoDC_DrawLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35513 { (char *)"PseudoDC_DrawPolygon", (PyCFunction
) _wrap_PseudoDC_DrawPolygon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35514 { (char *)"PseudoDC_DrawLabel", (PyCFunction
) _wrap_PseudoDC_DrawLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35515 { (char *)"PseudoDC_DrawImageLabel", (PyCFunction
) _wrap_PseudoDC_DrawImageLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35516 { (char *)"PseudoDC_DrawSpline", (PyCFunction
) _wrap_PseudoDC_DrawSpline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35517 { (char *)"PseudoDC_Clear", (PyCFunction
)_wrap_PseudoDC_Clear
, METH_O
, NULL
},
35518 { (char *)"PseudoDC_SetFont", (PyCFunction
) _wrap_PseudoDC_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35519 { (char *)"PseudoDC_SetPen", (PyCFunction
) _wrap_PseudoDC_SetPen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35520 { (char *)"PseudoDC_SetBrush", (PyCFunction
) _wrap_PseudoDC_SetBrush
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35521 { (char *)"PseudoDC_SetBackground", (PyCFunction
) _wrap_PseudoDC_SetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35522 { (char *)"PseudoDC_SetBackgroundMode", (PyCFunction
) _wrap_PseudoDC_SetBackgroundMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35523 { (char *)"PseudoDC_SetPalette", (PyCFunction
) _wrap_PseudoDC_SetPalette
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35524 { (char *)"PseudoDC_SetTextForeground", (PyCFunction
) _wrap_PseudoDC_SetTextForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35525 { (char *)"PseudoDC_SetTextBackground", (PyCFunction
) _wrap_PseudoDC_SetTextBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35526 { (char *)"PseudoDC_SetLogicalFunction", (PyCFunction
) _wrap_PseudoDC_SetLogicalFunction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35527 { (char *)"PseudoDC_swigregister", PseudoDC_swigregister
, METH_VARARGS
, NULL
},
35528 { (char *)"PseudoDC_swiginit", PseudoDC_swiginit
, METH_VARARGS
, NULL
},
35529 { NULL
, NULL
, 0, NULL
}
35533 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
35535 static void *_p_wxPaintDCTo_p_wxClientDC(void *x
) {
35536 return (void *)((wxClientDC
*) ((wxPaintDC
*) x
));
35538 static void *_p_wxBufferedDCTo_p_wxMemoryDC(void *x
) {
35539 return (void *)((wxMemoryDC
*) ((wxBufferedDC
*) x
));
35541 static void *_p_wxBufferedPaintDCTo_p_wxMemoryDC(void *x
) {
35542 return (void *)((wxMemoryDC
*) (wxBufferedDC
*) ((wxBufferedPaintDC
*) x
));
35544 static void *_p_wxClientDCTo_p_wxWindowDC(void *x
) {
35545 return (void *)((wxWindowDC
*) ((wxClientDC
*) x
));
35547 static void *_p_wxPaintDCTo_p_wxWindowDC(void *x
) {
35548 return (void *)((wxWindowDC
*) (wxClientDC
*) ((wxPaintDC
*) x
));
35550 static void *_p_wxPyLocaleTo_p_wxLocale(void *x
) {
35551 return (void *)((wxLocale
*) ((wxPyLocale
*) x
));
35553 static void *_p_wxIconTo_p_wxGDIObject(void *x
) {
35554 return (void *)((wxGDIObject
*) ((wxIcon
*) x
));
35556 static void *_p_wxPaletteTo_p_wxGDIObject(void *x
) {
35557 return (void *)((wxGDIObject
*) ((wxPalette
*) x
));
35559 static void *_p_wxPenTo_p_wxGDIObject(void *x
) {
35560 return (void *)((wxGDIObject
*) ((wxPen
*) x
));
35562 static void *_p_wxFontTo_p_wxGDIObject(void *x
) {
35563 return (void *)((wxGDIObject
*) ((wxFont
*) x
));
35565 static void *_p_wxCursorTo_p_wxGDIObject(void *x
) {
35566 return (void *)((wxGDIObject
*) ((wxCursor
*) x
));
35568 static void *_p_wxBitmapTo_p_wxGDIObject(void *x
) {
35569 return (void *)((wxGDIObject
*) ((wxBitmap
*) x
));
35571 static void *_p_wxRegionTo_p_wxGDIObject(void *x
) {
35572 return (void *)((wxGDIObject
*) ((wxRegion
*) x
));
35574 static void *_p_wxBrushTo_p_wxGDIObject(void *x
) {
35575 return (void *)((wxGDIObject
*) ((wxBrush
*) x
));
35577 static void *_p_wxGCDCTo_p_wxDC(void *x
) {
35578 return (void *)((wxDC
*) ((wxGCDC
*) x
));
35580 static void *_p_wxScreenDCTo_p_wxDC(void *x
) {
35581 return (void *)((wxDC
*) ((wxScreenDC
*) x
));
35583 static void *_p_wxBufferedDCTo_p_wxDC(void *x
) {
35584 return (void *)((wxDC
*) (wxMemoryDC
*) ((wxBufferedDC
*) x
));
35586 static void *_p_wxMirrorDCTo_p_wxDC(void *x
) {
35587 return (void *)((wxDC
*) ((wxMirrorDC
*) x
));
35589 static void *_p_wxMemoryDCTo_p_wxDC(void *x
) {
35590 return (void *)((wxDC
*) ((wxMemoryDC
*) x
));
35592 static void *_p_wxWindowDCTo_p_wxDC(void *x
) {
35593 return (void *)((wxDC
*) ((wxWindowDC
*) x
));
35595 static void *_p_wxMetaFileDCTo_p_wxDC(void *x
) {
35596 return (void *)((wxDC
*) ((wxMetaFileDC
*) x
));
35598 static void *_p_wxClientDCTo_p_wxDC(void *x
) {
35599 return (void *)((wxDC
*) (wxWindowDC
*) ((wxClientDC
*) x
));
35601 static void *_p_wxPaintDCTo_p_wxDC(void *x
) {
35602 return (void *)((wxDC
*) (wxWindowDC
*)(wxClientDC
*) ((wxPaintDC
*) x
));
35604 static void *_p_wxBufferedPaintDCTo_p_wxDC(void *x
) {
35605 return (void *)((wxDC
*) (wxMemoryDC
*)(wxBufferedDC
*) ((wxBufferedPaintDC
*) x
));
35607 static void *_p_wxAutoBufferedPaintDCTo_p_wxDC(void *x
) {
35608 return (void *)((wxDC
*) ((wxAutoBufferedPaintDC
*) x
));
35610 static void *_p_wxPostScriptDCTo_p_wxDC(void *x
) {
35611 return (void *)((wxDC
*) ((wxPostScriptDC
*) x
));
35613 static void *_p_wxPrinterDCTo_p_wxDC(void *x
) {
35614 return (void *)((wxDC
*) ((wxPrinterDC
*) x
));
35616 static void *_p_wxBrushListTo_p_wxGDIObjListBase(void *x
) {
35617 return (void *)((wxGDIObjListBase
*) ((wxBrushList
*) x
));
35619 static void *_p_wxFontListTo_p_wxGDIObjListBase(void *x
) {
35620 return (void *)((wxGDIObjListBase
*) ((wxFontList
*) x
));
35622 static void *_p_wxPenListTo_p_wxGDIObjListBase(void *x
) {
35623 return (void *)((wxGDIObjListBase
*) ((wxPenList
*) x
));
35625 static void *_p_wxBufferedPaintDCTo_p_wxBufferedDC(void *x
) {
35626 return (void *)((wxBufferedDC
*) ((wxBufferedPaintDC
*) x
));
35628 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
35629 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
35631 static void *_p_wxPenTo_p_wxObject(void *x
) {
35632 return (void *)((wxObject
*) (wxGDIObject
*) ((wxPen
*) x
));
35634 static void *_p_wxRegionIteratorTo_p_wxObject(void *x
) {
35635 return (void *)((wxObject
*) ((wxRegionIterator
*) x
));
35637 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
35638 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
35640 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
35641 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
35643 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
35644 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
35646 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
35647 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
35649 static void *_p_wxIconTo_p_wxObject(void *x
) {
35650 return (void *)((wxObject
*) (wxGDIObject
*) ((wxIcon
*) x
));
35652 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
35653 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
35655 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
35656 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
35658 static void *_p_wxSizerTo_p_wxObject(void *x
) {
35659 return (void *)((wxObject
*) ((wxSizer
*) x
));
35661 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
35662 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
35664 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
35665 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
35667 static void *_p_wxEventTo_p_wxObject(void *x
) {
35668 return (void *)((wxObject
*) ((wxEvent
*) x
));
35670 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
35671 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
35673 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
35674 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
35676 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
35677 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
35679 static void *_p_wxPseudoDCTo_p_wxObject(void *x
) {
35680 return (void *)((wxObject
*) ((wxPseudoDC
*) x
));
35682 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
35683 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
35685 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
35686 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
35688 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
35689 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
35691 static void *_p_wxDCTo_p_wxObject(void *x
) {
35692 return (void *)((wxObject
*) ((wxDC
*) x
));
35694 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
35695 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
35697 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
35698 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
35700 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
35701 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
35703 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
35704 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
35706 static void *_p_wxControlTo_p_wxObject(void *x
) {
35707 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
35709 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
35710 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
35712 static void *_p_wxClientDCTo_p_wxObject(void *x
) {
35713 return (void *)((wxObject
*) (wxDC
*)(wxWindowDC
*) ((wxClientDC
*) x
));
35715 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
35716 return (void *)((wxObject
*) ((wxFSFile
*) x
));
35718 static void *_p_wxMemoryDCTo_p_wxObject(void *x
) {
35719 return (void *)((wxObject
*) (wxDC
*) ((wxMemoryDC
*) x
));
35721 static void *_p_wxRegionTo_p_wxObject(void *x
) {
35722 return (void *)((wxObject
*) (wxGDIObject
*) ((wxRegion
*) x
));
35724 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
35725 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
35727 static void *_p_wxWindowDCTo_p_wxObject(void *x
) {
35728 return (void *)((wxObject
*) (wxDC
*) ((wxWindowDC
*) x
));
35730 static void *_p_wxGDIObjectTo_p_wxObject(void *x
) {
35731 return (void *)((wxObject
*) ((wxGDIObject
*) x
));
35733 static void *_p_wxEffectsTo_p_wxObject(void *x
) {
35734 return (void *)((wxObject
*) ((wxEffects
*) x
));
35736 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
35737 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
35739 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
35740 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
35742 static void *_p_wxPostScriptDCTo_p_wxObject(void *x
) {
35743 return (void *)((wxObject
*) (wxDC
*) ((wxPostScriptDC
*) x
));
35745 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
35746 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
35748 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
35749 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
35751 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
35752 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
35754 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
35755 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
35757 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
35758 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
35760 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
35761 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
35763 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
35764 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
35766 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
35767 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
35769 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
35770 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
35772 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
35773 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
35775 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
35776 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
35778 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
35779 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
35781 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
35782 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
35784 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
35785 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
35787 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
35788 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
35790 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
35791 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
35793 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
35794 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
35796 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
35797 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
35799 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
35800 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
35802 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
35803 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
35805 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
35806 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
35808 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
35809 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
35811 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
35812 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
35814 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
35815 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
35817 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
35818 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
35820 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
35821 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
35823 static void *_p_wxPaintDCTo_p_wxObject(void *x
) {
35824 return (void *)((wxObject
*) (wxDC
*)(wxWindowDC
*)(wxClientDC
*) ((wxPaintDC
*) x
));
35826 static void *_p_wxBufferedPaintDCTo_p_wxObject(void *x
) {
35827 return (void *)((wxObject
*) (wxDC
*)(wxMemoryDC
*)(wxBufferedDC
*) ((wxBufferedPaintDC
*) x
));
35829 static void *_p_wxAutoBufferedPaintDCTo_p_wxObject(void *x
) {
35830 return (void *)((wxObject
*) (wxDC
*) ((wxAutoBufferedPaintDC
*) x
));
35832 static void *_p_wxPrinterDCTo_p_wxObject(void *x
) {
35833 return (void *)((wxObject
*) (wxDC
*) ((wxPrinterDC
*) x
));
35835 static void *_p_wxScreenDCTo_p_wxObject(void *x
) {
35836 return (void *)((wxObject
*) (wxDC
*) ((wxScreenDC
*) x
));
35838 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
35839 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
35841 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
35842 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
35844 static void *_p_wxImageTo_p_wxObject(void *x
) {
35845 return (void *)((wxObject
*) ((wxImage
*) x
));
35847 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
35848 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
35850 static void *_p_wxPaletteTo_p_wxObject(void *x
) {
35851 return (void *)((wxObject
*) (wxGDIObject
*) ((wxPalette
*) x
));
35853 static void *_p_wxBufferedDCTo_p_wxObject(void *x
) {
35854 return (void *)((wxObject
*) (wxDC
*)(wxMemoryDC
*) ((wxBufferedDC
*) x
));
35856 static void *_p_wxImageListTo_p_wxObject(void *x
) {
35857 return (void *)((wxObject
*) ((wxImageList
*) x
));
35859 static void *_p_wxGCDCTo_p_wxObject(void *x
) {
35860 return (void *)((wxObject
*) (wxDC
*) ((wxGCDC
*) x
));
35862 static void *_p_wxCursorTo_p_wxObject(void *x
) {
35863 return (void *)((wxObject
*) (wxGDIObject
*) ((wxCursor
*) x
));
35865 static void *_p_wxEncodingConverterTo_p_wxObject(void *x
) {
35866 return (void *)((wxObject
*) ((wxEncodingConverter
*) x
));
35868 static void *_p_wxMirrorDCTo_p_wxObject(void *x
) {
35869 return (void *)((wxObject
*) (wxDC
*) ((wxMirrorDC
*) x
));
35871 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
35872 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
35874 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
35875 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
35877 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
35878 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
35880 static void *_p_wxWindowTo_p_wxObject(void *x
) {
35881 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
35883 static void *_p_wxMenuTo_p_wxObject(void *x
) {
35884 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
35886 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
35887 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
35889 static void *_p_wxMetaFileDCTo_p_wxObject(void *x
) {
35890 return (void *)((wxObject
*) (wxDC
*) ((wxMetaFileDC
*) x
));
35892 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
35893 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
35895 static void *_p_wxBitmapTo_p_wxObject(void *x
) {
35896 return (void *)((wxObject
*) (wxGDIObject
*) ((wxBitmap
*) x
));
35898 static void *_p_wxMaskTo_p_wxObject(void *x
) {
35899 return (void *)((wxObject
*) ((wxMask
*) x
));
35901 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
35902 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
35904 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
35905 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
35907 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
35908 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
35910 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
35911 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
35913 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
35914 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
35916 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
35917 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
35919 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
35920 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
35922 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
35923 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
35925 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
35926 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
35928 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
35929 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
35931 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
35932 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
35934 static void *_p_wxFontTo_p_wxObject(void *x
) {
35935 return (void *)((wxObject
*) (wxGDIObject
*) ((wxFont
*) x
));
35937 static void *_p_wxBrushTo_p_wxObject(void *x
) {
35938 return (void *)((wxObject
*) (wxGDIObject
*) ((wxBrush
*) x
));
35940 static void *_p_wxMetaFileTo_p_wxObject(void *x
) {
35941 return (void *)((wxObject
*) ((wxMetaFile
*) x
));
35943 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
35944 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
35946 static void *_p_wxColourTo_p_wxObject(void *x
) {
35947 return (void *)((wxObject
*) ((wxColour
*) x
));
35949 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
35950 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
35952 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
35953 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
35955 static void *_p_wxControlTo_p_wxWindow(void *x
) {
35956 return (void *)((wxWindow
*) ((wxControl
*) x
));
35958 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
35959 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
35961 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
35962 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
35964 static void *_p_wxNativePixelDataTo_p_wxPixelDataBase(void *x
) {
35965 return (void *)((wxPixelDataBase
*) ((wxNativePixelData
*) x
));
35967 static void *_p_wxAlphaPixelDataTo_p_wxPixelDataBase(void *x
) {
35968 return (void *)((wxPixelDataBase
*) ((wxAlphaPixelData
*) x
));
35970 static swig_type_info _swigt__p_buffer
= {"_p_buffer", "buffer *", 0, 0, (void*)0, 0};
35971 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
35972 static swig_type_info _swigt__p_double
= {"_p_double", "double *|wxDouble *", 0, 0, (void*)0, 0};
35973 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};
35974 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
35975 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
35976 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
35977 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
35978 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, (void*)0, 0};
35979 static swig_type_info _swigt__p_wxAlphaPixelData
= {"_p_wxAlphaPixelData", "wxAlphaPixelData *", 0, 0, (void*)0, 0};
35980 static swig_type_info _swigt__p_wxAlphaPixelData_Accessor
= {"_p_wxAlphaPixelData_Accessor", "wxAlphaPixelData_Accessor *", 0, 0, (void*)0, 0};
35981 static swig_type_info _swigt__p_wxAutoBufferedPaintDC
= {"_p_wxAutoBufferedPaintDC", "wxAutoBufferedPaintDC *", 0, 0, (void*)0, 0};
35982 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
35983 static swig_type_info _swigt__p_wxBrush
= {"_p_wxBrush", "wxBrush *", 0, 0, (void*)0, 0};
35984 static swig_type_info _swigt__p_wxBrushList
= {"_p_wxBrushList", "wxBrushList *", 0, 0, (void*)0, 0};
35985 static swig_type_info _swigt__p_wxBufferedDC
= {"_p_wxBufferedDC", "wxBufferedDC *", 0, 0, (void*)0, 0};
35986 static swig_type_info _swigt__p_wxBufferedPaintDC
= {"_p_wxBufferedPaintDC", "wxBufferedPaintDC *", 0, 0, (void*)0, 0};
35987 static swig_type_info _swigt__p_wxChar
= {"_p_wxChar", "wxChar *", 0, 0, (void*)0, 0};
35988 static swig_type_info _swigt__p_wxClientDC
= {"_p_wxClientDC", "wxClientDC *", 0, 0, (void*)0, 0};
35989 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
35990 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
35991 static swig_type_info _swigt__p_wxColourDatabase
= {"_p_wxColourDatabase", "wxColourDatabase *", 0, 0, (void*)0, 0};
35992 static swig_type_info _swigt__p_wxCursor
= {"_p_wxCursor", "wxCursor *", 0, 0, (void*)0, 0};
35993 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
35994 static swig_type_info _swigt__p_wxDCOverlay
= {"_p_wxDCOverlay", "wxDCOverlay *", 0, 0, (void*)0, 0};
35995 static swig_type_info _swigt__p_wxDash
= {"_p_wxDash", "wxDash *", 0, 0, (void*)0, 0};
35996 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
35997 static swig_type_info _swigt__p_wxEffects
= {"_p_wxEffects", "wxEffects *", 0, 0, (void*)0, 0};
35998 static swig_type_info _swigt__p_wxEncodingConverter
= {"_p_wxEncodingConverter", "wxEncodingConverter *", 0, 0, (void*)0, 0};
35999 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
36000 static swig_type_info _swigt__p_wxFontList
= {"_p_wxFontList", "wxFontList *", 0, 0, (void*)0, 0};
36001 static swig_type_info _swigt__p_wxFontMapper
= {"_p_wxFontMapper", "wxFontMapper *", 0, 0, (void*)0, 0};
36002 static swig_type_info _swigt__p_wxGCDC
= {"_p_wxGCDC", "wxGCDC *", 0, 0, (void*)0, 0};
36003 static swig_type_info _swigt__p_wxGDIObjListBase
= {"_p_wxGDIObjListBase", "wxGDIObjListBase *", 0, 0, (void*)0, 0};
36004 static swig_type_info _swigt__p_wxGDIObject
= {"_p_wxGDIObject", "wxGDIObject *", 0, 0, (void*)0, 0};
36005 static swig_type_info _swigt__p_wxGraphicsContext
= {"_p_wxGraphicsContext", "wxGraphicsContext *", 0, 0, (void*)0, 0};
36006 static swig_type_info _swigt__p_wxGraphicsPath
= {"_p_wxGraphicsPath", "wxGraphicsPath *", 0, 0, (void*)0, 0};
36007 static swig_type_info _swigt__p_wxHeaderButtonParams
= {"_p_wxHeaderButtonParams", "wxHeaderButtonParams *", 0, 0, (void*)0, 0};
36008 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0};
36009 static swig_type_info _swigt__p_wxIconBundle
= {"_p_wxIconBundle", "wxIconBundle *", 0, 0, (void*)0, 0};
36010 static swig_type_info _swigt__p_wxIconLocation
= {"_p_wxIconLocation", "wxIconLocation *", 0, 0, (void*)0, 0};
36011 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", "wxImage *", 0, 0, (void*)0, 0};
36012 static swig_type_info _swigt__p_wxImageList
= {"_p_wxImageList", "wxImageList *", 0, 0, (void*)0, 0};
36013 static swig_type_info _swigt__p_wxLanguageInfo
= {"_p_wxLanguageInfo", "wxLanguageInfo *", 0, 0, (void*)0, 0};
36014 static swig_type_info _swigt__p_wxLocale
= {"_p_wxLocale", "wxLocale *", 0, 0, (void*)0, 0};
36015 static swig_type_info _swigt__p_wxMask
= {"_p_wxMask", "wxMask *", 0, 0, (void*)0, 0};
36016 static swig_type_info _swigt__p_wxMemoryDC
= {"_p_wxMemoryDC", "wxMemoryDC *", 0, 0, (void*)0, 0};
36017 static swig_type_info _swigt__p_wxMetaFile
= {"_p_wxMetaFile", "wxMetaFile *", 0, 0, (void*)0, 0};
36018 static swig_type_info _swigt__p_wxMetaFileDC
= {"_p_wxMetaFileDC", "wxMetaFileDC *", 0, 0, (void*)0, 0};
36019 static swig_type_info _swigt__p_wxMirrorDC
= {"_p_wxMirrorDC", "wxMirrorDC *", 0, 0, (void*)0, 0};
36020 static swig_type_info _swigt__p_wxNativeEncodingInfo
= {"_p_wxNativeEncodingInfo", "wxNativeEncodingInfo *", 0, 0, (void*)0, 0};
36021 static swig_type_info _swigt__p_wxNativeFontInfo
= {"_p_wxNativeFontInfo", "wxNativeFontInfo *", 0, 0, (void*)0, 0};
36022 static swig_type_info _swigt__p_wxNativePixelData
= {"_p_wxNativePixelData", "wxNativePixelData *", 0, 0, (void*)0, 0};
36023 static swig_type_info _swigt__p_wxNativePixelData_Accessor
= {"_p_wxNativePixelData_Accessor", "wxNativePixelData_Accessor *", 0, 0, (void*)0, 0};
36024 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
36025 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
36026 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
36027 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
36028 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
36029 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
36030 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
36031 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
36032 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
36033 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
36034 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
36035 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
36036 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", 0, 0, 0, 0, 0};
36037 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
36038 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
36039 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
36040 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
36041 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
36042 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
36043 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
36044 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
36045 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
36046 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
36047 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
36048 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
36049 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
36050 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
36051 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
36052 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
36053 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
36054 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
36055 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
36056 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
36057 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
36058 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
36059 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
36060 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
36061 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
36062 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
36063 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
36064 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
36065 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
36066 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
36067 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
36068 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
36069 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
36070 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", 0, 0, 0, 0, 0};
36071 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
36072 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
36073 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
36074 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
36075 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
36076 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
36077 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
36078 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
36079 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
36080 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
36081 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
36082 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
36083 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
36084 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
36085 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
36086 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
36087 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
36088 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
36089 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
36090 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
36091 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
36092 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
36093 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
36094 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", 0, 0, 0, 0, 0};
36095 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
36096 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
36097 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
36098 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
36099 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
36100 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
36101 static swig_type_info _swigt__p_wxOverlay
= {"_p_wxOverlay", "wxOverlay *", 0, 0, (void*)0, 0};
36102 static swig_type_info _swigt__p_wxPaintDC
= {"_p_wxPaintDC", "wxPaintDC *", 0, 0, (void*)0, 0};
36103 static swig_type_info _swigt__p_wxPalette
= {"_p_wxPalette", "wxPalette *", 0, 0, (void*)0, 0};
36104 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
36105 static swig_type_info _swigt__p_wxPen
= {"_p_wxPen", "wxPen *", 0, 0, (void*)0, 0};
36106 static swig_type_info _swigt__p_wxPenList
= {"_p_wxPenList", "wxPenList *", 0, 0, (void*)0, 0};
36107 static swig_type_info _swigt__p_wxPixelDataBase
= {"_p_wxPixelDataBase", "wxPixelDataBase *", 0, 0, (void*)0, 0};
36108 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
36109 static swig_type_info _swigt__p_wxPoint2D
= {"_p_wxPoint2D", "wxPoint2D *", 0, 0, (void*)0, 0};
36110 static swig_type_info _swigt__p_wxPostScriptDC
= {"_p_wxPostScriptDC", "wxPostScriptDC *", 0, 0, (void*)0, 0};
36111 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", "wxPrintData *", 0, 0, (void*)0, 0};
36112 static swig_type_info _swigt__p_wxPrinterDC
= {"_p_wxPrinterDC", "wxPrinterDC *", 0, 0, (void*)0, 0};
36113 static swig_type_info _swigt__p_wxPseudoDC
= {"_p_wxPseudoDC", "wxPseudoDC *", 0, 0, (void*)0, 0};
36114 static swig_type_info _swigt__p_wxPyFontEnumerator
= {"_p_wxPyFontEnumerator", "wxPyFontEnumerator *", 0, 0, (void*)0, 0};
36115 static swig_type_info _swigt__p_wxPyLocale
= {"_p_wxPyLocale", "wxPyLocale *", 0, 0, (void*)0, 0};
36116 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
36117 static swig_type_info _swigt__p_wxRegion
= {"_p_wxRegion", "wxRegion *", 0, 0, (void*)0, 0};
36118 static swig_type_info _swigt__p_wxRegionIterator
= {"_p_wxRegionIterator", "wxRegionIterator *", 0, 0, (void*)0, 0};
36119 static swig_type_info _swigt__p_wxRendererNative
= {"_p_wxRendererNative", "wxRendererNative *", 0, 0, (void*)0, 0};
36120 static swig_type_info _swigt__p_wxRendererVersion
= {"_p_wxRendererVersion", "wxRendererVersion *", 0, 0, (void*)0, 0};
36121 static swig_type_info _swigt__p_wxScreenDC
= {"_p_wxScreenDC", "wxScreenDC *", 0, 0, (void*)0, 0};
36122 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
36123 static swig_type_info _swigt__p_wxSplitterRenderParams
= {"_p_wxSplitterRenderParams", "wxSplitterRenderParams *", 0, 0, (void*)0, 0};
36124 static swig_type_info _swigt__p_wxStockGDI
= {"_p_wxStockGDI", "wxStockGDI *", 0, 0, (void*)0, 0};
36125 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
36126 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
36127 static swig_type_info _swigt__p_wxWindowDC
= {"_p_wxWindowDC", "wxWindowDC *", 0, 0, (void*)0, 0};
36129 static swig_type_info
*swig_type_initial
[] = {
36133 &_swigt__p_form_ops_t
,
36135 &_swigt__p_unsigned_char
,
36136 &_swigt__p_unsigned_int
,
36137 &_swigt__p_unsigned_long
,
36139 &_swigt__p_wxANIHandler
,
36140 &_swigt__p_wxAcceleratorTable
,
36141 &_swigt__p_wxActivateEvent
,
36142 &_swigt__p_wxAlphaPixelData
,
36143 &_swigt__p_wxAlphaPixelData_Accessor
,
36144 &_swigt__p_wxAutoBufferedPaintDC
,
36145 &_swigt__p_wxBMPHandler
,
36146 &_swigt__p_wxBitmap
,
36147 &_swigt__p_wxBoxSizer
,
36148 &_swigt__p_wxBrush
,
36149 &_swigt__p_wxBrushList
,
36150 &_swigt__p_wxBufferedDC
,
36151 &_swigt__p_wxBufferedPaintDC
,
36152 &_swigt__p_wxCURHandler
,
36154 &_swigt__p_wxChildFocusEvent
,
36155 &_swigt__p_wxClientDC
,
36156 &_swigt__p_wxClipboardTextEvent
,
36157 &_swigt__p_wxCloseEvent
,
36158 &_swigt__p_wxColor
,
36159 &_swigt__p_wxColour
,
36160 &_swigt__p_wxColourDatabase
,
36161 &_swigt__p_wxCommandEvent
,
36162 &_swigt__p_wxContextMenuEvent
,
36163 &_swigt__p_wxControl
,
36164 &_swigt__p_wxControlWithItems
,
36165 &_swigt__p_wxCursor
,
36167 &_swigt__p_wxDCOverlay
,
36169 &_swigt__p_wxDateEvent
,
36170 &_swigt__p_wxDisplayChangedEvent
,
36171 &_swigt__p_wxDropFilesEvent
,
36172 &_swigt__p_wxDuplexMode
,
36173 &_swigt__p_wxEffects
,
36174 &_swigt__p_wxEncodingConverter
,
36175 &_swigt__p_wxEraseEvent
,
36176 &_swigt__p_wxEvent
,
36177 &_swigt__p_wxEvtHandler
,
36178 &_swigt__p_wxFSFile
,
36179 &_swigt__p_wxFileSystem
,
36180 &_swigt__p_wxFlexGridSizer
,
36181 &_swigt__p_wxFocusEvent
,
36183 &_swigt__p_wxFontList
,
36184 &_swigt__p_wxFontMapper
,
36185 &_swigt__p_wxGBSizerItem
,
36187 &_swigt__p_wxGDIObjListBase
,
36188 &_swigt__p_wxGDIObject
,
36189 &_swigt__p_wxGIFHandler
,
36190 &_swigt__p_wxGraphicsContext
,
36191 &_swigt__p_wxGraphicsPath
,
36192 &_swigt__p_wxGridBagSizer
,
36193 &_swigt__p_wxGridSizer
,
36194 &_swigt__p_wxHeaderButtonParams
,
36195 &_swigt__p_wxICOHandler
,
36197 &_swigt__p_wxIconBundle
,
36198 &_swigt__p_wxIconLocation
,
36199 &_swigt__p_wxIconizeEvent
,
36200 &_swigt__p_wxIdleEvent
,
36201 &_swigt__p_wxImage
,
36202 &_swigt__p_wxImageHandler
,
36203 &_swigt__p_wxImageList
,
36204 &_swigt__p_wxIndividualLayoutConstraint
,
36205 &_swigt__p_wxInitDialogEvent
,
36206 &_swigt__p_wxJPEGHandler
,
36207 &_swigt__p_wxKeyEvent
,
36208 &_swigt__p_wxLanguageInfo
,
36209 &_swigt__p_wxLayoutConstraints
,
36210 &_swigt__p_wxLocale
,
36212 &_swigt__p_wxMaximizeEvent
,
36213 &_swigt__p_wxMemoryDC
,
36215 &_swigt__p_wxMenuBar
,
36216 &_swigt__p_wxMenuEvent
,
36217 &_swigt__p_wxMenuItem
,
36218 &_swigt__p_wxMetaFile
,
36219 &_swigt__p_wxMetaFileDC
,
36220 &_swigt__p_wxMirrorDC
,
36221 &_swigt__p_wxMouseCaptureChangedEvent
,
36222 &_swigt__p_wxMouseCaptureLostEvent
,
36223 &_swigt__p_wxMouseEvent
,
36224 &_swigt__p_wxMoveEvent
,
36225 &_swigt__p_wxNativeEncodingInfo
,
36226 &_swigt__p_wxNativeFontInfo
,
36227 &_swigt__p_wxNativePixelData
,
36228 &_swigt__p_wxNativePixelData_Accessor
,
36229 &_swigt__p_wxNavigationKeyEvent
,
36230 &_swigt__p_wxNcPaintEvent
,
36231 &_swigt__p_wxNotifyEvent
,
36232 &_swigt__p_wxObject
,
36233 &_swigt__p_wxOverlay
,
36234 &_swigt__p_wxPCXHandler
,
36235 &_swigt__p_wxPNGHandler
,
36236 &_swigt__p_wxPNMHandler
,
36237 &_swigt__p_wxPaintDC
,
36238 &_swigt__p_wxPaintEvent
,
36239 &_swigt__p_wxPalette
,
36240 &_swigt__p_wxPaletteChangedEvent
,
36241 &_swigt__p_wxPaperSize
,
36243 &_swigt__p_wxPenList
,
36244 &_swigt__p_wxPixelDataBase
,
36245 &_swigt__p_wxPoint
,
36246 &_swigt__p_wxPoint2D
,
36247 &_swigt__p_wxPostScriptDC
,
36248 &_swigt__p_wxPrintData
,
36249 &_swigt__p_wxPrinterDC
,
36250 &_swigt__p_wxPseudoDC
,
36251 &_swigt__p_wxPyApp
,
36252 &_swigt__p_wxPyCommandEvent
,
36253 &_swigt__p_wxPyEvent
,
36254 &_swigt__p_wxPyFontEnumerator
,
36255 &_swigt__p_wxPyImageHandler
,
36256 &_swigt__p_wxPyLocale
,
36257 &_swigt__p_wxPySizer
,
36258 &_swigt__p_wxPyValidator
,
36259 &_swigt__p_wxQueryNewPaletteEvent
,
36261 &_swigt__p_wxRegion
,
36262 &_swigt__p_wxRegionIterator
,
36263 &_swigt__p_wxRendererNative
,
36264 &_swigt__p_wxRendererVersion
,
36265 &_swigt__p_wxScreenDC
,
36266 &_swigt__p_wxScrollEvent
,
36267 &_swigt__p_wxScrollWinEvent
,
36268 &_swigt__p_wxSetCursorEvent
,
36269 &_swigt__p_wxShowEvent
,
36271 &_swigt__p_wxSizeEvent
,
36272 &_swigt__p_wxSizer
,
36273 &_swigt__p_wxSizerItem
,
36274 &_swigt__p_wxSplitterRenderParams
,
36275 &_swigt__p_wxStaticBoxSizer
,
36276 &_swigt__p_wxStdDialogButtonSizer
,
36277 &_swigt__p_wxStockGDI
,
36278 &_swigt__p_wxString
,
36279 &_swigt__p_wxSysColourChangedEvent
,
36280 &_swigt__p_wxTIFFHandler
,
36281 &_swigt__p_wxUpdateUIEvent
,
36282 &_swigt__p_wxValidator
,
36283 &_swigt__p_wxWindow
,
36284 &_swigt__p_wxWindowCreateEvent
,
36285 &_swigt__p_wxWindowDC
,
36286 &_swigt__p_wxWindowDestroyEvent
,
36287 &_swigt__p_wxXPMHandler
,
36290 static swig_cast_info _swigc__p_buffer
[] = { {&_swigt__p_buffer
, 0, 0, 0},{0, 0, 0, 0}};
36291 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
36292 static swig_cast_info _swigc__p_double
[] = { {&_swigt__p_double
, 0, 0, 0},{0, 0, 0, 0}};
36293 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
36294 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
36295 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
36296 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
36297 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
36298 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
36299 static swig_cast_info _swigc__p_wxAlphaPixelData
[] = { {&_swigt__p_wxAlphaPixelData
, 0, 0, 0},{0, 0, 0, 0}};
36300 static swig_cast_info _swigc__p_wxAlphaPixelData_Accessor
[] = { {&_swigt__p_wxAlphaPixelData_Accessor
, 0, 0, 0},{0, 0, 0, 0}};
36301 static swig_cast_info _swigc__p_wxAutoBufferedPaintDC
[] = { {&_swigt__p_wxAutoBufferedPaintDC
, 0, 0, 0},{0, 0, 0, 0}};
36302 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
36303 static swig_cast_info _swigc__p_wxBrush
[] = { {&_swigt__p_wxBrush
, 0, 0, 0},{0, 0, 0, 0}};
36304 static swig_cast_info _swigc__p_wxBrushList
[] = { {&_swigt__p_wxBrushList
, 0, 0, 0},{0, 0, 0, 0}};
36305 static swig_cast_info _swigc__p_wxBufferedDC
[] = { {&_swigt__p_wxBufferedDC
, 0, 0, 0}, {&_swigt__p_wxBufferedPaintDC
, _p_wxBufferedPaintDCTo_p_wxBufferedDC
, 0, 0},{0, 0, 0, 0}};
36306 static swig_cast_info _swigc__p_wxBufferedPaintDC
[] = { {&_swigt__p_wxBufferedPaintDC
, 0, 0, 0},{0, 0, 0, 0}};
36307 static swig_cast_info _swigc__p_wxChar
[] = { {&_swigt__p_wxChar
, 0, 0, 0},{0, 0, 0, 0}};
36308 static swig_cast_info _swigc__p_wxClientDC
[] = { {&_swigt__p_wxClientDC
, 0, 0, 0}, {&_swigt__p_wxPaintDC
, _p_wxPaintDCTo_p_wxClientDC
, 0, 0},{0, 0, 0, 0}};
36309 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
36310 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
36311 static swig_cast_info _swigc__p_wxColourDatabase
[] = { {&_swigt__p_wxColourDatabase
, 0, 0, 0},{0, 0, 0, 0}};
36312 static swig_cast_info _swigc__p_wxCursor
[] = { {&_swigt__p_wxCursor
, 0, 0, 0},{0, 0, 0, 0}};
36313 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxPrinterDC
, _p_wxPrinterDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxPaintDC
, _p_wxPaintDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxBufferedPaintDC
, _p_wxBufferedPaintDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxAutoBufferedPaintDC
, _p_wxAutoBufferedPaintDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxMetaFileDC
, _p_wxMetaFileDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxClientDC
, _p_wxClientDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxPostScriptDC
, _p_wxPostScriptDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxDC
, 0, 0, 0}, {&_swigt__p_wxWindowDC
, _p_wxWindowDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxScreenDC
, _p_wxScreenDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxBufferedDC
, _p_wxBufferedDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxMemoryDC
, _p_wxMemoryDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxGCDC
, _p_wxGCDCTo_p_wxDC
, 0, 0}, {&_swigt__p_wxMirrorDC
, _p_wxMirrorDCTo_p_wxDC
, 0, 0},{0, 0, 0, 0}};
36314 static swig_cast_info _swigc__p_wxDCOverlay
[] = { {&_swigt__p_wxDCOverlay
, 0, 0, 0},{0, 0, 0, 0}};
36315 static swig_cast_info _swigc__p_wxDash
[] = { {&_swigt__p_wxDash
, 0, 0, 0},{0, 0, 0, 0}};
36316 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
36317 static swig_cast_info _swigc__p_wxEffects
[] = { {&_swigt__p_wxEffects
, 0, 0, 0},{0, 0, 0, 0}};
36318 static swig_cast_info _swigc__p_wxEncodingConverter
[] = { {&_swigt__p_wxEncodingConverter
, 0, 0, 0},{0, 0, 0, 0}};
36319 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
36320 static swig_cast_info _swigc__p_wxFontList
[] = { {&_swigt__p_wxFontList
, 0, 0, 0},{0, 0, 0, 0}};
36321 static swig_cast_info _swigc__p_wxFontMapper
[] = { {&_swigt__p_wxFontMapper
, 0, 0, 0},{0, 0, 0, 0}};
36322 static swig_cast_info _swigc__p_wxGCDC
[] = { {&_swigt__p_wxGCDC
, 0, 0, 0},{0, 0, 0, 0}};
36323 static swig_cast_info _swigc__p_wxGDIObjListBase
[] = { {&_swigt__p_wxGDIObjListBase
, 0, 0, 0}, {&_swigt__p_wxBrushList
, _p_wxBrushListTo_p_wxGDIObjListBase
, 0, 0}, {&_swigt__p_wxFontList
, _p_wxFontListTo_p_wxGDIObjListBase
, 0, 0}, {&_swigt__p_wxPenList
, _p_wxPenListTo_p_wxGDIObjListBase
, 0, 0},{0, 0, 0, 0}};
36324 static swig_cast_info _swigc__p_wxGDIObject
[] = { {&_swigt__p_wxIcon
, _p_wxIconTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxPen
, _p_wxPenTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxFont
, _p_wxFontTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxPalette
, _p_wxPaletteTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxGDIObject
, 0, 0, 0}, {&_swigt__p_wxCursor
, _p_wxCursorTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxBitmap
, _p_wxBitmapTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxRegion
, _p_wxRegionTo_p_wxGDIObject
, 0, 0}, {&_swigt__p_wxBrush
, _p_wxBrushTo_p_wxGDIObject
, 0, 0},{0, 0, 0, 0}};
36325 static swig_cast_info _swigc__p_wxGraphicsContext
[] = { {&_swigt__p_wxGraphicsContext
, 0, 0, 0},{0, 0, 0, 0}};
36326 static swig_cast_info _swigc__p_wxGraphicsPath
[] = { {&_swigt__p_wxGraphicsPath
, 0, 0, 0},{0, 0, 0, 0}};
36327 static swig_cast_info _swigc__p_wxHeaderButtonParams
[] = { {&_swigt__p_wxHeaderButtonParams
, 0, 0, 0},{0, 0, 0, 0}};
36328 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
36329 static swig_cast_info _swigc__p_wxIconBundle
[] = { {&_swigt__p_wxIconBundle
, 0, 0, 0},{0, 0, 0, 0}};
36330 static swig_cast_info _swigc__p_wxIconLocation
[] = { {&_swigt__p_wxIconLocation
, 0, 0, 0},{0, 0, 0, 0}};
36331 static swig_cast_info _swigc__p_wxImage
[] = { {&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
36332 static swig_cast_info _swigc__p_wxImageList
[] = { {&_swigt__p_wxImageList
, 0, 0, 0},{0, 0, 0, 0}};
36333 static swig_cast_info _swigc__p_wxLanguageInfo
[] = { {&_swigt__p_wxLanguageInfo
, 0, 0, 0},{0, 0, 0, 0}};
36334 static swig_cast_info _swigc__p_wxLocale
[] = { {&_swigt__p_wxPyLocale
, _p_wxPyLocaleTo_p_wxLocale
, 0, 0}, {&_swigt__p_wxLocale
, 0, 0, 0},{0, 0, 0, 0}};
36335 static swig_cast_info _swigc__p_wxMask
[] = { {&_swigt__p_wxMask
, 0, 0, 0},{0, 0, 0, 0}};
36336 static swig_cast_info _swigc__p_wxMemoryDC
[] = { {&_swigt__p_wxBufferedDC
, _p_wxBufferedDCTo_p_wxMemoryDC
, 0, 0}, {&_swigt__p_wxMemoryDC
, 0, 0, 0}, {&_swigt__p_wxBufferedPaintDC
, _p_wxBufferedPaintDCTo_p_wxMemoryDC
, 0, 0},{0, 0, 0, 0}};
36337 static swig_cast_info _swigc__p_wxMetaFile
[] = { {&_swigt__p_wxMetaFile
, 0, 0, 0},{0, 0, 0, 0}};
36338 static swig_cast_info _swigc__p_wxMetaFileDC
[] = { {&_swigt__p_wxMetaFileDC
, 0, 0, 0},{0, 0, 0, 0}};
36339 static swig_cast_info _swigc__p_wxMirrorDC
[] = { {&_swigt__p_wxMirrorDC
, 0, 0, 0},{0, 0, 0, 0}};
36340 static swig_cast_info _swigc__p_wxNativeEncodingInfo
[] = { {&_swigt__p_wxNativeEncodingInfo
, 0, 0, 0},{0, 0, 0, 0}};
36341 static swig_cast_info _swigc__p_wxNativeFontInfo
[] = { {&_swigt__p_wxNativeFontInfo
, 0, 0, 0},{0, 0, 0, 0}};
36342 static swig_cast_info _swigc__p_wxNativePixelData
[] = { {&_swigt__p_wxNativePixelData
, 0, 0, 0},{0, 0, 0, 0}};
36343 static swig_cast_info _swigc__p_wxNativePixelData_Accessor
[] = { {&_swigt__p_wxNativePixelData_Accessor
, 0, 0, 0},{0, 0, 0, 0}};
36344 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
36345 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
36346 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
36347 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
36348 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
36349 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
36350 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
36351 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
36352 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
36353 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
36354 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
36355 static swig_cast_info _swigc__p_wxEvent
[] = {{&_swigt__p_wxEvent
, 0, 0, 0},{0, 0, 0, 0}};
36356 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
36357 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
36358 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
36359 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
36360 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
36361 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
36362 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
36363 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
36364 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
36365 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
36366 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
36367 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
36368 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
36369 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
36370 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
36371 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
36372 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
36373 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
36374 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
36375 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
36376 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
36377 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
36378 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
36379 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
36380 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
36381 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
36382 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
36383 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
36384 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
36385 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
36386 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
36387 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
36388 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
36389 static swig_cast_info _swigc__p_wxEvtHandler
[] = {{&_swigt__p_wxEvtHandler
, 0, 0, 0},{0, 0, 0, 0}};
36390 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
36391 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
36392 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
36393 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
36394 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
36395 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
36396 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
36397 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
36398 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
36399 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
36400 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
36401 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
36402 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
36403 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
36404 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
36405 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
36406 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
36407 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
36408 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
36409 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
36410 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
36411 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
36412 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
36413 static swig_cast_info _swigc__p_wxCommandEvent
[] = {{&_swigt__p_wxCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
36414 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
36415 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
36416 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
36417 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
36418 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
36419 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
36420 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxRegionIterator
, _p_wxRegionIteratorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPen
, _p_wxPenTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGCDC
, _p_wxGCDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_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_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMask
, _p_wxMaskTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPseudoDC
, _p_wxPseudoDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFont
, _p_wxFontTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClientDC
, _p_wxClientDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMemoryDC
, _p_wxMemoryDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxRegion
, _p_wxRegionTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDC
, _p_wxDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIcon
, _p_wxIconTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDC
, _p_wxWindowDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGDIObject
, _p_wxGDIObjectTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEffects
, _p_wxEffectsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPostScriptDC
, _p_wxPostScriptDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_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_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAutoBufferedPaintDC
, _p_wxAutoBufferedPaintDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBufferedPaintDC
, _p_wxBufferedPaintDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintDC
, _p_wxPaintDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrinterDC
, _p_wxPrinterDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScreenDC
, _p_wxScreenDCTo_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_wxBufferedDC
, _p_wxBufferedDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPalette
, _p_wxPaletteTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageList
, _p_wxImageListTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCursor
, _p_wxCursorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxMirrorDC
, _p_wxMirrorDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEncodingConverter
, _p_wxEncodingConverterTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMetaFileDC
, _p_wxMetaFileDCTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBitmap
, _p_wxBitmapTo_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_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_wxBrush
, _p_wxBrushTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMetaFile
, _p_wxMetaFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColour
, _p_wxColourTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
36421 static swig_cast_info _swigc__p_wxOverlay
[] = { {&_swigt__p_wxOverlay
, 0, 0, 0},{0, 0, 0, 0}};
36422 static swig_cast_info _swigc__p_wxPaintDC
[] = { {&_swigt__p_wxPaintDC
, 0, 0, 0},{0, 0, 0, 0}};
36423 static swig_cast_info _swigc__p_wxPalette
[] = { {&_swigt__p_wxPalette
, 0, 0, 0},{0, 0, 0, 0}};
36424 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
36425 static swig_cast_info _swigc__p_wxPen
[] = { {&_swigt__p_wxPen
, 0, 0, 0},{0, 0, 0, 0}};
36426 static swig_cast_info _swigc__p_wxPenList
[] = { {&_swigt__p_wxPenList
, 0, 0, 0},{0, 0, 0, 0}};
36427 static swig_cast_info _swigc__p_wxPixelDataBase
[] = { {&_swigt__p_wxPixelDataBase
, 0, 0, 0}, {&_swigt__p_wxNativePixelData
, _p_wxNativePixelDataTo_p_wxPixelDataBase
, 0, 0}, {&_swigt__p_wxAlphaPixelData
, _p_wxAlphaPixelDataTo_p_wxPixelDataBase
, 0, 0},{0, 0, 0, 0}};
36428 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
36429 static swig_cast_info _swigc__p_wxPoint2D
[] = { {&_swigt__p_wxPoint2D
, 0, 0, 0},{0, 0, 0, 0}};
36430 static swig_cast_info _swigc__p_wxPostScriptDC
[] = { {&_swigt__p_wxPostScriptDC
, 0, 0, 0},{0, 0, 0, 0}};
36431 static swig_cast_info _swigc__p_wxPrintData
[] = { {&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
36432 static swig_cast_info _swigc__p_wxPrinterDC
[] = { {&_swigt__p_wxPrinterDC
, 0, 0, 0},{0, 0, 0, 0}};
36433 static swig_cast_info _swigc__p_wxPseudoDC
[] = { {&_swigt__p_wxPseudoDC
, 0, 0, 0},{0, 0, 0, 0}};
36434 static swig_cast_info _swigc__p_wxPyFontEnumerator
[] = { {&_swigt__p_wxPyFontEnumerator
, 0, 0, 0},{0, 0, 0, 0}};
36435 static swig_cast_info _swigc__p_wxPyLocale
[] = { {&_swigt__p_wxPyLocale
, 0, 0, 0},{0, 0, 0, 0}};
36436 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
36437 static swig_cast_info _swigc__p_wxRegion
[] = { {&_swigt__p_wxRegion
, 0, 0, 0},{0, 0, 0, 0}};
36438 static swig_cast_info _swigc__p_wxRegionIterator
[] = { {&_swigt__p_wxRegionIterator
, 0, 0, 0},{0, 0, 0, 0}};
36439 static swig_cast_info _swigc__p_wxRendererNative
[] = { {&_swigt__p_wxRendererNative
, 0, 0, 0},{0, 0, 0, 0}};
36440 static swig_cast_info _swigc__p_wxRendererVersion
[] = { {&_swigt__p_wxRendererVersion
, 0, 0, 0},{0, 0, 0, 0}};
36441 static swig_cast_info _swigc__p_wxScreenDC
[] = { {&_swigt__p_wxScreenDC
, 0, 0, 0},{0, 0, 0, 0}};
36442 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
36443 static swig_cast_info _swigc__p_wxSplitterRenderParams
[] = { {&_swigt__p_wxSplitterRenderParams
, 0, 0, 0},{0, 0, 0, 0}};
36444 static swig_cast_info _swigc__p_wxStockGDI
[] = { {&_swigt__p_wxStockGDI
, 0, 0, 0},{0, 0, 0, 0}};
36445 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
36446 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}};
36447 static swig_cast_info _swigc__p_wxWindowDC
[] = { {&_swigt__p_wxWindowDC
, 0, 0, 0}, {&_swigt__p_wxClientDC
, _p_wxClientDCTo_p_wxWindowDC
, 0, 0}, {&_swigt__p_wxPaintDC
, _p_wxPaintDCTo_p_wxWindowDC
, 0, 0},{0, 0, 0, 0}};
36449 static swig_cast_info
*swig_cast_initial
[] = {
36453 _swigc__p_form_ops_t
,
36455 _swigc__p_unsigned_char
,
36456 _swigc__p_unsigned_int
,
36457 _swigc__p_unsigned_long
,
36459 _swigc__p_wxANIHandler
,
36460 _swigc__p_wxAcceleratorTable
,
36461 _swigc__p_wxActivateEvent
,
36462 _swigc__p_wxAlphaPixelData
,
36463 _swigc__p_wxAlphaPixelData_Accessor
,
36464 _swigc__p_wxAutoBufferedPaintDC
,
36465 _swigc__p_wxBMPHandler
,
36466 _swigc__p_wxBitmap
,
36467 _swigc__p_wxBoxSizer
,
36469 _swigc__p_wxBrushList
,
36470 _swigc__p_wxBufferedDC
,
36471 _swigc__p_wxBufferedPaintDC
,
36472 _swigc__p_wxCURHandler
,
36474 _swigc__p_wxChildFocusEvent
,
36475 _swigc__p_wxClientDC
,
36476 _swigc__p_wxClipboardTextEvent
,
36477 _swigc__p_wxCloseEvent
,
36479 _swigc__p_wxColour
,
36480 _swigc__p_wxColourDatabase
,
36481 _swigc__p_wxCommandEvent
,
36482 _swigc__p_wxContextMenuEvent
,
36483 _swigc__p_wxControl
,
36484 _swigc__p_wxControlWithItems
,
36485 _swigc__p_wxCursor
,
36487 _swigc__p_wxDCOverlay
,
36489 _swigc__p_wxDateEvent
,
36490 _swigc__p_wxDisplayChangedEvent
,
36491 _swigc__p_wxDropFilesEvent
,
36492 _swigc__p_wxDuplexMode
,
36493 _swigc__p_wxEffects
,
36494 _swigc__p_wxEncodingConverter
,
36495 _swigc__p_wxEraseEvent
,
36497 _swigc__p_wxEvtHandler
,
36498 _swigc__p_wxFSFile
,
36499 _swigc__p_wxFileSystem
,
36500 _swigc__p_wxFlexGridSizer
,
36501 _swigc__p_wxFocusEvent
,
36503 _swigc__p_wxFontList
,
36504 _swigc__p_wxFontMapper
,
36505 _swigc__p_wxGBSizerItem
,
36507 _swigc__p_wxGDIObjListBase
,
36508 _swigc__p_wxGDIObject
,
36509 _swigc__p_wxGIFHandler
,
36510 _swigc__p_wxGraphicsContext
,
36511 _swigc__p_wxGraphicsPath
,
36512 _swigc__p_wxGridBagSizer
,
36513 _swigc__p_wxGridSizer
,
36514 _swigc__p_wxHeaderButtonParams
,
36515 _swigc__p_wxICOHandler
,
36517 _swigc__p_wxIconBundle
,
36518 _swigc__p_wxIconLocation
,
36519 _swigc__p_wxIconizeEvent
,
36520 _swigc__p_wxIdleEvent
,
36522 _swigc__p_wxImageHandler
,
36523 _swigc__p_wxImageList
,
36524 _swigc__p_wxIndividualLayoutConstraint
,
36525 _swigc__p_wxInitDialogEvent
,
36526 _swigc__p_wxJPEGHandler
,
36527 _swigc__p_wxKeyEvent
,
36528 _swigc__p_wxLanguageInfo
,
36529 _swigc__p_wxLayoutConstraints
,
36530 _swigc__p_wxLocale
,
36532 _swigc__p_wxMaximizeEvent
,
36533 _swigc__p_wxMemoryDC
,
36535 _swigc__p_wxMenuBar
,
36536 _swigc__p_wxMenuEvent
,
36537 _swigc__p_wxMenuItem
,
36538 _swigc__p_wxMetaFile
,
36539 _swigc__p_wxMetaFileDC
,
36540 _swigc__p_wxMirrorDC
,
36541 _swigc__p_wxMouseCaptureChangedEvent
,
36542 _swigc__p_wxMouseCaptureLostEvent
,
36543 _swigc__p_wxMouseEvent
,
36544 _swigc__p_wxMoveEvent
,
36545 _swigc__p_wxNativeEncodingInfo
,
36546 _swigc__p_wxNativeFontInfo
,
36547 _swigc__p_wxNativePixelData
,
36548 _swigc__p_wxNativePixelData_Accessor
,
36549 _swigc__p_wxNavigationKeyEvent
,
36550 _swigc__p_wxNcPaintEvent
,
36551 _swigc__p_wxNotifyEvent
,
36552 _swigc__p_wxObject
,
36553 _swigc__p_wxOverlay
,
36554 _swigc__p_wxPCXHandler
,
36555 _swigc__p_wxPNGHandler
,
36556 _swigc__p_wxPNMHandler
,
36557 _swigc__p_wxPaintDC
,
36558 _swigc__p_wxPaintEvent
,
36559 _swigc__p_wxPalette
,
36560 _swigc__p_wxPaletteChangedEvent
,
36561 _swigc__p_wxPaperSize
,
36563 _swigc__p_wxPenList
,
36564 _swigc__p_wxPixelDataBase
,
36566 _swigc__p_wxPoint2D
,
36567 _swigc__p_wxPostScriptDC
,
36568 _swigc__p_wxPrintData
,
36569 _swigc__p_wxPrinterDC
,
36570 _swigc__p_wxPseudoDC
,
36572 _swigc__p_wxPyCommandEvent
,
36573 _swigc__p_wxPyEvent
,
36574 _swigc__p_wxPyFontEnumerator
,
36575 _swigc__p_wxPyImageHandler
,
36576 _swigc__p_wxPyLocale
,
36577 _swigc__p_wxPySizer
,
36578 _swigc__p_wxPyValidator
,
36579 _swigc__p_wxQueryNewPaletteEvent
,
36581 _swigc__p_wxRegion
,
36582 _swigc__p_wxRegionIterator
,
36583 _swigc__p_wxRendererNative
,
36584 _swigc__p_wxRendererVersion
,
36585 _swigc__p_wxScreenDC
,
36586 _swigc__p_wxScrollEvent
,
36587 _swigc__p_wxScrollWinEvent
,
36588 _swigc__p_wxSetCursorEvent
,
36589 _swigc__p_wxShowEvent
,
36591 _swigc__p_wxSizeEvent
,
36593 _swigc__p_wxSizerItem
,
36594 _swigc__p_wxSplitterRenderParams
,
36595 _swigc__p_wxStaticBoxSizer
,
36596 _swigc__p_wxStdDialogButtonSizer
,
36597 _swigc__p_wxStockGDI
,
36598 _swigc__p_wxString
,
36599 _swigc__p_wxSysColourChangedEvent
,
36600 _swigc__p_wxTIFFHandler
,
36601 _swigc__p_wxUpdateUIEvent
,
36602 _swigc__p_wxValidator
,
36603 _swigc__p_wxWindow
,
36604 _swigc__p_wxWindowCreateEvent
,
36605 _swigc__p_wxWindowDC
,
36606 _swigc__p_wxWindowDestroyEvent
,
36607 _swigc__p_wxXPMHandler
,
36611 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
36613 static swig_const_info swig_const_table
[] = {
36614 {0, 0, 0, 0.0, 0, 0}};
36619 /* -----------------------------------------------------------------------------
36620 * Type initialization:
36621 * This problem is tough by the requirement that no dynamic
36622 * memory is used. Also, since swig_type_info structures store pointers to
36623 * swig_cast_info structures and swig_cast_info structures store pointers back
36624 * to swig_type_info structures, we need some lookup code at initialization.
36625 * The idea is that swig generates all the structures that are needed.
36626 * The runtime then collects these partially filled structures.
36627 * The SWIG_InitializeModule function takes these initial arrays out of
36628 * swig_module, and does all the lookup, filling in the swig_module.types
36629 * array with the correct data and linking the correct swig_cast_info
36630 * structures together.
36632 * The generated swig_type_info structures are assigned staticly to an initial
36633 * array. We just loop though that array, and handle each type individually.
36634 * First we lookup if this type has been already loaded, and if so, use the
36635 * loaded structure instead of the generated one. Then we have to fill in the
36636 * cast linked list. The cast data is initially stored in something like a
36637 * two-dimensional array. Each row corresponds to a type (there are the same
36638 * number of rows as there are in the swig_type_initial array). Each entry in
36639 * a column is one of the swig_cast_info structures for that type.
36640 * The cast_initial array is actually an array of arrays, because each row has
36641 * a variable number of columns. So to actually build the cast linked list,
36642 * we find the array of casts associated with the type, and loop through it
36643 * adding the casts to the list. The one last trick we need to do is making
36644 * sure the type pointer in the swig_cast_info struct is correct.
36646 * First off, we lookup the cast->type name to see if it is already loaded.
36647 * There are three cases to handle:
36648 * 1) If the cast->type has already been loaded AND the type we are adding
36649 * casting info to has not been loaded (it is in this module), THEN we
36650 * replace the cast->type pointer with the type pointer that has already
36652 * 2) If BOTH types (the one we are adding casting info to, and the
36653 * cast->type) are loaded, THEN the cast info has already been loaded by
36654 * the previous module so we just ignore it.
36655 * 3) Finally, if cast->type has not already been loaded, then we add that
36656 * swig_cast_info to the linked list (because the cast->type) pointer will
36658 * ----------------------------------------------------------------------------- */
36668 #define SWIGRUNTIME_DEBUG
36672 SWIG_InitializeModule(void *clientdata
) {
36674 swig_module_info
*module_head
;
36675 static int init_run
= 0;
36677 clientdata
= clientdata
;
36679 if (init_run
) return;
36682 /* Initialize the swig_module */
36683 swig_module
.type_initial
= swig_type_initial
;
36684 swig_module
.cast_initial
= swig_cast_initial
;
36686 /* Try and load any already created modules */
36687 module_head
= SWIG_GetModule(clientdata
);
36689 swig_module
.next
= module_head
->next
;
36690 module_head
->next
= &swig_module
;
36692 /* This is the first module loaded */
36693 swig_module
.next
= &swig_module
;
36694 SWIG_SetModule(clientdata
, &swig_module
);
36697 /* Now work on filling in swig_module.types */
36698 #ifdef SWIGRUNTIME_DEBUG
36699 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
36701 for (i
= 0; i
< swig_module
.size
; ++i
) {
36702 swig_type_info
*type
= 0;
36703 swig_type_info
*ret
;
36704 swig_cast_info
*cast
;
36706 #ifdef SWIGRUNTIME_DEBUG
36707 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
36710 /* if there is another module already loaded */
36711 if (swig_module
.next
!= &swig_module
) {
36712 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
36715 /* Overwrite clientdata field */
36716 #ifdef SWIGRUNTIME_DEBUG
36717 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
36719 if (swig_module
.type_initial
[i
]->clientdata
) {
36720 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
36721 #ifdef SWIGRUNTIME_DEBUG
36722 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
36726 type
= swig_module
.type_initial
[i
];
36729 /* Insert casting types */
36730 cast
= swig_module
.cast_initial
[i
];
36731 while (cast
->type
) {
36732 /* Don't need to add information already in the list */
36734 #ifdef SWIGRUNTIME_DEBUG
36735 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
36737 if (swig_module
.next
!= &swig_module
) {
36738 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
36739 #ifdef SWIGRUNTIME_DEBUG
36740 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
36744 if (type
== swig_module
.type_initial
[i
]) {
36745 #ifdef SWIGRUNTIME_DEBUG
36746 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
36751 /* Check for casting already in the list */
36752 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
36753 #ifdef SWIGRUNTIME_DEBUG
36754 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
36756 if (!ocast
) ret
= 0;
36761 #ifdef SWIGRUNTIME_DEBUG
36762 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
36765 type
->cast
->prev
= cast
;
36766 cast
->next
= type
->cast
;
36772 /* Set entry in modules->types array equal to the type */
36773 swig_module
.types
[i
] = type
;
36775 swig_module
.types
[i
] = 0;
36777 #ifdef SWIGRUNTIME_DEBUG
36778 printf("**** SWIG_InitializeModule: Cast List ******\n");
36779 for (i
= 0; i
< swig_module
.size
; ++i
) {
36781 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
36782 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
36783 while (cast
->type
) {
36784 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
36788 printf("---- Total casts: %d\n",j
);
36790 printf("**** SWIG_InitializeModule: Cast List ******\n");
36794 /* This function will propagate the clientdata field of type to
36795 * any new swig_type_info structures that have been added into the list
36796 * of equivalent types. It is like calling
36797 * SWIG_TypeClientData(type, clientdata) a second time.
36800 SWIG_PropagateClientData(void) {
36802 swig_cast_info
*equiv
;
36803 static int init_run
= 0;
36805 if (init_run
) return;
36808 for (i
= 0; i
< swig_module
.size
; i
++) {
36809 if (swig_module
.types
[i
]->clientdata
) {
36810 equiv
= swig_module
.types
[i
]->cast
;
36812 if (!equiv
->converter
) {
36813 if (equiv
->type
&& !equiv
->type
->clientdata
)
36814 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
36816 equiv
= equiv
->next
;
36836 /* Python-specific SWIG API */
36837 #define SWIG_newvarlink() SWIG_Python_newvarlink()
36838 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
36839 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
36841 /* -----------------------------------------------------------------------------
36842 * global variable support code.
36843 * ----------------------------------------------------------------------------- */
36845 typedef struct swig_globalvar
{
36846 char *name
; /* Name of global variable */
36847 PyObject
*(*get_attr
)(void); /* Return the current value */
36848 int (*set_attr
)(PyObject
*); /* Set the value */
36849 struct swig_globalvar
*next
;
36852 typedef struct swig_varlinkobject
{
36854 swig_globalvar
*vars
;
36855 } swig_varlinkobject
;
36857 SWIGINTERN PyObject
*
36858 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
36859 return PyString_FromString("<Swig global variables>");
36862 SWIGINTERN PyObject
*
36863 swig_varlink_str(swig_varlinkobject
*v
) {
36864 PyObject
*str
= PyString_FromString("(");
36865 swig_globalvar
*var
;
36866 for (var
= v
->vars
; var
; var
=var
->next
) {
36867 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
36868 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
36870 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
36875 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
36876 PyObject
*str
= swig_varlink_str(v
);
36877 fprintf(fp
,"Swig global variables ");
36878 fprintf(fp
,"%s\n", PyString_AsString(str
));
36884 swig_varlink_dealloc(swig_varlinkobject
*v
) {
36885 swig_globalvar
*var
= v
->vars
;
36887 swig_globalvar
*n
= var
->next
;
36894 SWIGINTERN PyObject
*
36895 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
36896 PyObject
*res
= NULL
;
36897 swig_globalvar
*var
= v
->vars
;
36899 if (strcmp(var
->name
,n
) == 0) {
36900 res
= (*var
->get_attr
)();
36905 if (res
== NULL
&& !PyErr_Occurred()) {
36906 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
36912 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
36914 swig_globalvar
*var
= v
->vars
;
36916 if (strcmp(var
->name
,n
) == 0) {
36917 res
= (*var
->set_attr
)(p
);
36922 if (res
== 1 && !PyErr_Occurred()) {
36923 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
36928 SWIGINTERN PyTypeObject
*
36929 swig_varlink_type(void) {
36930 static char varlink__doc__
[] = "Swig var link object";
36931 static PyTypeObject varlink_type
;
36932 static int type_init
= 0;
36934 const PyTypeObject tmp
36936 PyObject_HEAD_INIT(NULL
)
36937 0, /* Number of items in variable part (ob_size) */
36938 (char *)"swigvarlink", /* Type name (tp_name) */
36939 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
36940 0, /* Itemsize (tp_itemsize) */
36941 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
36942 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
36943 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
36944 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
36945 0, /* tp_compare */
36946 (reprfunc
) swig_varlink_repr
, /* tp_repr */
36947 0, /* tp_as_number */
36948 0, /* tp_as_sequence */
36949 0, /* tp_as_mapping */
36952 (reprfunc
)swig_varlink_str
, /* tp_str */
36953 0, /* tp_getattro */
36954 0, /* tp_setattro */
36955 0, /* tp_as_buffer */
36957 varlink__doc__
, /* tp_doc */
36958 0, /* tp_traverse */
36960 0, /* tp_richcompare */
36961 0, /* tp_weaklistoffset */
36962 #if PY_VERSION_HEX >= 0x02020000
36963 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
36965 #if PY_VERSION_HEX >= 0x02030000
36968 #ifdef COUNT_ALLOCS
36969 0,0,0,0 /* tp_alloc -> tp_next */
36972 varlink_type
= tmp
;
36973 varlink_type
.ob_type
= &PyType_Type
;
36976 return &varlink_type
;
36979 /* Create a variable linking object for use later */
36980 SWIGINTERN PyObject
*
36981 SWIG_Python_newvarlink(void) {
36982 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
36986 return ((PyObject
*) result
);
36990 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
36991 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
36992 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
36994 size_t size
= strlen(name
)+1;
36995 gv
->name
= (char *)malloc(size
);
36997 strncpy(gv
->name
,name
,size
);
36998 gv
->get_attr
= get_attr
;
36999 gv
->set_attr
= set_attr
;
37000 gv
->next
= v
->vars
;
37006 SWIGINTERN PyObject
*
37008 static PyObject
*_SWIG_globals
= 0;
37009 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
37010 return _SWIG_globals
;
37013 /* -----------------------------------------------------------------------------
37014 * constants/methods manipulation
37015 * ----------------------------------------------------------------------------- */
37017 /* Install Constants */
37019 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
37022 for (i
= 0; constants
[i
].type
; ++i
) {
37023 switch(constants
[i
].type
) {
37024 case SWIG_PY_POINTER
:
37025 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
37027 case SWIG_PY_BINARY
:
37028 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
37035 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
37041 /* -----------------------------------------------------------------------------*/
37042 /* Fix SwigMethods to carry the callback ptrs when needed */
37043 /* -----------------------------------------------------------------------------*/
37046 SWIG_Python_FixMethods(PyMethodDef
*methods
,
37047 swig_const_info
*const_table
,
37048 swig_type_info
**types
,
37049 swig_type_info
**types_initial
) {
37051 for (i
= 0; methods
[i
].ml_name
; ++i
) {
37052 const char *c
= methods
[i
].ml_doc
;
37053 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
37055 swig_const_info
*ci
= 0;
37056 const char *name
= c
+ 10;
37057 for (j
= 0; const_table
[j
].type
; ++j
) {
37058 if (strncmp(const_table
[j
].name
, name
,
37059 strlen(const_table
[j
].name
)) == 0) {
37060 ci
= &(const_table
[j
]);
37065 size_t shift
= (ci
->ptype
) - types
;
37066 swig_type_info
*ty
= types_initial
[shift
];
37067 size_t ldoc
= (c
- methods
[i
].ml_doc
);
37068 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
37069 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
37072 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
37074 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
37076 strncpy(buff
, "swig_ptr: ", 10);
37078 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
37079 methods
[i
].ml_doc
= ndoc
;
37091 /* -----------------------------------------------------------------------------*
37092 * Partial Init method
37093 * -----------------------------------------------------------------------------*/
37098 SWIGEXPORT
void SWIG_init(void) {
37101 /* Fix SwigMethods to carry the callback ptrs when needed */
37102 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
37104 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
37105 d
= PyModule_GetDict(m
);
37107 SWIG_InitializeModule(0);
37108 SWIG_InstallConstants(d
,swig_const_table
);
37111 SWIG_Python_SetConstant(d
, "C2S_NAME",SWIG_From_int(static_cast< int >(wxC2S_NAME
)));
37112 SWIG_Python_SetConstant(d
, "C2S_CSS_SYNTAX",SWIG_From_int(static_cast< int >(wxC2S_CSS_SYNTAX
)));
37113 SWIG_Python_SetConstant(d
, "C2S_HTML_SYNTAX",SWIG_From_int(static_cast< int >(wxC2S_HTML_SYNTAX
)));
37114 SWIG_Python_SetConstant(d
, "ALPHA_TRANSPARENT",SWIG_From_int(static_cast< int >(wxALPHA_TRANSPARENT
)));
37115 SWIG_Python_SetConstant(d
, "ALPHA_OPAQUE",SWIG_From_int(static_cast< int >(wxALPHA_OPAQUE
)));
37116 SWIG_Python_SetConstant(d
, "OutRegion",SWIG_From_int(static_cast< int >(wxOutRegion
)));
37117 SWIG_Python_SetConstant(d
, "PartRegion",SWIG_From_int(static_cast< int >(wxPartRegion
)));
37118 SWIG_Python_SetConstant(d
, "InRegion",SWIG_From_int(static_cast< int >(wxInRegion
)));
37119 SWIG_Python_SetConstant(d
, "FONTFAMILY_DEFAULT",SWIG_From_int(static_cast< int >(wxFONTFAMILY_DEFAULT
)));
37120 SWIG_Python_SetConstant(d
, "FONTFAMILY_DECORATIVE",SWIG_From_int(static_cast< int >(wxFONTFAMILY_DECORATIVE
)));
37121 SWIG_Python_SetConstant(d
, "FONTFAMILY_ROMAN",SWIG_From_int(static_cast< int >(wxFONTFAMILY_ROMAN
)));
37122 SWIG_Python_SetConstant(d
, "FONTFAMILY_SCRIPT",SWIG_From_int(static_cast< int >(wxFONTFAMILY_SCRIPT
)));
37123 SWIG_Python_SetConstant(d
, "FONTFAMILY_SWISS",SWIG_From_int(static_cast< int >(wxFONTFAMILY_SWISS
)));
37124 SWIG_Python_SetConstant(d
, "FONTFAMILY_MODERN",SWIG_From_int(static_cast< int >(wxFONTFAMILY_MODERN
)));
37125 SWIG_Python_SetConstant(d
, "FONTFAMILY_TELETYPE",SWIG_From_int(static_cast< int >(wxFONTFAMILY_TELETYPE
)));
37126 SWIG_Python_SetConstant(d
, "FONTFAMILY_MAX",SWIG_From_int(static_cast< int >(wxFONTFAMILY_MAX
)));
37127 SWIG_Python_SetConstant(d
, "FONTFAMILY_UNKNOWN",SWIG_From_int(static_cast< int >(wxFONTFAMILY_UNKNOWN
)));
37128 SWIG_Python_SetConstant(d
, "FONTSTYLE_NORMAL",SWIG_From_int(static_cast< int >(wxFONTSTYLE_NORMAL
)));
37129 SWIG_Python_SetConstant(d
, "FONTSTYLE_ITALIC",SWIG_From_int(static_cast< int >(wxFONTSTYLE_ITALIC
)));
37130 SWIG_Python_SetConstant(d
, "FONTSTYLE_SLANT",SWIG_From_int(static_cast< int >(wxFONTSTYLE_SLANT
)));
37131 SWIG_Python_SetConstant(d
, "FONTSTYLE_MAX",SWIG_From_int(static_cast< int >(wxFONTSTYLE_MAX
)));
37132 SWIG_Python_SetConstant(d
, "FONTWEIGHT_NORMAL",SWIG_From_int(static_cast< int >(wxFONTWEIGHT_NORMAL
)));
37133 SWIG_Python_SetConstant(d
, "FONTWEIGHT_LIGHT",SWIG_From_int(static_cast< int >(wxFONTWEIGHT_LIGHT
)));
37134 SWIG_Python_SetConstant(d
, "FONTWEIGHT_BOLD",SWIG_From_int(static_cast< int >(wxFONTWEIGHT_BOLD
)));
37135 SWIG_Python_SetConstant(d
, "FONTWEIGHT_MAX",SWIG_From_int(static_cast< int >(wxFONTWEIGHT_MAX
)));
37136 SWIG_Python_SetConstant(d
, "FONTFLAG_DEFAULT",SWIG_From_int(static_cast< int >(wxFONTFLAG_DEFAULT
)));
37137 SWIG_Python_SetConstant(d
, "FONTFLAG_ITALIC",SWIG_From_int(static_cast< int >(wxFONTFLAG_ITALIC
)));
37138 SWIG_Python_SetConstant(d
, "FONTFLAG_SLANT",SWIG_From_int(static_cast< int >(wxFONTFLAG_SLANT
)));
37139 SWIG_Python_SetConstant(d
, "FONTFLAG_LIGHT",SWIG_From_int(static_cast< int >(wxFONTFLAG_LIGHT
)));
37140 SWIG_Python_SetConstant(d
, "FONTFLAG_BOLD",SWIG_From_int(static_cast< int >(wxFONTFLAG_BOLD
)));
37141 SWIG_Python_SetConstant(d
, "FONTFLAG_ANTIALIASED",SWIG_From_int(static_cast< int >(wxFONTFLAG_ANTIALIASED
)));
37142 SWIG_Python_SetConstant(d
, "FONTFLAG_NOT_ANTIALIASED",SWIG_From_int(static_cast< int >(wxFONTFLAG_NOT_ANTIALIASED
)));
37143 SWIG_Python_SetConstant(d
, "FONTFLAG_UNDERLINED",SWIG_From_int(static_cast< int >(wxFONTFLAG_UNDERLINED
)));
37144 SWIG_Python_SetConstant(d
, "FONTFLAG_STRIKETHROUGH",SWIG_From_int(static_cast< int >(wxFONTFLAG_STRIKETHROUGH
)));
37145 SWIG_Python_SetConstant(d
, "FONTFLAG_MASK",SWIG_From_int(static_cast< int >(wxFONTFLAG_MASK
)));
37146 SWIG_Python_SetConstant(d
, "FONTENCODING_SYSTEM",SWIG_From_int(static_cast< int >(wxFONTENCODING_SYSTEM
)));
37147 SWIG_Python_SetConstant(d
, "FONTENCODING_DEFAULT",SWIG_From_int(static_cast< int >(wxFONTENCODING_DEFAULT
)));
37148 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_1",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_1
)));
37149 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_2",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_2
)));
37150 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_3",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_3
)));
37151 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_4",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_4
)));
37152 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_5",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_5
)));
37153 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_6",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_6
)));
37154 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_7",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_7
)));
37155 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_8",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_8
)));
37156 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_9",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_9
)));
37157 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_10",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_10
)));
37158 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_11",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_11
)));
37159 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_12",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_12
)));
37160 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_13",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_13
)));
37161 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_14",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_14
)));
37162 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_15",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_15
)));
37163 SWIG_Python_SetConstant(d
, "FONTENCODING_ISO8859_MAX",SWIG_From_int(static_cast< int >(wxFONTENCODING_ISO8859_MAX
)));
37164 SWIG_Python_SetConstant(d
, "FONTENCODING_KOI8",SWIG_From_int(static_cast< int >(wxFONTENCODING_KOI8
)));
37165 SWIG_Python_SetConstant(d
, "FONTENCODING_KOI8_U",SWIG_From_int(static_cast< int >(wxFONTENCODING_KOI8_U
)));
37166 SWIG_Python_SetConstant(d
, "FONTENCODING_ALTERNATIVE",SWIG_From_int(static_cast< int >(wxFONTENCODING_ALTERNATIVE
)));
37167 SWIG_Python_SetConstant(d
, "FONTENCODING_BULGARIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_BULGARIAN
)));
37168 SWIG_Python_SetConstant(d
, "FONTENCODING_CP437",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP437
)));
37169 SWIG_Python_SetConstant(d
, "FONTENCODING_CP850",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP850
)));
37170 SWIG_Python_SetConstant(d
, "FONTENCODING_CP852",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP852
)));
37171 SWIG_Python_SetConstant(d
, "FONTENCODING_CP855",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP855
)));
37172 SWIG_Python_SetConstant(d
, "FONTENCODING_CP866",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP866
)));
37173 SWIG_Python_SetConstant(d
, "FONTENCODING_CP874",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP874
)));
37174 SWIG_Python_SetConstant(d
, "FONTENCODING_CP932",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP932
)));
37175 SWIG_Python_SetConstant(d
, "FONTENCODING_CP936",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP936
)));
37176 SWIG_Python_SetConstant(d
, "FONTENCODING_CP949",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP949
)));
37177 SWIG_Python_SetConstant(d
, "FONTENCODING_CP950",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP950
)));
37178 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1250",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1250
)));
37179 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1251",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1251
)));
37180 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1252",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1252
)));
37181 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1253",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1253
)));
37182 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1254",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1254
)));
37183 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1255",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1255
)));
37184 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1256",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1256
)));
37185 SWIG_Python_SetConstant(d
, "FONTENCODING_CP1257",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP1257
)));
37186 SWIG_Python_SetConstant(d
, "FONTENCODING_CP12_MAX",SWIG_From_int(static_cast< int >(wxFONTENCODING_CP12_MAX
)));
37187 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF7",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF7
)));
37188 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF8",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF8
)));
37189 SWIG_Python_SetConstant(d
, "FONTENCODING_EUC_JP",SWIG_From_int(static_cast< int >(wxFONTENCODING_EUC_JP
)));
37190 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF16BE",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF16BE
)));
37191 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF16LE",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF16LE
)));
37192 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF32BE",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF32BE
)));
37193 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF32LE",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF32LE
)));
37194 SWIG_Python_SetConstant(d
, "FONTENCODING_MACROMAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACROMAN
)));
37195 SWIG_Python_SetConstant(d
, "FONTENCODING_MACJAPANESE",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACJAPANESE
)));
37196 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCHINESETRAD",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCHINESETRAD
)));
37197 SWIG_Python_SetConstant(d
, "FONTENCODING_MACKOREAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACKOREAN
)));
37198 SWIG_Python_SetConstant(d
, "FONTENCODING_MACARABIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACARABIC
)));
37199 SWIG_Python_SetConstant(d
, "FONTENCODING_MACHEBREW",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACHEBREW
)));
37200 SWIG_Python_SetConstant(d
, "FONTENCODING_MACGREEK",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACGREEK
)));
37201 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCYRILLIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCYRILLIC
)));
37202 SWIG_Python_SetConstant(d
, "FONTENCODING_MACDEVANAGARI",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACDEVANAGARI
)));
37203 SWIG_Python_SetConstant(d
, "FONTENCODING_MACGURMUKHI",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACGURMUKHI
)));
37204 SWIG_Python_SetConstant(d
, "FONTENCODING_MACGUJARATI",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACGUJARATI
)));
37205 SWIG_Python_SetConstant(d
, "FONTENCODING_MACORIYA",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACORIYA
)));
37206 SWIG_Python_SetConstant(d
, "FONTENCODING_MACBENGALI",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACBENGALI
)));
37207 SWIG_Python_SetConstant(d
, "FONTENCODING_MACTAMIL",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACTAMIL
)));
37208 SWIG_Python_SetConstant(d
, "FONTENCODING_MACTELUGU",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACTELUGU
)));
37209 SWIG_Python_SetConstant(d
, "FONTENCODING_MACKANNADA",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACKANNADA
)));
37210 SWIG_Python_SetConstant(d
, "FONTENCODING_MACMALAJALAM",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACMALAJALAM
)));
37211 SWIG_Python_SetConstant(d
, "FONTENCODING_MACSINHALESE",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACSINHALESE
)));
37212 SWIG_Python_SetConstant(d
, "FONTENCODING_MACBURMESE",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACBURMESE
)));
37213 SWIG_Python_SetConstant(d
, "FONTENCODING_MACKHMER",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACKHMER
)));
37214 SWIG_Python_SetConstant(d
, "FONTENCODING_MACTHAI",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACTHAI
)));
37215 SWIG_Python_SetConstant(d
, "FONTENCODING_MACLAOTIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACLAOTIAN
)));
37216 SWIG_Python_SetConstant(d
, "FONTENCODING_MACGEORGIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACGEORGIAN
)));
37217 SWIG_Python_SetConstant(d
, "FONTENCODING_MACARMENIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACARMENIAN
)));
37218 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCHINESESIMP",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCHINESESIMP
)));
37219 SWIG_Python_SetConstant(d
, "FONTENCODING_MACTIBETAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACTIBETAN
)));
37220 SWIG_Python_SetConstant(d
, "FONTENCODING_MACMONGOLIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACMONGOLIAN
)));
37221 SWIG_Python_SetConstant(d
, "FONTENCODING_MACETHIOPIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACETHIOPIC
)));
37222 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCENTRALEUR",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCENTRALEUR
)));
37223 SWIG_Python_SetConstant(d
, "FONTENCODING_MACVIATNAMESE",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACVIATNAMESE
)));
37224 SWIG_Python_SetConstant(d
, "FONTENCODING_MACARABICEXT",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACARABICEXT
)));
37225 SWIG_Python_SetConstant(d
, "FONTENCODING_MACSYMBOL",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACSYMBOL
)));
37226 SWIG_Python_SetConstant(d
, "FONTENCODING_MACDINGBATS",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACDINGBATS
)));
37227 SWIG_Python_SetConstant(d
, "FONTENCODING_MACTURKISH",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACTURKISH
)));
37228 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCROATIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCROATIAN
)));
37229 SWIG_Python_SetConstant(d
, "FONTENCODING_MACICELANDIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACICELANDIC
)));
37230 SWIG_Python_SetConstant(d
, "FONTENCODING_MACROMANIAN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACROMANIAN
)));
37231 SWIG_Python_SetConstant(d
, "FONTENCODING_MACCELTIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACCELTIC
)));
37232 SWIG_Python_SetConstant(d
, "FONTENCODING_MACGAELIC",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACGAELIC
)));
37233 SWIG_Python_SetConstant(d
, "FONTENCODING_MACKEYBOARD",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACKEYBOARD
)));
37234 SWIG_Python_SetConstant(d
, "FONTENCODING_MACMIN",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACMIN
)));
37235 SWIG_Python_SetConstant(d
, "FONTENCODING_MACMAX",SWIG_From_int(static_cast< int >(wxFONTENCODING_MACMAX
)));
37236 SWIG_Python_SetConstant(d
, "FONTENCODING_MAX",SWIG_From_int(static_cast< int >(wxFONTENCODING_MAX
)));
37237 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF16",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF16
)));
37238 SWIG_Python_SetConstant(d
, "FONTENCODING_UTF32",SWIG_From_int(static_cast< int >(wxFONTENCODING_UTF32
)));
37239 SWIG_Python_SetConstant(d
, "FONTENCODING_UNICODE",SWIG_From_int(static_cast< int >(wxFONTENCODING_UNICODE
)));
37240 SWIG_Python_SetConstant(d
, "FONTENCODING_GB2312",SWIG_From_int(static_cast< int >(wxFONTENCODING_GB2312
)));
37241 SWIG_Python_SetConstant(d
, "FONTENCODING_BIG5",SWIG_From_int(static_cast< int >(wxFONTENCODING_BIG5
)));
37242 SWIG_Python_SetConstant(d
, "FONTENCODING_SHIFT_JIS",SWIG_From_int(static_cast< int >(wxFONTENCODING_SHIFT_JIS
)));
37244 wxPyPtrTypeMap_Add("wxFontEnumerator", "wxPyFontEnumerator");
37246 SWIG_Python_SetConstant(d
, "LANGUAGE_DEFAULT",SWIG_From_int(static_cast< int >(wxLANGUAGE_DEFAULT
)));
37247 SWIG_Python_SetConstant(d
, "LANGUAGE_UNKNOWN",SWIG_From_int(static_cast< int >(wxLANGUAGE_UNKNOWN
)));
37248 SWIG_Python_SetConstant(d
, "LANGUAGE_ABKHAZIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ABKHAZIAN
)));
37249 SWIG_Python_SetConstant(d
, "LANGUAGE_AFAR",SWIG_From_int(static_cast< int >(wxLANGUAGE_AFAR
)));
37250 SWIG_Python_SetConstant(d
, "LANGUAGE_AFRIKAANS",SWIG_From_int(static_cast< int >(wxLANGUAGE_AFRIKAANS
)));
37251 SWIG_Python_SetConstant(d
, "LANGUAGE_ALBANIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ALBANIAN
)));
37252 SWIG_Python_SetConstant(d
, "LANGUAGE_AMHARIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_AMHARIC
)));
37253 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC
)));
37254 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_ALGERIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_ALGERIA
)));
37255 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_BAHRAIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_BAHRAIN
)));
37256 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_EGYPT",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_EGYPT
)));
37257 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_IRAQ",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_IRAQ
)));
37258 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_JORDAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_JORDAN
)));
37259 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_KUWAIT",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_KUWAIT
)));
37260 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_LEBANON",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_LEBANON
)));
37261 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_LIBYA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_LIBYA
)));
37262 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_MOROCCO",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_MOROCCO
)));
37263 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_OMAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_OMAN
)));
37264 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_QATAR",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_QATAR
)));
37265 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_SAUDI_ARABIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_SAUDI_ARABIA
)));
37266 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_SUDAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_SUDAN
)));
37267 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_SYRIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_SYRIA
)));
37268 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_TUNISIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_TUNISIA
)));
37269 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_UAE",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_UAE
)));
37270 SWIG_Python_SetConstant(d
, "LANGUAGE_ARABIC_YEMEN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARABIC_YEMEN
)));
37271 SWIG_Python_SetConstant(d
, "LANGUAGE_ARMENIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ARMENIAN
)));
37272 SWIG_Python_SetConstant(d
, "LANGUAGE_ASSAMESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_ASSAMESE
)));
37273 SWIG_Python_SetConstant(d
, "LANGUAGE_AYMARA",SWIG_From_int(static_cast< int >(wxLANGUAGE_AYMARA
)));
37274 SWIG_Python_SetConstant(d
, "LANGUAGE_AZERI",SWIG_From_int(static_cast< int >(wxLANGUAGE_AZERI
)));
37275 SWIG_Python_SetConstant(d
, "LANGUAGE_AZERI_CYRILLIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_AZERI_CYRILLIC
)));
37276 SWIG_Python_SetConstant(d
, "LANGUAGE_AZERI_LATIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_AZERI_LATIN
)));
37277 SWIG_Python_SetConstant(d
, "LANGUAGE_BASHKIR",SWIG_From_int(static_cast< int >(wxLANGUAGE_BASHKIR
)));
37278 SWIG_Python_SetConstant(d
, "LANGUAGE_BASQUE",SWIG_From_int(static_cast< int >(wxLANGUAGE_BASQUE
)));
37279 SWIG_Python_SetConstant(d
, "LANGUAGE_BELARUSIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_BELARUSIAN
)));
37280 SWIG_Python_SetConstant(d
, "LANGUAGE_BENGALI",SWIG_From_int(static_cast< int >(wxLANGUAGE_BENGALI
)));
37281 SWIG_Python_SetConstant(d
, "LANGUAGE_BHUTANI",SWIG_From_int(static_cast< int >(wxLANGUAGE_BHUTANI
)));
37282 SWIG_Python_SetConstant(d
, "LANGUAGE_BIHARI",SWIG_From_int(static_cast< int >(wxLANGUAGE_BIHARI
)));
37283 SWIG_Python_SetConstant(d
, "LANGUAGE_BISLAMA",SWIG_From_int(static_cast< int >(wxLANGUAGE_BISLAMA
)));
37284 SWIG_Python_SetConstant(d
, "LANGUAGE_BRETON",SWIG_From_int(static_cast< int >(wxLANGUAGE_BRETON
)));
37285 SWIG_Python_SetConstant(d
, "LANGUAGE_BULGARIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_BULGARIAN
)));
37286 SWIG_Python_SetConstant(d
, "LANGUAGE_BURMESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_BURMESE
)));
37287 SWIG_Python_SetConstant(d
, "LANGUAGE_CAMBODIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_CAMBODIAN
)));
37288 SWIG_Python_SetConstant(d
, "LANGUAGE_CATALAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_CATALAN
)));
37289 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE
)));
37290 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_SIMPLIFIED",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_SIMPLIFIED
)));
37291 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_TRADITIONAL",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_TRADITIONAL
)));
37292 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_HONGKONG",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_HONGKONG
)));
37293 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_MACAU",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_MACAU
)));
37294 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_SINGAPORE",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_SINGAPORE
)));
37295 SWIG_Python_SetConstant(d
, "LANGUAGE_CHINESE_TAIWAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_CHINESE_TAIWAN
)));
37296 SWIG_Python_SetConstant(d
, "LANGUAGE_CORSICAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_CORSICAN
)));
37297 SWIG_Python_SetConstant(d
, "LANGUAGE_CROATIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_CROATIAN
)));
37298 SWIG_Python_SetConstant(d
, "LANGUAGE_CZECH",SWIG_From_int(static_cast< int >(wxLANGUAGE_CZECH
)));
37299 SWIG_Python_SetConstant(d
, "LANGUAGE_DANISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_DANISH
)));
37300 SWIG_Python_SetConstant(d
, "LANGUAGE_DUTCH",SWIG_From_int(static_cast< int >(wxLANGUAGE_DUTCH
)));
37301 SWIG_Python_SetConstant(d
, "LANGUAGE_DUTCH_BELGIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_DUTCH_BELGIAN
)));
37302 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH
)));
37303 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_UK",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_UK
)));
37304 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_US",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_US
)));
37305 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_AUSTRALIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_AUSTRALIA
)));
37306 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_BELIZE",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_BELIZE
)));
37307 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_BOTSWANA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_BOTSWANA
)));
37308 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_CANADA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_CANADA
)));
37309 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_CARIBBEAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_CARIBBEAN
)));
37310 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_DENMARK",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_DENMARK
)));
37311 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_EIRE",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_EIRE
)));
37312 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_JAMAICA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_JAMAICA
)));
37313 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_NEW_ZEALAND",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_NEW_ZEALAND
)));
37314 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_PHILIPPINES",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_PHILIPPINES
)));
37315 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_SOUTH_AFRICA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_SOUTH_AFRICA
)));
37316 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_TRINIDAD",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_TRINIDAD
)));
37317 SWIG_Python_SetConstant(d
, "LANGUAGE_ENGLISH_ZIMBABWE",SWIG_From_int(static_cast< int >(wxLANGUAGE_ENGLISH_ZIMBABWE
)));
37318 SWIG_Python_SetConstant(d
, "LANGUAGE_ESPERANTO",SWIG_From_int(static_cast< int >(wxLANGUAGE_ESPERANTO
)));
37319 SWIG_Python_SetConstant(d
, "LANGUAGE_ESTONIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ESTONIAN
)));
37320 SWIG_Python_SetConstant(d
, "LANGUAGE_FAEROESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_FAEROESE
)));
37321 SWIG_Python_SetConstant(d
, "LANGUAGE_FARSI",SWIG_From_int(static_cast< int >(wxLANGUAGE_FARSI
)));
37322 SWIG_Python_SetConstant(d
, "LANGUAGE_FIJI",SWIG_From_int(static_cast< int >(wxLANGUAGE_FIJI
)));
37323 SWIG_Python_SetConstant(d
, "LANGUAGE_FINNISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_FINNISH
)));
37324 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH
)));
37325 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH_BELGIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH_BELGIAN
)));
37326 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH_CANADIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH_CANADIAN
)));
37327 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH_LUXEMBOURG",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH_LUXEMBOURG
)));
37328 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH_MONACO",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH_MONACO
)));
37329 SWIG_Python_SetConstant(d
, "LANGUAGE_FRENCH_SWISS",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRENCH_SWISS
)));
37330 SWIG_Python_SetConstant(d
, "LANGUAGE_FRISIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_FRISIAN
)));
37331 SWIG_Python_SetConstant(d
, "LANGUAGE_GALICIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_GALICIAN
)));
37332 SWIG_Python_SetConstant(d
, "LANGUAGE_GEORGIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_GEORGIAN
)));
37333 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN
)));
37334 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN_AUSTRIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN_AUSTRIAN
)));
37335 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN_BELGIUM",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN_BELGIUM
)));
37336 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN_LIECHTENSTEIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN_LIECHTENSTEIN
)));
37337 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN_LUXEMBOURG",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN_LUXEMBOURG
)));
37338 SWIG_Python_SetConstant(d
, "LANGUAGE_GERMAN_SWISS",SWIG_From_int(static_cast< int >(wxLANGUAGE_GERMAN_SWISS
)));
37339 SWIG_Python_SetConstant(d
, "LANGUAGE_GREEK",SWIG_From_int(static_cast< int >(wxLANGUAGE_GREEK
)));
37340 SWIG_Python_SetConstant(d
, "LANGUAGE_GREENLANDIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_GREENLANDIC
)));
37341 SWIG_Python_SetConstant(d
, "LANGUAGE_GUARANI",SWIG_From_int(static_cast< int >(wxLANGUAGE_GUARANI
)));
37342 SWIG_Python_SetConstant(d
, "LANGUAGE_GUJARATI",SWIG_From_int(static_cast< int >(wxLANGUAGE_GUJARATI
)));
37343 SWIG_Python_SetConstant(d
, "LANGUAGE_HAUSA",SWIG_From_int(static_cast< int >(wxLANGUAGE_HAUSA
)));
37344 SWIG_Python_SetConstant(d
, "LANGUAGE_HEBREW",SWIG_From_int(static_cast< int >(wxLANGUAGE_HEBREW
)));
37345 SWIG_Python_SetConstant(d
, "LANGUAGE_HINDI",SWIG_From_int(static_cast< int >(wxLANGUAGE_HINDI
)));
37346 SWIG_Python_SetConstant(d
, "LANGUAGE_HUNGARIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_HUNGARIAN
)));
37347 SWIG_Python_SetConstant(d
, "LANGUAGE_ICELANDIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_ICELANDIC
)));
37348 SWIG_Python_SetConstant(d
, "LANGUAGE_INDONESIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_INDONESIAN
)));
37349 SWIG_Python_SetConstant(d
, "LANGUAGE_INTERLINGUA",SWIG_From_int(static_cast< int >(wxLANGUAGE_INTERLINGUA
)));
37350 SWIG_Python_SetConstant(d
, "LANGUAGE_INTERLINGUE",SWIG_From_int(static_cast< int >(wxLANGUAGE_INTERLINGUE
)));
37351 SWIG_Python_SetConstant(d
, "LANGUAGE_INUKTITUT",SWIG_From_int(static_cast< int >(wxLANGUAGE_INUKTITUT
)));
37352 SWIG_Python_SetConstant(d
, "LANGUAGE_INUPIAK",SWIG_From_int(static_cast< int >(wxLANGUAGE_INUPIAK
)));
37353 SWIG_Python_SetConstant(d
, "LANGUAGE_IRISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_IRISH
)));
37354 SWIG_Python_SetConstant(d
, "LANGUAGE_ITALIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ITALIAN
)));
37355 SWIG_Python_SetConstant(d
, "LANGUAGE_ITALIAN_SWISS",SWIG_From_int(static_cast< int >(wxLANGUAGE_ITALIAN_SWISS
)));
37356 SWIG_Python_SetConstant(d
, "LANGUAGE_JAPANESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_JAPANESE
)));
37357 SWIG_Python_SetConstant(d
, "LANGUAGE_JAVANESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_JAVANESE
)));
37358 SWIG_Python_SetConstant(d
, "LANGUAGE_KANNADA",SWIG_From_int(static_cast< int >(wxLANGUAGE_KANNADA
)));
37359 SWIG_Python_SetConstant(d
, "LANGUAGE_KASHMIRI",SWIG_From_int(static_cast< int >(wxLANGUAGE_KASHMIRI
)));
37360 SWIG_Python_SetConstant(d
, "LANGUAGE_KASHMIRI_INDIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_KASHMIRI_INDIA
)));
37361 SWIG_Python_SetConstant(d
, "LANGUAGE_KAZAKH",SWIG_From_int(static_cast< int >(wxLANGUAGE_KAZAKH
)));
37362 SWIG_Python_SetConstant(d
, "LANGUAGE_KERNEWEK",SWIG_From_int(static_cast< int >(wxLANGUAGE_KERNEWEK
)));
37363 SWIG_Python_SetConstant(d
, "LANGUAGE_KINYARWANDA",SWIG_From_int(static_cast< int >(wxLANGUAGE_KINYARWANDA
)));
37364 SWIG_Python_SetConstant(d
, "LANGUAGE_KIRGHIZ",SWIG_From_int(static_cast< int >(wxLANGUAGE_KIRGHIZ
)));
37365 SWIG_Python_SetConstant(d
, "LANGUAGE_KIRUNDI",SWIG_From_int(static_cast< int >(wxLANGUAGE_KIRUNDI
)));
37366 SWIG_Python_SetConstant(d
, "LANGUAGE_KONKANI",SWIG_From_int(static_cast< int >(wxLANGUAGE_KONKANI
)));
37367 SWIG_Python_SetConstant(d
, "LANGUAGE_KOREAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_KOREAN
)));
37368 SWIG_Python_SetConstant(d
, "LANGUAGE_KURDISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_KURDISH
)));
37369 SWIG_Python_SetConstant(d
, "LANGUAGE_LAOTHIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_LAOTHIAN
)));
37370 SWIG_Python_SetConstant(d
, "LANGUAGE_LATIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_LATIN
)));
37371 SWIG_Python_SetConstant(d
, "LANGUAGE_LATVIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_LATVIAN
)));
37372 SWIG_Python_SetConstant(d
, "LANGUAGE_LINGALA",SWIG_From_int(static_cast< int >(wxLANGUAGE_LINGALA
)));
37373 SWIG_Python_SetConstant(d
, "LANGUAGE_LITHUANIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_LITHUANIAN
)));
37374 SWIG_Python_SetConstant(d
, "LANGUAGE_MACEDONIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_MACEDONIAN
)));
37375 SWIG_Python_SetConstant(d
, "LANGUAGE_MALAGASY",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALAGASY
)));
37376 SWIG_Python_SetConstant(d
, "LANGUAGE_MALAY",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALAY
)));
37377 SWIG_Python_SetConstant(d
, "LANGUAGE_MALAYALAM",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALAYALAM
)));
37378 SWIG_Python_SetConstant(d
, "LANGUAGE_MALAY_BRUNEI_DARUSSALAM",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALAY_BRUNEI_DARUSSALAM
)));
37379 SWIG_Python_SetConstant(d
, "LANGUAGE_MALAY_MALAYSIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALAY_MALAYSIA
)));
37380 SWIG_Python_SetConstant(d
, "LANGUAGE_MALTESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_MALTESE
)));
37381 SWIG_Python_SetConstant(d
, "LANGUAGE_MANIPURI",SWIG_From_int(static_cast< int >(wxLANGUAGE_MANIPURI
)));
37382 SWIG_Python_SetConstant(d
, "LANGUAGE_MAORI",SWIG_From_int(static_cast< int >(wxLANGUAGE_MAORI
)));
37383 SWIG_Python_SetConstant(d
, "LANGUAGE_MARATHI",SWIG_From_int(static_cast< int >(wxLANGUAGE_MARATHI
)));
37384 SWIG_Python_SetConstant(d
, "LANGUAGE_MOLDAVIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_MOLDAVIAN
)));
37385 SWIG_Python_SetConstant(d
, "LANGUAGE_MONGOLIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_MONGOLIAN
)));
37386 SWIG_Python_SetConstant(d
, "LANGUAGE_NAURU",SWIG_From_int(static_cast< int >(wxLANGUAGE_NAURU
)));
37387 SWIG_Python_SetConstant(d
, "LANGUAGE_NEPALI",SWIG_From_int(static_cast< int >(wxLANGUAGE_NEPALI
)));
37388 SWIG_Python_SetConstant(d
, "LANGUAGE_NEPALI_INDIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_NEPALI_INDIA
)));
37389 SWIG_Python_SetConstant(d
, "LANGUAGE_NORWEGIAN_BOKMAL",SWIG_From_int(static_cast< int >(wxLANGUAGE_NORWEGIAN_BOKMAL
)));
37390 SWIG_Python_SetConstant(d
, "LANGUAGE_NORWEGIAN_NYNORSK",SWIG_From_int(static_cast< int >(wxLANGUAGE_NORWEGIAN_NYNORSK
)));
37391 SWIG_Python_SetConstant(d
, "LANGUAGE_OCCITAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_OCCITAN
)));
37392 SWIG_Python_SetConstant(d
, "LANGUAGE_ORIYA",SWIG_From_int(static_cast< int >(wxLANGUAGE_ORIYA
)));
37393 SWIG_Python_SetConstant(d
, "LANGUAGE_OROMO",SWIG_From_int(static_cast< int >(wxLANGUAGE_OROMO
)));
37394 SWIG_Python_SetConstant(d
, "LANGUAGE_PASHTO",SWIG_From_int(static_cast< int >(wxLANGUAGE_PASHTO
)));
37395 SWIG_Python_SetConstant(d
, "LANGUAGE_POLISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_POLISH
)));
37396 SWIG_Python_SetConstant(d
, "LANGUAGE_PORTUGUESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_PORTUGUESE
)));
37397 SWIG_Python_SetConstant(d
, "LANGUAGE_PORTUGUESE_BRAZILIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_PORTUGUESE_BRAZILIAN
)));
37398 SWIG_Python_SetConstant(d
, "LANGUAGE_PUNJABI",SWIG_From_int(static_cast< int >(wxLANGUAGE_PUNJABI
)));
37399 SWIG_Python_SetConstant(d
, "LANGUAGE_QUECHUA",SWIG_From_int(static_cast< int >(wxLANGUAGE_QUECHUA
)));
37400 SWIG_Python_SetConstant(d
, "LANGUAGE_RHAETO_ROMANCE",SWIG_From_int(static_cast< int >(wxLANGUAGE_RHAETO_ROMANCE
)));
37401 SWIG_Python_SetConstant(d
, "LANGUAGE_ROMANIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_ROMANIAN
)));
37402 SWIG_Python_SetConstant(d
, "LANGUAGE_RUSSIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_RUSSIAN
)));
37403 SWIG_Python_SetConstant(d
, "LANGUAGE_RUSSIAN_UKRAINE",SWIG_From_int(static_cast< int >(wxLANGUAGE_RUSSIAN_UKRAINE
)));
37404 SWIG_Python_SetConstant(d
, "LANGUAGE_SAMOAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SAMOAN
)));
37405 SWIG_Python_SetConstant(d
, "LANGUAGE_SANGHO",SWIG_From_int(static_cast< int >(wxLANGUAGE_SANGHO
)));
37406 SWIG_Python_SetConstant(d
, "LANGUAGE_SANSKRIT",SWIG_From_int(static_cast< int >(wxLANGUAGE_SANSKRIT
)));
37407 SWIG_Python_SetConstant(d
, "LANGUAGE_SCOTS_GAELIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_SCOTS_GAELIC
)));
37408 SWIG_Python_SetConstant(d
, "LANGUAGE_SERBIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SERBIAN
)));
37409 SWIG_Python_SetConstant(d
, "LANGUAGE_SERBIAN_CYRILLIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_SERBIAN_CYRILLIC
)));
37410 SWIG_Python_SetConstant(d
, "LANGUAGE_SERBIAN_LATIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SERBIAN_LATIN
)));
37411 SWIG_Python_SetConstant(d
, "LANGUAGE_SERBO_CROATIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SERBO_CROATIAN
)));
37412 SWIG_Python_SetConstant(d
, "LANGUAGE_SESOTHO",SWIG_From_int(static_cast< int >(wxLANGUAGE_SESOTHO
)));
37413 SWIG_Python_SetConstant(d
, "LANGUAGE_SETSWANA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SETSWANA
)));
37414 SWIG_Python_SetConstant(d
, "LANGUAGE_SHONA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SHONA
)));
37415 SWIG_Python_SetConstant(d
, "LANGUAGE_SINDHI",SWIG_From_int(static_cast< int >(wxLANGUAGE_SINDHI
)));
37416 SWIG_Python_SetConstant(d
, "LANGUAGE_SINHALESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_SINHALESE
)));
37417 SWIG_Python_SetConstant(d
, "LANGUAGE_SISWATI",SWIG_From_int(static_cast< int >(wxLANGUAGE_SISWATI
)));
37418 SWIG_Python_SetConstant(d
, "LANGUAGE_SLOVAK",SWIG_From_int(static_cast< int >(wxLANGUAGE_SLOVAK
)));
37419 SWIG_Python_SetConstant(d
, "LANGUAGE_SLOVENIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SLOVENIAN
)));
37420 SWIG_Python_SetConstant(d
, "LANGUAGE_SOMALI",SWIG_From_int(static_cast< int >(wxLANGUAGE_SOMALI
)));
37421 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH
)));
37422 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_ARGENTINA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_ARGENTINA
)));
37423 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_BOLIVIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_BOLIVIA
)));
37424 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_CHILE",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_CHILE
)));
37425 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_COLOMBIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_COLOMBIA
)));
37426 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_COSTA_RICA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_COSTA_RICA
)));
37427 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_DOMINICAN_REPUBLIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_DOMINICAN_REPUBLIC
)));
37428 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_ECUADOR",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_ECUADOR
)));
37429 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_EL_SALVADOR",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_EL_SALVADOR
)));
37430 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_GUATEMALA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_GUATEMALA
)));
37431 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_HONDURAS",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_HONDURAS
)));
37432 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_MEXICAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_MEXICAN
)));
37433 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_MODERN",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_MODERN
)));
37434 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_NICARAGUA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_NICARAGUA
)));
37435 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_PANAMA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_PANAMA
)));
37436 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_PARAGUAY",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_PARAGUAY
)));
37437 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_PERU",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_PERU
)));
37438 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_PUERTO_RICO",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_PUERTO_RICO
)));
37439 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_URUGUAY",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_URUGUAY
)));
37440 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_US",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_US
)));
37441 SWIG_Python_SetConstant(d
, "LANGUAGE_SPANISH_VENEZUELA",SWIG_From_int(static_cast< int >(wxLANGUAGE_SPANISH_VENEZUELA
)));
37442 SWIG_Python_SetConstant(d
, "LANGUAGE_SUNDANESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_SUNDANESE
)));
37443 SWIG_Python_SetConstant(d
, "LANGUAGE_SWAHILI",SWIG_From_int(static_cast< int >(wxLANGUAGE_SWAHILI
)));
37444 SWIG_Python_SetConstant(d
, "LANGUAGE_SWEDISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_SWEDISH
)));
37445 SWIG_Python_SetConstant(d
, "LANGUAGE_SWEDISH_FINLAND",SWIG_From_int(static_cast< int >(wxLANGUAGE_SWEDISH_FINLAND
)));
37446 SWIG_Python_SetConstant(d
, "LANGUAGE_TAGALOG",SWIG_From_int(static_cast< int >(wxLANGUAGE_TAGALOG
)));
37447 SWIG_Python_SetConstant(d
, "LANGUAGE_TAJIK",SWIG_From_int(static_cast< int >(wxLANGUAGE_TAJIK
)));
37448 SWIG_Python_SetConstant(d
, "LANGUAGE_TAMIL",SWIG_From_int(static_cast< int >(wxLANGUAGE_TAMIL
)));
37449 SWIG_Python_SetConstant(d
, "LANGUAGE_TATAR",SWIG_From_int(static_cast< int >(wxLANGUAGE_TATAR
)));
37450 SWIG_Python_SetConstant(d
, "LANGUAGE_TELUGU",SWIG_From_int(static_cast< int >(wxLANGUAGE_TELUGU
)));
37451 SWIG_Python_SetConstant(d
, "LANGUAGE_THAI",SWIG_From_int(static_cast< int >(wxLANGUAGE_THAI
)));
37452 SWIG_Python_SetConstant(d
, "LANGUAGE_TIBETAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_TIBETAN
)));
37453 SWIG_Python_SetConstant(d
, "LANGUAGE_TIGRINYA",SWIG_From_int(static_cast< int >(wxLANGUAGE_TIGRINYA
)));
37454 SWIG_Python_SetConstant(d
, "LANGUAGE_TONGA",SWIG_From_int(static_cast< int >(wxLANGUAGE_TONGA
)));
37455 SWIG_Python_SetConstant(d
, "LANGUAGE_TSONGA",SWIG_From_int(static_cast< int >(wxLANGUAGE_TSONGA
)));
37456 SWIG_Python_SetConstant(d
, "LANGUAGE_TURKISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_TURKISH
)));
37457 SWIG_Python_SetConstant(d
, "LANGUAGE_TURKMEN",SWIG_From_int(static_cast< int >(wxLANGUAGE_TURKMEN
)));
37458 SWIG_Python_SetConstant(d
, "LANGUAGE_TWI",SWIG_From_int(static_cast< int >(wxLANGUAGE_TWI
)));
37459 SWIG_Python_SetConstant(d
, "LANGUAGE_UIGHUR",SWIG_From_int(static_cast< int >(wxLANGUAGE_UIGHUR
)));
37460 SWIG_Python_SetConstant(d
, "LANGUAGE_UKRAINIAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_UKRAINIAN
)));
37461 SWIG_Python_SetConstant(d
, "LANGUAGE_URDU",SWIG_From_int(static_cast< int >(wxLANGUAGE_URDU
)));
37462 SWIG_Python_SetConstant(d
, "LANGUAGE_URDU_INDIA",SWIG_From_int(static_cast< int >(wxLANGUAGE_URDU_INDIA
)));
37463 SWIG_Python_SetConstant(d
, "LANGUAGE_URDU_PAKISTAN",SWIG_From_int(static_cast< int >(wxLANGUAGE_URDU_PAKISTAN
)));
37464 SWIG_Python_SetConstant(d
, "LANGUAGE_UZBEK",SWIG_From_int(static_cast< int >(wxLANGUAGE_UZBEK
)));
37465 SWIG_Python_SetConstant(d
, "LANGUAGE_UZBEK_CYRILLIC",SWIG_From_int(static_cast< int >(wxLANGUAGE_UZBEK_CYRILLIC
)));
37466 SWIG_Python_SetConstant(d
, "LANGUAGE_UZBEK_LATIN",SWIG_From_int(static_cast< int >(wxLANGUAGE_UZBEK_LATIN
)));
37467 SWIG_Python_SetConstant(d
, "LANGUAGE_VIETNAMESE",SWIG_From_int(static_cast< int >(wxLANGUAGE_VIETNAMESE
)));
37468 SWIG_Python_SetConstant(d
, "LANGUAGE_VOLAPUK",SWIG_From_int(static_cast< int >(wxLANGUAGE_VOLAPUK
)));
37469 SWIG_Python_SetConstant(d
, "LANGUAGE_WELSH",SWIG_From_int(static_cast< int >(wxLANGUAGE_WELSH
)));
37470 SWIG_Python_SetConstant(d
, "LANGUAGE_WOLOF",SWIG_From_int(static_cast< int >(wxLANGUAGE_WOLOF
)));
37471 SWIG_Python_SetConstant(d
, "LANGUAGE_XHOSA",SWIG_From_int(static_cast< int >(wxLANGUAGE_XHOSA
)));
37472 SWIG_Python_SetConstant(d
, "LANGUAGE_YIDDISH",SWIG_From_int(static_cast< int >(wxLANGUAGE_YIDDISH
)));
37473 SWIG_Python_SetConstant(d
, "LANGUAGE_YORUBA",SWIG_From_int(static_cast< int >(wxLANGUAGE_YORUBA
)));
37474 SWIG_Python_SetConstant(d
, "LANGUAGE_ZHUANG",SWIG_From_int(static_cast< int >(wxLANGUAGE_ZHUANG
)));
37475 SWIG_Python_SetConstant(d
, "LANGUAGE_ZULU",SWIG_From_int(static_cast< int >(wxLANGUAGE_ZULU
)));
37476 SWIG_Python_SetConstant(d
, "LANGUAGE_USER_DEFINED",SWIG_From_int(static_cast< int >(wxLANGUAGE_USER_DEFINED
)));
37477 SWIG_Python_SetConstant(d
, "LOCALE_CAT_NUMBER",SWIG_From_int(static_cast< int >(wxLOCALE_CAT_NUMBER
)));
37478 SWIG_Python_SetConstant(d
, "LOCALE_CAT_DATE",SWIG_From_int(static_cast< int >(wxLOCALE_CAT_DATE
)));
37479 SWIG_Python_SetConstant(d
, "LOCALE_CAT_MONEY",SWIG_From_int(static_cast< int >(wxLOCALE_CAT_MONEY
)));
37480 SWIG_Python_SetConstant(d
, "LOCALE_CAT_MAX",SWIG_From_int(static_cast< int >(wxLOCALE_CAT_MAX
)));
37481 SWIG_Python_SetConstant(d
, "LOCALE_THOUSANDS_SEP",SWIG_From_int(static_cast< int >(wxLOCALE_THOUSANDS_SEP
)));
37482 SWIG_Python_SetConstant(d
, "LOCALE_DECIMAL_POINT",SWIG_From_int(static_cast< int >(wxLOCALE_DECIMAL_POINT
)));
37483 SWIG_Python_SetConstant(d
, "LOCALE_LOAD_DEFAULT",SWIG_From_int(static_cast< int >(wxLOCALE_LOAD_DEFAULT
)));
37484 SWIG_Python_SetConstant(d
, "LOCALE_CONV_ENCODING",SWIG_From_int(static_cast< int >(wxLOCALE_CONV_ENCODING
)));
37485 SWIG_Python_SetConstant(d
, "CONVERT_STRICT",SWIG_From_int(static_cast< int >(wxCONVERT_STRICT
)));
37486 SWIG_Python_SetConstant(d
, "CONVERT_SUBSTITUTE",SWIG_From_int(static_cast< int >(wxCONVERT_SUBSTITUTE
)));
37487 SWIG_Python_SetConstant(d
, "PLATFORM_CURRENT",SWIG_From_int(static_cast< int >(wxPLATFORM_CURRENT
)));
37488 SWIG_Python_SetConstant(d
, "PLATFORM_UNIX",SWIG_From_int(static_cast< int >(wxPLATFORM_UNIX
)));
37489 SWIG_Python_SetConstant(d
, "PLATFORM_WINDOWS",SWIG_From_int(static_cast< int >(wxPLATFORM_WINDOWS
)));
37490 SWIG_Python_SetConstant(d
, "PLATFORM_OS2",SWIG_From_int(static_cast< int >(wxPLATFORM_OS2
)));
37491 SWIG_Python_SetConstant(d
, "PLATFORM_MAC",SWIG_From_int(static_cast< int >(wxPLATFORM_MAC
)));
37492 SWIG_Python_SetConstant(d
, "BUFFER_VIRTUAL_AREA",SWIG_From_int(static_cast< int >(wxBUFFER_VIRTUAL_AREA
)));
37493 SWIG_Python_SetConstant(d
, "BUFFER_CLIENT_AREA",SWIG_From_int(static_cast< int >(wxBUFFER_CLIENT_AREA
)));
37494 SWIG_Python_SetConstant(d
, "IMAGELIST_DRAW_NORMAL",SWIG_From_int(static_cast< int >(wxIMAGELIST_DRAW_NORMAL
)));
37495 SWIG_Python_SetConstant(d
, "IMAGELIST_DRAW_TRANSPARENT",SWIG_From_int(static_cast< int >(wxIMAGELIST_DRAW_TRANSPARENT
)));
37496 SWIG_Python_SetConstant(d
, "IMAGELIST_DRAW_SELECTED",SWIG_From_int(static_cast< int >(wxIMAGELIST_DRAW_SELECTED
)));
37497 SWIG_Python_SetConstant(d
, "IMAGELIST_DRAW_FOCUSED",SWIG_From_int(static_cast< int >(wxIMAGELIST_DRAW_FOCUSED
)));
37498 SWIG_Python_SetConstant(d
, "IMAGE_LIST_NORMAL",SWIG_From_int(static_cast< int >(wxIMAGE_LIST_NORMAL
)));
37499 SWIG_Python_SetConstant(d
, "IMAGE_LIST_SMALL",SWIG_From_int(static_cast< int >(wxIMAGE_LIST_SMALL
)));
37500 SWIG_Python_SetConstant(d
, "IMAGE_LIST_STATE",SWIG_From_int(static_cast< int >(wxIMAGE_LIST_STATE
)));
37501 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_BLACK",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_BLACK
)));
37502 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_BLUE",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_BLUE
)));
37503 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_CYAN",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_CYAN
)));
37504 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_GREEN",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_GREEN
)));
37505 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_GREY",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_GREY
)));
37506 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_LIGHTGREY",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_LIGHTGREY
)));
37507 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_MEDIUMGREY",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_MEDIUMGREY
)));
37508 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_RED",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_RED
)));
37509 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_TRANSPARENT",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_TRANSPARENT
)));
37510 SWIG_Python_SetConstant(d
, "StockGDI_BRUSH_WHITE",SWIG_From_int(static_cast< int >(wxStockGDI::BRUSH_WHITE
)));
37511 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_BLACK",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_BLACK
)));
37512 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_BLUE",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_BLUE
)));
37513 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_CYAN",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_CYAN
)));
37514 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_GREEN",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_GREEN
)));
37515 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_LIGHTGREY",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_LIGHTGREY
)));
37516 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_RED",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_RED
)));
37517 SWIG_Python_SetConstant(d
, "StockGDI_COLOUR_WHITE",SWIG_From_int(static_cast< int >(wxStockGDI::COLOUR_WHITE
)));
37518 SWIG_Python_SetConstant(d
, "StockGDI_CURSOR_CROSS",SWIG_From_int(static_cast< int >(wxStockGDI::CURSOR_CROSS
)));
37519 SWIG_Python_SetConstant(d
, "StockGDI_CURSOR_HOURGLASS",SWIG_From_int(static_cast< int >(wxStockGDI::CURSOR_HOURGLASS
)));
37520 SWIG_Python_SetConstant(d
, "StockGDI_CURSOR_STANDARD",SWIG_From_int(static_cast< int >(wxStockGDI::CURSOR_STANDARD
)));
37521 SWIG_Python_SetConstant(d
, "StockGDI_FONT_ITALIC",SWIG_From_int(static_cast< int >(wxStockGDI::FONT_ITALIC
)));
37522 SWIG_Python_SetConstant(d
, "StockGDI_FONT_NORMAL",SWIG_From_int(static_cast< int >(wxStockGDI::FONT_NORMAL
)));
37523 SWIG_Python_SetConstant(d
, "StockGDI_FONT_SMALL",SWIG_From_int(static_cast< int >(wxStockGDI::FONT_SMALL
)));
37524 SWIG_Python_SetConstant(d
, "StockGDI_FONT_SWISS",SWIG_From_int(static_cast< int >(wxStockGDI::FONT_SWISS
)));
37525 SWIG_Python_SetConstant(d
, "StockGDI_PEN_BLACK",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_BLACK
)));
37526 SWIG_Python_SetConstant(d
, "StockGDI_PEN_BLACKDASHED",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_BLACKDASHED
)));
37527 SWIG_Python_SetConstant(d
, "StockGDI_PEN_CYAN",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_CYAN
)));
37528 SWIG_Python_SetConstant(d
, "StockGDI_PEN_GREEN",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_GREEN
)));
37529 SWIG_Python_SetConstant(d
, "StockGDI_PEN_GREY",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_GREY
)));
37530 SWIG_Python_SetConstant(d
, "StockGDI_PEN_LIGHTGREY",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_LIGHTGREY
)));
37531 SWIG_Python_SetConstant(d
, "StockGDI_PEN_MEDIUMGREY",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_MEDIUMGREY
)));
37532 SWIG_Python_SetConstant(d
, "StockGDI_PEN_RED",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_RED
)));
37533 SWIG_Python_SetConstant(d
, "StockGDI_PEN_TRANSPARENT",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_TRANSPARENT
)));
37534 SWIG_Python_SetConstant(d
, "StockGDI_PEN_WHITE",SWIG_From_int(static_cast< int >(wxStockGDI::PEN_WHITE
)));
37535 SWIG_Python_SetConstant(d
, "StockGDI_ITEMCOUNT",SWIG_From_int(static_cast< int >(wxStockGDI::ITEMCOUNT
)));
37536 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
37537 SWIG_addvarlink(SWIG_globals(),(char*)"NullBitmap",NullBitmap_get
, NullBitmap_set
);
37538 SWIG_addvarlink(SWIG_globals(),(char*)"NullIcon",NullIcon_get
, NullIcon_set
);
37539 SWIG_addvarlink(SWIG_globals(),(char*)"NullCursor",NullCursor_get
, NullCursor_set
);
37540 SWIG_addvarlink(SWIG_globals(),(char*)"NullPen",NullPen_get
, NullPen_set
);
37541 SWIG_addvarlink(SWIG_globals(),(char*)"NullBrush",NullBrush_get
, NullBrush_set
);
37542 SWIG_addvarlink(SWIG_globals(),(char*)"NullPalette",NullPalette_get
, NullPalette_set
);
37543 SWIG_addvarlink(SWIG_globals(),(char*)"NullFont",NullFont_get
, NullFont_set
);
37544 SWIG_addvarlink(SWIG_globals(),(char*)"NullColour",NullColour_get
, NullColour_set
);
37545 SWIG_Python_SetConstant(d
, "CONTROL_DISABLED",SWIG_From_int(static_cast< int >(wxCONTROL_DISABLED
)));
37546 SWIG_Python_SetConstant(d
, "CONTROL_FOCUSED",SWIG_From_int(static_cast< int >(wxCONTROL_FOCUSED
)));
37547 SWIG_Python_SetConstant(d
, "CONTROL_PRESSED",SWIG_From_int(static_cast< int >(wxCONTROL_PRESSED
)));
37548 SWIG_Python_SetConstant(d
, "CONTROL_SPECIAL",SWIG_From_int(static_cast< int >(wxCONTROL_SPECIAL
)));
37549 SWIG_Python_SetConstant(d
, "CONTROL_ISDEFAULT",SWIG_From_int(static_cast< int >(wxCONTROL_ISDEFAULT
)));
37550 SWIG_Python_SetConstant(d
, "CONTROL_ISSUBMENU",SWIG_From_int(static_cast< int >(wxCONTROL_ISSUBMENU
)));
37551 SWIG_Python_SetConstant(d
, "CONTROL_EXPANDED",SWIG_From_int(static_cast< int >(wxCONTROL_EXPANDED
)));
37552 SWIG_Python_SetConstant(d
, "CONTROL_SIZEGRIP",SWIG_From_int(static_cast< int >(wxCONTROL_SIZEGRIP
)));
37553 SWIG_Python_SetConstant(d
, "CONTROL_CURRENT",SWIG_From_int(static_cast< int >(wxCONTROL_CURRENT
)));
37554 SWIG_Python_SetConstant(d
, "CONTROL_SELECTED",SWIG_From_int(static_cast< int >(wxCONTROL_SELECTED
)));
37555 SWIG_Python_SetConstant(d
, "CONTROL_CHECKED",SWIG_From_int(static_cast< int >(wxCONTROL_CHECKED
)));
37556 SWIG_Python_SetConstant(d
, "CONTROL_CHECKABLE",SWIG_From_int(static_cast< int >(wxCONTROL_CHECKABLE
)));
37557 SWIG_Python_SetConstant(d
, "CONTROL_UNDETERMINED",SWIG_From_int(static_cast< int >(wxCONTROL_UNDETERMINED
)));
37558 SWIG_Python_SetConstant(d
, "CONTROL_FLAGS_MASK",SWIG_From_int(static_cast< int >(wxCONTROL_FLAGS_MASK
)));
37559 SWIG_Python_SetConstant(d
, "CONTROL_DIRTY",SWIG_From_int(static_cast< int >(wxCONTROL_DIRTY
)));
37560 SWIG_Python_SetConstant(d
, "HDR_SORT_ICON_NONE",SWIG_From_int(static_cast< int >(wxHDR_SORT_ICON_NONE
)));
37561 SWIG_Python_SetConstant(d
, "HDR_SORT_ICON_UP",SWIG_From_int(static_cast< int >(wxHDR_SORT_ICON_UP
)));
37562 SWIG_Python_SetConstant(d
, "HDR_SORT_ICON_DOWN",SWIG_From_int(static_cast< int >(wxHDR_SORT_ICON_DOWN
)));
37563 SWIG_Python_SetConstant(d
, "RendererVersion_Current_Version",SWIG_From_int(static_cast< int >(wxRendererVersion::Current_Version
)));
37564 SWIG_Python_SetConstant(d
, "RendererVersion_Current_Age",SWIG_From_int(static_cast< int >(wxRendererVersion::Current_Age
)));
37566 // Work around a chicken/egg problem in drawlist.cpp
37567 wxPyDrawList_SetAPIPtr();