1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 /* for raw pointers */
989 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
990 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
991 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
992 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
993 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
994 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
995 #define swig_owntype int
997 /* for raw packed data */
998 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
999 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1001 /* for class or struct pointers */
1002 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1003 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1005 /* for C or C++ function pointers */
1006 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1007 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1009 /* for C++ member pointers, ie, member methods */
1010 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1011 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1016 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1017 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1018 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1020 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1021 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1022 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1023 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1024 #define SWIG_fail goto fail
1027 /* Runtime API implementation */
1029 /* Error manipulation */
1032 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1033 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1034 PyErr_SetObject(errtype
, obj
);
1036 SWIG_PYTHON_THREAD_END_BLOCK
;
1040 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1041 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1042 PyErr_SetString(errtype
, (char *) msg
);
1043 SWIG_PYTHON_THREAD_END_BLOCK
;
1046 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1048 /* Set a constant value */
1051 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1052 PyDict_SetItemString(d
, (char*) name
, obj
);
1056 /* Append a value to the result obj */
1058 SWIGINTERN PyObject
*
1059 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1060 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1063 } else if (result
== Py_None
) {
1067 if (!PyList_Check(result
)) {
1068 PyObject
*o2
= result
;
1069 result
= PyList_New(1);
1070 PyList_SetItem(result
, 0, o2
);
1072 PyList_Append(result
,obj
);
1081 } else if (result
== Py_None
) {
1085 if (!PyTuple_Check(result
)) {
1087 result
= PyTuple_New(1);
1088 PyTuple_SET_ITEM(result
, 0, o2
);
1090 o3
= PyTuple_New(1);
1091 PyTuple_SET_ITEM(o3
, 0, obj
);
1093 result
= PySequence_Concat(o2
, o3
);
1101 /* Unpack the argument tuple */
1104 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1110 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1111 name
, (min
== max
? "" : "at least "), min
);
1115 if (!PyTuple_Check(args
)) {
1116 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1119 register int l
= PyTuple_GET_SIZE(args
);
1121 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1122 name
, (min
== max
? "" : "at least "), min
, l
);
1124 } else if (l
> max
) {
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at most "), max
, l
);
1130 for (i
= 0; i
< l
; ++i
) {
1131 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1133 for (; l
< max
; ++l
) {
1141 /* A functor is a function object with one single object argument */
1142 #if PY_VERSION_HEX >= 0x02020000
1143 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1145 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1149 Helper for static pointer initialization for both C and C++ code, for example
1150 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1153 #define SWIG_STATIC_POINTER(var) var
1155 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1158 /* -----------------------------------------------------------------------------
1159 * Pointer declarations
1160 * ----------------------------------------------------------------------------- */
1162 /* Flags for new pointer objects */
1163 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1164 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1166 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1175 /* How to access Py_None */
1176 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1177 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1178 # ifndef SWIG_PYTHON_BUILD_NONE
1179 # define SWIG_PYTHON_BUILD_NONE
1184 #ifdef SWIG_PYTHON_BUILD_NONE
1187 # define Py_None SWIG_Py_None()
1189 SWIGRUNTIMEINLINE PyObject
*
1192 PyObject
*none
= Py_BuildValue("");
1196 SWIGRUNTIME PyObject
*
1199 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1204 /* The python void return value */
1206 SWIGRUNTIMEINLINE PyObject
*
1209 PyObject
*none
= Py_None
;
1214 /* PySwigClientData */
1225 SWIGRUNTIMEINLINE
int
1226 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1228 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1229 return data
? data
->implicitconv
: 0;
1232 SWIGRUNTIMEINLINE PyObject
*
1233 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1234 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1235 PyObject
*klass
= data
? data
->klass
: 0;
1236 return (klass
? klass
: PyExc_RuntimeError
);
1240 SWIGRUNTIME PySwigClientData
*
1241 PySwigClientData_New(PyObject
* obj
)
1246 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1247 /* the klass element */
1249 Py_INCREF(data
->klass
);
1250 /* the newraw method and newargs arguments used to create a new raw instance */
1251 if (PyClass_Check(obj
)) {
1253 data
->newargs
= obj
;
1256 #if (PY_VERSION_HEX < 0x02020000)
1259 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1262 Py_INCREF(data
->newraw
);
1263 data
->newargs
= PyTuple_New(1);
1264 PyTuple_SetItem(data
->newargs
, 0, obj
);
1266 data
->newargs
= obj
;
1268 Py_INCREF(data
->newargs
);
1270 /* the destroy method, aka as the C++ delete method */
1271 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1272 if (PyErr_Occurred()) {
1276 if (data
->destroy
) {
1278 Py_INCREF(data
->destroy
);
1279 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1281 data
->delargs
= !(flags
& (METH_O
));
1288 data
->implicitconv
= 0;
1294 PySwigClientData_Del(PySwigClientData
* data
)
1296 Py_XDECREF(data
->newraw
);
1297 Py_XDECREF(data
->newargs
);
1298 Py_XDECREF(data
->destroy
);
1301 /* =============== PySwigObject =====================*/
1311 SWIGRUNTIME PyObject
*
1312 PySwigObject_long(PySwigObject
*v
)
1314 return PyLong_FromVoidPtr(v
->ptr
);
1317 SWIGRUNTIME PyObject
*
1318 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1320 PyObject
*res
= NULL
;
1321 PyObject
*args
= PyTuple_New(1);
1323 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1324 PyObject
*ofmt
= PyString_FromString(fmt
);
1326 res
= PyString_Format(ofmt
,args
);
1335 SWIGRUNTIME PyObject
*
1336 PySwigObject_oct(PySwigObject
*v
)
1338 return PySwigObject_format("%o",v
);
1341 SWIGRUNTIME PyObject
*
1342 PySwigObject_hex(PySwigObject
*v
)
1344 return PySwigObject_format("%x",v
);
1347 SWIGRUNTIME PyObject
*
1349 PySwigObject_repr(PySwigObject
*v
)
1351 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1354 const char *name
= SWIG_TypePrettyName(v
->ty
);
1355 PyObject
*hex
= PySwigObject_hex(v
);
1356 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1360 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1362 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1364 PyString_ConcatAndDel(&repr
,nrep
);
1370 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1373 PyObject
*repr
= PySwigObject_repr(v
);
1375 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1378 fputs(PyString_AsString(repr
), fp
);
1386 SWIGRUNTIME PyObject
*
1387 PySwigObject_str(PySwigObject
*v
)
1389 char result
[SWIG_BUFFER_SIZE
];
1390 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1391 PyString_FromString(result
) : 0;
1395 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1399 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1402 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1404 SWIGRUNTIME PyTypeObject
*
1405 PySwigObject_type(void) {
1406 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1410 SWIGRUNTIMEINLINE
int
1411 PySwigObject_Check(PyObject
*op
) {
1412 return ((op
)->ob_type
== PySwigObject_type())
1413 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1416 SWIGRUNTIME PyObject
*
1417 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1420 PySwigObject_dealloc(PyObject
*v
)
1422 PySwigObject
*sobj
= (PySwigObject
*) v
;
1423 PyObject
*next
= sobj
->next
;
1425 swig_type_info
*ty
= sobj
->ty
;
1426 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1427 PyObject
*destroy
= data
? data
->destroy
: 0;
1429 /* destroy is always a VARARGS method */
1431 if (data
->delargs
) {
1432 /* we need to create a temporal object to carry the destroy operation */
1433 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1434 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1437 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1438 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1439 res
= ((*meth
)(mself
, v
));
1443 const char *name
= SWIG_TypePrettyName(ty
);
1444 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1445 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1453 SWIGRUNTIME PyObject
*
1454 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1456 PySwigObject
*sobj
= (PySwigObject
*) v
;
1459 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1462 if (!PySwigObject_Check(next
)) {
1467 return SWIG_Py_Void();
1470 SWIGRUNTIME PyObject
*
1472 PySwigObject_next(PyObject
* v
)
1474 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1477 PySwigObject
*sobj
= (PySwigObject
*) v
;
1479 Py_INCREF(sobj
->next
);
1482 return SWIG_Py_Void();
1486 SWIGINTERN PyObject
*
1488 PySwigObject_disown(PyObject
*v
)
1490 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1493 PySwigObject
*sobj
= (PySwigObject
*)v
;
1495 return SWIG_Py_Void();
1498 SWIGINTERN PyObject
*
1500 PySwigObject_acquire(PyObject
*v
)
1502 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1505 PySwigObject
*sobj
= (PySwigObject
*)v
;
1506 sobj
->own
= SWIG_POINTER_OWN
;
1507 return SWIG_Py_Void();
1510 SWIGINTERN PyObject
*
1511 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1514 #if (PY_VERSION_HEX < 0x02020000)
1515 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1517 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1524 PySwigObject
*sobj
= (PySwigObject
*)v
;
1525 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1528 if (PyObject_IsTrue(val
)) {
1529 PySwigObject_acquire(v
);
1531 PySwigObject_disown(v
);
1534 if (PyObject_IsTrue(val
)) {
1535 PySwigObject_acquire(v
,args
);
1537 PySwigObject_disown(v
,args
);
1547 swigobject_methods
[] = {
1548 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1549 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1550 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1551 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1552 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1553 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1558 swigobject_methods
[] = {
1559 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1560 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1561 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1562 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1563 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1564 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1569 #if PY_VERSION_HEX < 0x02020000
1570 SWIGINTERN PyObject
*
1571 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1573 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1577 SWIGRUNTIME PyTypeObject
*
1578 _PySwigObject_type(void) {
1579 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1581 static PyNumberMethods PySwigObject_as_number
= {
1582 (binaryfunc
)0, /*nb_add*/
1583 (binaryfunc
)0, /*nb_subtract*/
1584 (binaryfunc
)0, /*nb_multiply*/
1585 (binaryfunc
)0, /*nb_divide*/
1586 (binaryfunc
)0, /*nb_remainder*/
1587 (binaryfunc
)0, /*nb_divmod*/
1588 (ternaryfunc
)0,/*nb_power*/
1589 (unaryfunc
)0, /*nb_negative*/
1590 (unaryfunc
)0, /*nb_positive*/
1591 (unaryfunc
)0, /*nb_absolute*/
1592 (inquiry
)0, /*nb_nonzero*/
1599 (coercion
)0, /*nb_coerce*/
1600 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1601 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1602 (unaryfunc
)0, /*nb_float*/
1603 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1604 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1605 #if PY_VERSION_HEX >= 0x02020000
1606 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1607 #elif PY_VERSION_HEX >= 0x02000000
1608 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1612 static PyTypeObject pyswigobject_type
;
1613 static int type_init
= 0;
1615 const PyTypeObject tmp
1617 PyObject_HEAD_INIT(NULL
)
1619 (char *)"PySwigObject", /* tp_name */
1620 sizeof(PySwigObject
), /* tp_basicsize */
1621 0, /* tp_itemsize */
1622 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1623 (printfunc
)PySwigObject_print
, /* tp_print */
1624 #if PY_VERSION_HEX < 0x02020000
1625 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1627 (getattrfunc
)0, /* tp_getattr */
1629 (setattrfunc
)0, /* tp_setattr */
1630 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1631 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1632 &PySwigObject_as_number
, /* tp_as_number */
1633 0, /* tp_as_sequence */
1634 0, /* tp_as_mapping */
1635 (hashfunc
)0, /* tp_hash */
1636 (ternaryfunc
)0, /* tp_call */
1637 (reprfunc
)PySwigObject_str
, /* tp_str */
1638 PyObject_GenericGetAttr
, /* tp_getattro */
1639 0, /* tp_setattro */
1640 0, /* tp_as_buffer */
1641 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1642 swigobject_doc
, /* tp_doc */
1643 0, /* tp_traverse */
1645 0, /* tp_richcompare */
1646 0, /* tp_weaklistoffset */
1647 #if PY_VERSION_HEX >= 0x02020000
1649 0, /* tp_iternext */
1650 swigobject_methods
, /* tp_methods */
1655 0, /* tp_descr_get */
1656 0, /* tp_descr_set */
1657 0, /* tp_dictoffset */
1666 0, /* tp_subclasses */
1667 0, /* tp_weaklist */
1669 #if PY_VERSION_HEX >= 0x02030000
1673 0,0,0,0 /* tp_alloc -> tp_next */
1676 pyswigobject_type
= tmp
;
1677 pyswigobject_type
.ob_type
= &PyType_Type
;
1680 return &pyswigobject_type
;
1683 SWIGRUNTIME PyObject
*
1684 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1686 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1693 return (PyObject
*)sobj
;
1696 /* -----------------------------------------------------------------------------
1697 * Implements a simple Swig Packed type, and use it instead of string
1698 * ----------------------------------------------------------------------------- */
1708 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1710 char result
[SWIG_BUFFER_SIZE
];
1711 fputs("<Swig Packed ", fp
);
1712 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1716 fputs(v
->ty
->name
,fp
);
1721 SWIGRUNTIME PyObject
*
1722 PySwigPacked_repr(PySwigPacked
*v
)
1724 char result
[SWIG_BUFFER_SIZE
];
1725 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1726 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1728 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1732 SWIGRUNTIME PyObject
*
1733 PySwigPacked_str(PySwigPacked
*v
)
1735 char result
[SWIG_BUFFER_SIZE
];
1736 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1737 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1739 return PyString_FromString(v
->ty
->name
);
1744 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1748 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1749 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1752 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1754 SWIGRUNTIME PyTypeObject
*
1755 PySwigPacked_type(void) {
1756 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1760 SWIGRUNTIMEINLINE
int
1761 PySwigPacked_Check(PyObject
*op
) {
1762 return ((op
)->ob_type
== _PySwigPacked_type())
1763 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1767 PySwigPacked_dealloc(PyObject
*v
)
1769 if (PySwigPacked_Check(v
)) {
1770 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1776 SWIGRUNTIME PyTypeObject
*
1777 _PySwigPacked_type(void) {
1778 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1779 static PyTypeObject pyswigpacked_type
;
1780 static int type_init
= 0;
1782 const PyTypeObject tmp
1784 PyObject_HEAD_INIT(NULL
)
1786 (char *)"PySwigPacked", /* tp_name */
1787 sizeof(PySwigPacked
), /* tp_basicsize */
1788 0, /* tp_itemsize */
1789 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1790 (printfunc
)PySwigPacked_print
, /* tp_print */
1791 (getattrfunc
)0, /* tp_getattr */
1792 (setattrfunc
)0, /* tp_setattr */
1793 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1794 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1795 0, /* tp_as_number */
1796 0, /* tp_as_sequence */
1797 0, /* tp_as_mapping */
1798 (hashfunc
)0, /* tp_hash */
1799 (ternaryfunc
)0, /* tp_call */
1800 (reprfunc
)PySwigPacked_str
, /* tp_str */
1801 PyObject_GenericGetAttr
, /* tp_getattro */
1802 0, /* tp_setattro */
1803 0, /* tp_as_buffer */
1804 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1805 swigpacked_doc
, /* tp_doc */
1806 0, /* tp_traverse */
1808 0, /* tp_richcompare */
1809 0, /* tp_weaklistoffset */
1810 #if PY_VERSION_HEX >= 0x02020000
1812 0, /* tp_iternext */
1818 0, /* tp_descr_get */
1819 0, /* tp_descr_set */
1820 0, /* tp_dictoffset */
1829 0, /* tp_subclasses */
1830 0, /* tp_weaklist */
1832 #if PY_VERSION_HEX >= 0x02030000
1836 0,0,0,0 /* tp_alloc -> tp_next */
1839 pyswigpacked_type
= tmp
;
1840 pyswigpacked_type
.ob_type
= &PyType_Type
;
1843 return &pyswigpacked_type
;
1846 SWIGRUNTIME PyObject
*
1847 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1849 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1851 void *pack
= malloc(size
);
1853 memcpy(pack
, ptr
, size
);
1858 PyObject_DEL((PyObject
*) sobj
);
1862 return (PyObject
*) sobj
;
1865 SWIGRUNTIME swig_type_info
*
1866 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1868 if (PySwigPacked_Check(obj
)) {
1869 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1870 if (sobj
->size
!= size
) return 0;
1871 memcpy(ptr
, sobj
->pack
, size
);
1878 /* -----------------------------------------------------------------------------
1879 * pointers/data manipulation
1880 * ----------------------------------------------------------------------------- */
1882 SWIGRUNTIMEINLINE PyObject
*
1885 return PyString_FromString("this");
1888 SWIGRUNTIME PyObject
*
1891 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1895 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1897 SWIGRUNTIME PySwigObject
*
1898 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1900 if (PySwigObject_Check(pyobj
)) {
1901 return (PySwigObject
*) pyobj
;
1904 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1905 if (PyInstance_Check(pyobj
)) {
1906 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1908 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1909 if (dictptr
!= NULL
) {
1910 PyObject
*dict
= *dictptr
;
1911 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1913 #ifdef PyWeakref_CheckProxy
1914 if (PyWeakref_CheckProxy(pyobj
)) {
1915 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1916 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1919 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1923 if (PyErr_Occurred()) PyErr_Clear();
1929 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1933 if (PyErr_Occurred()) PyErr_Clear();
1937 if (obj
&& !PySwigObject_Check(obj
)) {
1938 /* a PyObject is called 'this', try to get the 'real this'
1939 PySwigObject from it */
1940 return SWIG_Python_GetSwigThis(obj
);
1942 return (PySwigObject
*)obj
;
1946 /* Acquire a pointer value */
1949 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1951 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1953 int oldown
= sobj
->own
;
1961 /* Convert a pointer value */
1964 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1965 if (!obj
) return SWIG_ERROR
;
1966 if (obj
== Py_None
) {
1970 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1972 void *vptr
= sobj
->ptr
;
1974 swig_type_info
*to
= sobj
->ty
;
1976 /* no type cast needed */
1977 if (ptr
) *ptr
= vptr
;
1980 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1982 sobj
= (PySwigObject
*)sobj
->next
;
1984 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1989 if (ptr
) *ptr
= vptr
;
1994 if (own
) *own
= sobj
->own
;
1995 if (flags
& SWIG_POINTER_DISOWN
) {
2000 int res
= SWIG_ERROR
;
2001 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2002 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2003 if (data
&& !data
->implicitconv
) {
2004 PyObject
*klass
= data
->klass
;
2007 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2008 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2009 data
->implicitconv
= 0;
2010 if (PyErr_Occurred()) {
2015 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2018 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2019 if (SWIG_IsOK(res
)) {
2022 /* transfer the ownership to 'ptr' */
2024 res
= SWIG_AddCast(res
);
2025 res
= SWIG_AddNewMask(res
);
2027 res
= SWIG_AddCast(res
);
2041 /* Convert a function ptr value */
2044 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2045 if (!PyCFunction_Check(obj
)) {
2046 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2050 /* here we get the method pointer for callbacks */
2051 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2052 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2054 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2055 if (!desc
) return SWIG_ERROR
;
2058 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2059 if (!tc
) return SWIG_ERROR
;
2060 *ptr
= SWIG_TypeCast(tc
,vptr
);
2068 /* Convert a packed value value */
2071 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2072 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2073 if (!to
) return SWIG_ERROR
;
2076 /* check type cast? */
2077 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2078 if (!tc
) return SWIG_ERROR
;
2084 /* -----------------------------------------------------------------------------
2085 * Create a new pointer object
2086 * ----------------------------------------------------------------------------- */
2089 Create a new instance object, whitout calling __init__, and set the
2093 SWIGRUNTIME PyObject
*
2094 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2096 #if (PY_VERSION_HEX >= 0x02020000)
2098 PyObject
*newraw
= data
->newraw
;
2100 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2102 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2103 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2104 if (dictptr
!= NULL
) {
2105 PyObject
*dict
= *dictptr
;
2107 dict
= PyDict_New();
2109 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2113 PyObject
*key
= SWIG_This();
2114 PyObject_SetAttr(inst
, key
, swig_this
);
2118 PyObject
*dict
= PyDict_New();
2119 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2120 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2125 #if (PY_VERSION_HEX >= 0x02010000)
2127 PyObject
*dict
= PyDict_New();
2128 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2129 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2131 return (PyObject
*) inst
;
2133 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2137 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2138 Py_INCREF(inst
->in_class
);
2139 inst
->in_dict
= PyDict_New();
2140 if (inst
->in_dict
== NULL
) {
2144 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2145 inst
->in_weakreflist
= NULL
;
2147 #ifdef Py_TPFLAGS_GC
2148 PyObject_GC_Init(inst
);
2150 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2151 return (PyObject
*) inst
;
2157 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2160 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2161 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2162 if (dictptr
!= NULL
) {
2165 dict
= PyDict_New();
2168 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2172 dict
= PyObject_GetAttrString(inst
, "__dict__");
2173 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2178 SWIGINTERN PyObject
*
2179 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2181 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2184 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2186 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2188 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2190 return SWIG_Py_Void();
2194 /* Create a new pointer object */
2196 SWIGRUNTIME PyObject
*
2197 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2199 return SWIG_Py_Void();
2201 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2202 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2203 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2204 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2205 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2215 /* Create a new packed object */
2217 SWIGRUNTIMEINLINE PyObject
*
2218 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2219 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2222 /* -----------------------------------------------------------------------------*
2224 * -----------------------------------------------------------------------------*/
2226 #ifdef SWIG_LINK_RUNTIME
2227 void *SWIG_ReturnGlobalTypeList(void *);
2230 SWIGRUNTIME swig_module_info
*
2231 SWIG_Python_GetModule(void) {
2232 static void *type_pointer
= (void *)0;
2233 /* first check if module already created */
2234 if (!type_pointer
) {
2235 #ifdef SWIG_LINK_RUNTIME
2236 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2238 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2239 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2240 if (PyErr_Occurred()) {
2242 type_pointer
= (void *)0;
2246 return (swig_module_info
*) type_pointer
;
2249 #if PY_MAJOR_VERSION < 2
2250 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2251 is copied out of Python/modsupport.c in python version 2.3.4 */
2253 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2256 if (!PyModule_Check(m
)) {
2257 PyErr_SetString(PyExc_TypeError
,
2258 "PyModule_AddObject() needs module as first arg");
2262 PyErr_SetString(PyExc_TypeError
,
2263 "PyModule_AddObject() needs non-NULL value");
2267 dict
= PyModule_GetDict(m
);
2269 /* Internal error -- modules must have a dict! */
2270 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2271 PyModule_GetName(m
));
2274 if (PyDict_SetItemString(dict
, name
, o
))
2282 SWIG_Python_DestroyModule(void *vptr
)
2284 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2285 swig_type_info
**types
= swig_module
->types
;
2287 for (i
=0; i
< swig_module
->size
; ++i
) {
2288 swig_type_info
*ty
= types
[i
];
2290 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2291 if (data
) PySwigClientData_Del(data
);
2294 Py_DECREF(SWIG_This());
2298 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2299 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2301 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2302 swig_empty_runtime_method_table
);
2303 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2304 if (pointer
&& module) {
2305 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2307 Py_XDECREF(pointer
);
2311 /* The python cached type query */
2312 SWIGRUNTIME PyObject
*
2313 SWIG_Python_TypeCache() {
2314 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2318 SWIGRUNTIME swig_type_info
*
2319 SWIG_Python_TypeQuery(const char *type
)
2321 PyObject
*cache
= SWIG_Python_TypeCache();
2322 PyObject
*key
= PyString_FromString(type
);
2323 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2324 swig_type_info
*descriptor
;
2326 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2328 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2329 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2331 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2332 PyDict_SetItem(cache
, key
, obj
);
2341 For backward compatibility only
2343 #define SWIG_POINTER_EXCEPTION 0
2344 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2345 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2348 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2350 if (PyErr_Occurred()) {
2352 PyObject
*value
= 0;
2353 PyObject
*traceback
= 0;
2354 PyErr_Fetch(&type
, &value
, &traceback
);
2356 PyObject
*old_str
= PyObject_Str(value
);
2360 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2362 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2373 SWIG_Python_ArgFail(int argnum
)
2375 if (PyErr_Occurred()) {
2376 /* add information about failing argument */
2378 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2379 return SWIG_Python_AddErrMesg(mesg
, 1);
2385 SWIGRUNTIMEINLINE
const char *
2386 PySwigObject_GetDesc(PyObject
*self
)
2388 PySwigObject
*v
= (PySwigObject
*)self
;
2389 swig_type_info
*ty
= v
? v
->ty
: 0;
2390 return ty
? ty
->str
: (char*)"";
2394 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2397 #if defined(SWIG_COBJECT_TYPES)
2398 if (obj
&& PySwigObject_Check(obj
)) {
2399 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2401 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2408 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2410 PyObject
*str
= PyObject_Str(obj
);
2411 const char *cstr
= str
? PyString_AsString(str
) : 0;
2413 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2416 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2423 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2425 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2430 /* Convert a pointer value, signal an exception on a type mismatch */
2432 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2434 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2436 if (flags
& SWIG_POINTER_EXCEPTION
) {
2437 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2438 SWIG_Python_ArgFail(argnum
);
2454 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2456 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2460 /* -------- TYPES TABLE (BEGIN) -------- */
2462 #define SWIGTYPE_p_char swig_types[0]
2463 #define SWIGTYPE_p_form_ops_t swig_types[1]
2464 #define SWIGTYPE_p_int swig_types[2]
2465 #define SWIGTYPE_p_unsigned_char swig_types[3]
2466 #define SWIGTYPE_p_unsigned_int swig_types[4]
2467 #define SWIGTYPE_p_unsigned_long swig_types[5]
2468 #define SWIGTYPE_p_wxANIHandler swig_types[6]
2469 #define SWIGTYPE_p_wxAcceleratorTable swig_types[7]
2470 #define SWIGTYPE_p_wxActivateEvent swig_types[8]
2471 #define SWIGTYPE_p_wxArrayInt swig_types[9]
2472 #define SWIGTYPE_p_wxBMPHandler swig_types[10]
2473 #define SWIGTYPE_p_wxBitmap swig_types[11]
2474 #define SWIGTYPE_p_wxBoxSizer swig_types[12]
2475 #define SWIGTYPE_p_wxCURHandler swig_types[13]
2476 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[14]
2477 #define SWIGTYPE_p_wxChildFocusEvent swig_types[15]
2478 #define SWIGTYPE_p_wxCloseEvent swig_types[16]
2479 #define SWIGTYPE_p_wxColour swig_types[17]
2480 #define SWIGTYPE_p_wxColourData swig_types[18]
2481 #define SWIGTYPE_p_wxColourDialog swig_types[19]
2482 #define SWIGTYPE_p_wxCommandEvent swig_types[20]
2483 #define SWIGTYPE_p_wxContextMenuEvent swig_types[21]
2484 #define SWIGTYPE_p_wxControl swig_types[22]
2485 #define SWIGTYPE_p_wxControlWithItems swig_types[23]
2486 #define SWIGTYPE_p_wxDC swig_types[24]
2487 #define SWIGTYPE_p_wxDateEvent swig_types[25]
2488 #define SWIGTYPE_p_wxDialog swig_types[26]
2489 #define SWIGTYPE_p_wxDirDialog swig_types[27]
2490 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[28]
2491 #define SWIGTYPE_p_wxDropFilesEvent swig_types[29]
2492 #define SWIGTYPE_p_wxDuplexMode swig_types[30]
2493 #define SWIGTYPE_p_wxEraseEvent swig_types[31]
2494 #define SWIGTYPE_p_wxEvent swig_types[32]
2495 #define SWIGTYPE_p_wxEvtHandler swig_types[33]
2496 #define SWIGTYPE_p_wxFSFile swig_types[34]
2497 #define SWIGTYPE_p_wxFileDialog swig_types[35]
2498 #define SWIGTYPE_p_wxFileSystem swig_types[36]
2499 #define SWIGTYPE_p_wxFindDialogEvent swig_types[37]
2500 #define SWIGTYPE_p_wxFindReplaceData swig_types[38]
2501 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[39]
2502 #define SWIGTYPE_p_wxFlexGridSizer swig_types[40]
2503 #define SWIGTYPE_p_wxFocusEvent swig_types[41]
2504 #define SWIGTYPE_p_wxFont swig_types[42]
2505 #define SWIGTYPE_p_wxFontData swig_types[43]
2506 #define SWIGTYPE_p_wxFontDialog swig_types[44]
2507 #define SWIGTYPE_p_wxFrame swig_types[45]
2508 #define SWIGTYPE_p_wxGBSizerItem swig_types[46]
2509 #define SWIGTYPE_p_wxGIFHandler swig_types[47]
2510 #define SWIGTYPE_p_wxGridBagSizer swig_types[48]
2511 #define SWIGTYPE_p_wxGridSizer swig_types[49]
2512 #define SWIGTYPE_p_wxHtmlLinkInfo swig_types[50]
2513 #define SWIGTYPE_p_wxICOHandler swig_types[51]
2514 #define SWIGTYPE_p_wxIcon swig_types[52]
2515 #define SWIGTYPE_p_wxIconBundle swig_types[53]
2516 #define SWIGTYPE_p_wxIconizeEvent swig_types[54]
2517 #define SWIGTYPE_p_wxIdleEvent swig_types[55]
2518 #define SWIGTYPE_p_wxImage swig_types[56]
2519 #define SWIGTYPE_p_wxImageHandler swig_types[57]
2520 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[58]
2521 #define SWIGTYPE_p_wxInitDialogEvent swig_types[59]
2522 #define SWIGTYPE_p_wxJPEGHandler swig_types[60]
2523 #define SWIGTYPE_p_wxKeyEvent swig_types[61]
2524 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[62]
2525 #define SWIGTYPE_p_wxLayoutConstraints swig_types[63]
2526 #define SWIGTYPE_p_wxMDIChildFrame swig_types[64]
2527 #define SWIGTYPE_p_wxMDIClientWindow swig_types[65]
2528 #define SWIGTYPE_p_wxMDIParentFrame swig_types[66]
2529 #define SWIGTYPE_p_wxMaximizeEvent swig_types[67]
2530 #define SWIGTYPE_p_wxMenu swig_types[68]
2531 #define SWIGTYPE_p_wxMenuBar swig_types[69]
2532 #define SWIGTYPE_p_wxMenuEvent swig_types[70]
2533 #define SWIGTYPE_p_wxMenuItem swig_types[71]
2534 #define SWIGTYPE_p_wxMessageDialog swig_types[72]
2535 #define SWIGTYPE_p_wxMiniFrame swig_types[73]
2536 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[74]
2537 #define SWIGTYPE_p_wxMouseEvent swig_types[75]
2538 #define SWIGTYPE_p_wxMoveEvent swig_types[76]
2539 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[77]
2540 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[78]
2541 #define SWIGTYPE_p_wxNcPaintEvent swig_types[79]
2542 #define SWIGTYPE_p_wxNotifyEvent swig_types[80]
2543 #define SWIGTYPE_p_wxObject swig_types[81]
2544 #define SWIGTYPE_p_wxPCXHandler swig_types[82]
2545 #define SWIGTYPE_p_wxPNGHandler swig_types[83]
2546 #define SWIGTYPE_p_wxPNMHandler swig_types[84]
2547 #define SWIGTYPE_p_wxPageSetupDialog swig_types[85]
2548 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[86]
2549 #define SWIGTYPE_p_wxPaintEvent swig_types[87]
2550 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[88]
2551 #define SWIGTYPE_p_wxPanel swig_types[89]
2552 #define SWIGTYPE_p_wxPaperSize swig_types[90]
2553 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[91]
2554 #define SWIGTYPE_p_wxPoint swig_types[92]
2555 #define SWIGTYPE_p_wxPopupWindow swig_types[93]
2556 #define SWIGTYPE_p_wxPreviewCanvas swig_types[94]
2557 #define SWIGTYPE_p_wxPreviewControlBar swig_types[95]
2558 #define SWIGTYPE_p_wxPreviewFrame swig_types[96]
2559 #define SWIGTYPE_p_wxPrintData swig_types[97]
2560 #define SWIGTYPE_p_wxPrintDialog swig_types[98]
2561 #define SWIGTYPE_p_wxPrintDialogData swig_types[99]
2562 #define SWIGTYPE_p_wxPrintPreview swig_types[100]
2563 #define SWIGTYPE_p_wxPrinter swig_types[101]
2564 #define SWIGTYPE_p_wxProgressDialog swig_types[102]
2565 #define SWIGTYPE_p_wxPyApp swig_types[103]
2566 #define SWIGTYPE_p_wxPyCommandEvent swig_types[104]
2567 #define SWIGTYPE_p_wxPyEvent swig_types[105]
2568 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[106]
2569 #define SWIGTYPE_p_wxPyImageHandler swig_types[107]
2570 #define SWIGTYPE_p_wxPyPanel swig_types[108]
2571 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[109]
2572 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[110]
2573 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[111]
2574 #define SWIGTYPE_p_wxPyPrintPreview swig_types[112]
2575 #define SWIGTYPE_p_wxPyPrintout swig_types[113]
2576 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[114]
2577 #define SWIGTYPE_p_wxPySizer swig_types[115]
2578 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[116]
2579 #define SWIGTYPE_p_wxPyVListBox swig_types[117]
2580 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[118]
2581 #define SWIGTYPE_p_wxPyValidator swig_types[119]
2582 #define SWIGTYPE_p_wxPyWindow swig_types[120]
2583 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[121]
2584 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[122]
2585 #define SWIGTYPE_p_wxRect swig_types[123]
2586 #define SWIGTYPE_p_wxRegion swig_types[124]
2587 #define SWIGTYPE_p_wxSashEvent swig_types[125]
2588 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[126]
2589 #define SWIGTYPE_p_wxSashWindow swig_types[127]
2590 #define SWIGTYPE_p_wxScrollEvent swig_types[128]
2591 #define SWIGTYPE_p_wxScrollWinEvent swig_types[129]
2592 #define SWIGTYPE_p_wxScrolledWindow swig_types[130]
2593 #define SWIGTYPE_p_wxSetCursorEvent swig_types[131]
2594 #define SWIGTYPE_p_wxShowEvent swig_types[132]
2595 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[133]
2596 #define SWIGTYPE_p_wxSize swig_types[134]
2597 #define SWIGTYPE_p_wxSizeEvent swig_types[135]
2598 #define SWIGTYPE_p_wxSizer swig_types[136]
2599 #define SWIGTYPE_p_wxSizerItem swig_types[137]
2600 #define SWIGTYPE_p_wxSplashScreen swig_types[138]
2601 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[139]
2602 #define SWIGTYPE_p_wxSplitterEvent swig_types[140]
2603 #define SWIGTYPE_p_wxSplitterWindow swig_types[141]
2604 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[142]
2605 #define SWIGTYPE_p_wxStatusBar swig_types[143]
2606 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[144]
2607 #define SWIGTYPE_p_wxString swig_types[145]
2608 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[146]
2609 #define SWIGTYPE_p_wxTIFFHandler swig_types[147]
2610 #define SWIGTYPE_p_wxTaskBarIcon swig_types[148]
2611 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[149]
2612 #define SWIGTYPE_p_wxTextEntryDialog swig_types[150]
2613 #define SWIGTYPE_p_wxTipWindow swig_types[151]
2614 #define SWIGTYPE_p_wxToolBar swig_types[152]
2615 #define SWIGTYPE_p_wxTopLevelWindow swig_types[153]
2616 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[154]
2617 #define SWIGTYPE_p_wxValidator swig_types[155]
2618 #define SWIGTYPE_p_wxVisualAttributes swig_types[156]
2619 #define SWIGTYPE_p_wxWindow swig_types[157]
2620 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[158]
2621 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[159]
2622 #define SWIGTYPE_p_wxXPMHandler swig_types[160]
2623 static swig_type_info
*swig_types
[162];
2624 static swig_module_info swig_module
= {swig_types
, 161, 0, 0, 0, 0};
2625 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2626 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2628 /* -------- TYPES TABLE (END) -------- */
2630 #if (PY_VERSION_HEX <= 0x02000000)
2631 # if !defined(SWIG_PYTHON_CLASSIC)
2632 # error "This python version requires to use swig with the '-classic' option"
2635 #if (PY_VERSION_HEX <= 0x02020000)
2636 # error "This python version requires to use swig with the '-nomodern' option"
2638 #if (PY_VERSION_HEX <= 0x02020000)
2639 # error "This python version requires to use swig with the '-nomodernargs' option"
2642 # error "This python version requires to use swig with the '-nofastunpack' option"
2645 /*-----------------------------------------------
2646 @(target):= _windows_.so
2647 ------------------------------------------------*/
2648 #define SWIG_init init_windows_
2650 #define SWIG_name "_windows_"
2652 #define SWIGVERSION 0x010329
2655 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2656 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2659 #include <stdexcept>
2663 class PyObject_ptr
{
2668 PyObject_ptr() :_obj(0)
2672 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2677 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2679 if (initial_ref
) Py_XINCREF(_obj
);
2682 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2684 Py_XINCREF(item
._obj
);
2695 operator PyObject
*() const
2700 PyObject
*operator->() const
2709 struct PyObject_var
: PyObject_ptr
{
2710 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2712 PyObject_var
& operator = (PyObject
* obj
)
2722 #include "wx/wxPython/wxPython.h"
2723 #include "wx/wxPython/pyclasses.h"
2726 static const wxString
wxPyEmptyString(wxEmptyString
);
2727 static const wxString
wxPyPanelNameStr(wxPanelNameStr
);
2733 # define LLONG_MIN LONG_LONG_MIN
2736 # define LLONG_MAX LONG_LONG_MAX
2739 # define ULLONG_MAX ULONG_LONG_MAX
2744 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2746 if (PyNumber_Check(obj
)) {
2747 if (val
) *val
= PyInt_AsLong(obj
);
2750 return SWIG_TypeError
;
2755 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2758 int res
= SWIG_AsVal_long (obj
, &v
);
2759 if (SWIG_IsOK(res
)) {
2760 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2761 return SWIG_OverflowError
;
2763 if (val
) *val
= static_cast< int >(v
);
2771 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2773 if (obj
== Py_True
) {
2774 if (val
) *val
= true;
2776 } else if (obj
== Py_False
) {
2777 if (val
) *val
= false;
2781 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2782 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2788 #define SWIG_From_long PyInt_FromLong
2791 SWIGINTERNINLINE PyObject
*
2792 SWIG_From_int (int value
)
2794 return SWIG_From_long (value
);
2799 SWIG_AsVal_double (PyObject
*obj
, double* val
)
2801 if (PyNumber_Check(obj
)) {
2802 if (val
) *val
= PyFloat_AsDouble(obj
);
2805 return SWIG_TypeError
;
2809 #define SWIG_From_double PyFloat_FromDouble
2811 static const wxString
wxPyFrameNameStr(wxFrameNameStr
);
2812 static const wxString
wxPyDialogNameStr(wxDialogNameStr
);
2813 static const wxString
wxPyStatusLineNameStr(wxStatusLineNameStr
);
2814 static const wxString
wxPyToolBarNameStr(wxToolBarNameStr
);
2815 SWIGINTERN
void wxTopLevelWindow_MacSetMetalAppearance(wxTopLevelWindow
*self
,bool on
){
2816 int style
= self
->GetExtraStyle();
2818 style
|= wxFRAME_EX_METAL
;
2820 style
&= ~wxFRAME_EX_METAL
;
2821 self
->SetExtraStyle(style
);
2825 SWIGINTERN wxRect
wxStatusBar_GetFieldRect(wxStatusBar
*self
,int i
){
2827 self
->GetFieldRect(i
, r
);
2830 static const wxString
wxPySplitterNameStr(wxT("splitter"));
2831 static const wxString
wxPySashNameStr(wxT("sashWindow"));
2832 static const wxString
wxPySashLayoutNameStr(wxT("layoutWindow"));
2834 #include <wx/popupwin.h>
2837 class wxPopupWindow
: public wxWindow
{
2839 wxPopupWindow(wxWindow
*, int) { wxPyRaiseNotImplemented(); }
2840 wxPopupWindow() { wxPyRaiseNotImplemented(); }
2843 class wxPyPopupTransientWindow
: public wxPopupWindow
2846 wxPyPopupTransientWindow(wxWindow
*, int) { wxPyRaiseNotImplemented(); }
2847 wxPyPopupTransientWindow() { wxPyRaiseNotImplemented(); }
2851 #include <wx/tipwin.h>
2853 SWIGINTERN wxTipWindow
*new_wxTipWindow(wxWindow
*parent
,wxString
const &text
,int maxLength
=100,wxRect
*rectBound
=NULL
){
2854 return new wxTipWindow(parent
, text
, maxLength
, NULL
, rectBound
);
2857 #include <wx/tipwin.h>
2860 #include <wx/vscroll.h>
2863 class wxPyVScrolledWindow
: public wxVScrolledWindow
2865 DECLARE_ABSTRACT_CLASS(wxPyVScrolledWindow
)
2867 wxPyVScrolledWindow() : wxVScrolledWindow() {}
2869 wxPyVScrolledWindow(wxWindow
*parent
,
2870 wxWindowID id
= wxID_ANY
,
2871 const wxPoint
& pos
= wxDefaultPosition
,
2872 const wxSize
& size
= wxDefaultSize
,
2874 const wxString
& name
= wxPyPanelNameStr
)
2875 : wxVScrolledWindow(parent
, id
, pos
, size
, style
, name
)
2878 // Overridable virtuals
2880 // this function must be overridden in the derived class and it should
2881 // return the height of the given line in pixels
2882 DEC_PYCALLBACK_COORD_SIZET_constpure(OnGetLineHeight
);
2885 // this function doesn't have to be overridden but it may be useful to do
2886 // it if calculating the lines heights is a relatively expensive operation
2887 // as it gives the user code a possibility to calculate several of them at
2890 // OnGetLinesHint() is normally called just before OnGetLineHeight() but you
2891 // shouldn't rely on the latter being called for all lines in the interval
2892 // specified here. It is also possible that OnGetLineHeight() will be
2893 // called for the lines outside of this interval, so this is really just a
2894 // hint, not a promise.
2896 // finally note that lineMin is inclusive, while lineMax is exclusive, as
2898 DEC_PYCALLBACK_VOID_SIZETSIZET_const(OnGetLinesHint
);
2901 // when the number of lines changes, we try to estimate the total height
2902 // of all lines which is a rather expensive operation in terms of lines
2903 // access, so if the user code may estimate the average height
2904 // better/faster than we do, it should override this function to implement
2907 // this function should return the best guess for the total height it may
2909 DEC_PYCALLBACK_COORD_const(EstimateTotalHeight
);
2912 // Also expose some other interesting protected methods
2915 // find the index of the line we need to show at the top of the window such
2916 // that the last (fully or partially) visible line is the given one
2917 size_t FindFirstFromBottom(size_t lineLast
, bool fullyVisible
= false)
2918 { return wxVScrolledWindow::FindFirstFromBottom(lineLast
, fullyVisible
); }
2920 // get the total height of the lines between lineMin (inclusive) and
2921 // lineMax (exclusive)
2922 wxCoord
GetLinesHeight(size_t lineMin
, size_t lineMax
) const
2923 { return wxVScrolledWindow::GetLinesHeight(lineMin
, lineMax
); }
2929 IMPLEMENT_ABSTRACT_CLASS(wxPyVScrolledWindow
, wxVScrolledWindow
);
2931 IMP_PYCALLBACK_COORD_SIZET_constpure(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLineHeight
);
2932 IMP_PYCALLBACK_VOID_SIZETSIZET_const(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLinesHint
);
2933 IMP_PYCALLBACK_COORD_const (wxPyVScrolledWindow
, wxVScrolledWindow
, EstimateTotalHeight
);
2937 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2940 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2941 return SWIG_TypeError
;
2944 *val
= (unsigned long)v
;
2949 SWIGINTERNINLINE
int
2950 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2953 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2954 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2959 SWIGINTERNINLINE PyObject
*
2960 SWIG_From_unsigned_SS_long (unsigned long value
)
2962 return (value
> LONG_MAX
) ?
2963 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2967 SWIGINTERNINLINE PyObject
*
2968 SWIG_From_size_t (size_t value
)
2970 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2974 #include <wx/vlbox.h>
2976 static const wxString
wxPyVListBoxNameStr(wxVListBoxNameStr
);
2978 class wxPyVListBox
: public wxVListBox
2980 DECLARE_ABSTRACT_CLASS(wxPyVListBox
)
2982 wxPyVListBox() : wxVListBox() {}
2984 wxPyVListBox(wxWindow
*parent
,
2985 wxWindowID id
= wxID_ANY
,
2986 const wxPoint
& pos
= wxDefaultPosition
,
2987 const wxSize
& size
= wxDefaultSize
,
2989 const wxString
& name
= wxPyVListBoxNameStr
)
2990 : wxVListBox(parent
, id
, pos
, size
, style
, name
)
2993 // Overridable virtuals
2995 // the derived class must implement this function to actually draw the item
2996 // with the given index on the provided DC
2997 // virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const = 0;
2998 DEC_PYCALLBACK__DCRECTSIZET_constpure(OnDrawItem
);
3001 // the derived class must implement this method to return the height of the
3003 // virtual wxCoord OnMeasureItem(size_t n) const = 0;
3004 DEC_PYCALLBACK_COORD_SIZET_constpure(OnMeasureItem
);
3007 // this method may be used to draw separators between the lines; note that
3008 // the rectangle may be modified, typically to deflate it a bit before
3009 // passing to OnDrawItem()
3011 // the base class version doesn't do anything
3012 // virtual void OnDrawSeparator(wxDC& dc, wxRect& rect, size_t n) const;
3013 DEC_PYCALLBACK__DCRECTSIZET2_const(OnDrawSeparator
);
3016 // this method is used to draw the items background and, maybe, a border
3019 // the base class version implements a reasonable default behaviour which
3020 // consists in drawing the selected item with the standard background
3021 // colour and drawing a border around the item if it is either selected or
3023 // virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
3024 DEC_PYCALLBACK__DCRECTSIZET_const(OnDrawBackground
);
3030 IMPLEMENT_ABSTRACT_CLASS(wxPyVListBox
, wxVListBox
);
3032 IMP_PYCALLBACK__DCRECTSIZET_constpure(wxPyVListBox
, wxVListBox
, OnDrawItem
);
3033 IMP_PYCALLBACK_COORD_SIZET_constpure (wxPyVListBox
, wxVListBox
, OnMeasureItem
);
3034 IMP_PYCALLBACK__DCRECTSIZET2_const (wxPyVListBox
, wxVListBox
, OnDrawSeparator
);
3035 IMP_PYCALLBACK__DCRECTSIZET_const (wxPyVListBox
, wxVListBox
, OnDrawBackground
);
3038 SWIGINTERN PyObject
*wxPyVListBox_GetFirstSelected(wxPyVListBox
*self
){
3039 unsigned long cookie
= 0;
3040 int selected
= self
->GetFirstSelected(cookie
);
3041 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3042 PyObject
* tup
= PyTuple_New(2);
3043 PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
));
3044 PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
));
3045 wxPyEndBlockThreads(blocked
);
3048 SWIGINTERN PyObject
*wxPyVListBox_GetNextSelected(wxPyVListBox
*self
,unsigned long cookie
){
3049 int selected
= self
->GetNextSelected(cookie
);
3050 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3051 PyObject
* tup
= PyTuple_New(2);
3052 PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
));
3053 PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
));
3054 wxPyEndBlockThreads(blocked
);
3058 #include <wx/htmllbox.h>
3061 class wxPyHtmlListBox
: public wxHtmlListBox
3063 DECLARE_ABSTRACT_CLASS(wxPyHtmlListBox
)
3065 wxPyHtmlListBox() : wxHtmlListBox() {}
3067 wxPyHtmlListBox(wxWindow
*parent
,
3068 wxWindowID id
= wxID_ANY
,
3069 const wxPoint
& pos
= wxDefaultPosition
,
3070 const wxSize
& size
= wxDefaultSize
,
3072 const wxString
& name
= wxPyVListBoxNameStr
)
3073 : wxHtmlListBox(parent
, id
, pos
, size
, style
, name
)
3076 // Overridable virtuals
3078 // this method must be implemented in the derived class and should return
3079 // the body (i.e. without <html>) of the HTML for the given item
3080 DEC_PYCALLBACK_STRING_SIZET_pure(OnGetItem
);
3082 // this function may be overridden to decorate HTML returned by OnGetItem()
3083 DEC_PYCALLBACK_STRING_SIZET(OnGetItemMarkup
);
3085 // These are from wxVListBox
3086 DEC_PYCALLBACK__DCRECTSIZET2_const(OnDrawSeparator
);
3087 DEC_PYCALLBACK__DCRECTSIZET_const(OnDrawBackground
);
3090 // // this method allows to customize the selection appearance: it may be used
3091 // // to specify the colour of the text which normally has the given colour
3092 // // colFg when it is inside the selection
3094 // // by default, the original colour is not used at all and all text has the
3095 // // same (default for this system) colour inside selection
3096 // virtual wxColour GetSelectedTextColour(const wxColour& colFg) const;
3098 // // this is the same as GetSelectedTextColour() but allows to customize the
3099 // // background colour -- this is even more rarely used as you can change it
3100 // // globally using SetSelectionBackground()
3101 // virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
3104 // This method may be overriden to handle clicking on a link in
3105 // the listbox. By default, clicking links is ignored.
3106 virtual void OnLinkClicked(size_t n
,
3107 const wxHtmlLinkInfo
& link
);
3113 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlListBox
, wxHtmlListBox
)
3115 IMP_PYCALLBACK_STRING_SIZET_pure(wxPyHtmlListBox
, wxHtmlListBox
, OnGetItem
);
3116 IMP_PYCALLBACK_STRING_SIZET (wxPyHtmlListBox
, wxHtmlListBox
, OnGetItemMarkup
);
3117 IMP_PYCALLBACK__DCRECTSIZET2_const (wxPyHtmlListBox
, wxHtmlListBox
, OnDrawSeparator
);
3118 IMP_PYCALLBACK__DCRECTSIZET_const (wxPyHtmlListBox
, wxHtmlListBox
, OnDrawBackground
);
3121 void wxPyHtmlListBox::OnLinkClicked(size_t n
,
3122 const wxHtmlLinkInfo
& link
) {
3124 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3125 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnLinkClicked"))) {
3126 PyObject
* obj
= wxPyConstructObject((void*)&link
, wxT("wxHtmlLinkInfo"), 0);
3127 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(iO)", n
, obj
));
3130 wxPyEndBlockThreads(blocked
);
3132 wxPyHtmlListBox::OnLinkClicked(n
, link
);
3139 #ifndef wxHAS_TASK_BAR_ICON
3140 // implement dummy classes for platforms that don't have it
3142 class wxTaskBarIcon
: public wxEvtHandler
3145 wxTaskBarIcon() { wxPyRaiseNotImplemented(); }
3149 class wxTaskBarIconEvent
: public wxEvent
3152 wxTaskBarIconEvent(wxEventType
, wxTaskBarIcon
*)
3153 { wxPyRaiseNotImplemented(); }
3154 virtual wxEvent
* Clone() const { return NULL
; }
3155 bool IsOk() const { return false; }
3156 bool IsIconInstalled() const { return false; }
3157 bool SetIcon(const wxIcon
& icon
, const wxString
& tooltip
= wxPyEmptyString
) { return false; }
3158 bool RemoveIcon() { return false; }
3159 bool PopupMenu(wxMenu
*menu
) { return false; }
3163 wxEVT_TASKBAR_MOVE
= 0,
3164 wxEVT_TASKBAR_LEFT_DOWN
= 0,
3165 wxEVT_TASKBAR_LEFT_UP
= 0,
3166 wxEVT_TASKBAR_RIGHT_DOWN
= 0,
3167 wxEVT_TASKBAR_RIGHT_UP
= 0,
3168 wxEVT_TASKBAR_LEFT_DCLICK
= 0,
3169 wxEVT_TASKBAR_RIGHT_DCLICK
= 0,
3174 // Otherwise make a class that can virtualize CreatePopupMenu
3175 class wxPyTaskBarIcon
: public wxTaskBarIcon
3177 DECLARE_ABSTRACT_CLASS(wxPyTaskBarIcon
)
3179 wxPyTaskBarIcon() : wxTaskBarIcon()
3182 wxMenu
* CreatePopupMenu() {
3183 wxMenu
*rval
= NULL
;
3185 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3186 if ((found
= wxPyCBH_findCallback(m_myInst
, "CreatePopupMenu"))) {
3189 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3191 if (wxPyConvertSwigPtr(ro
, (void **)&ptr
, wxT("wxMenu")))
3196 wxPyEndBlockThreads(blocked
);
3198 rval
= wxTaskBarIcon::CreatePopupMenu();
3205 IMPLEMENT_ABSTRACT_CLASS(wxPyTaskBarIcon
, wxTaskBarIcon
);
3209 SWIGINTERN
void wxPyTaskBarIcon_Destroy(wxPyTaskBarIcon
*self
){
3213 static const wxString
wxPyFileSelectorPromptStr(wxFileSelectorPromptStr
);
3214 static const wxString
wxPyDirSelectorPromptStr(wxDirSelectorPromptStr
);
3215 static const wxString
wxPyDirDialogNameStr(wxDirDialogNameStr
);
3216 static const wxString
wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr
);
3217 static const wxString
wxPyGetTextFromUserPromptStr(wxGetTextFromUserPromptStr
);
3218 static const wxString
wxPyMessageBoxCaptionStr(wxMessageBoxCaptionStr
);
3219 SWIGINTERN PyObject
*wxFileDialog_GetFilenames(wxFileDialog
*self
){
3221 self
->GetFilenames(arr
);
3222 return wxArrayString2PyList_helper(arr
);
3224 SWIGINTERN PyObject
*wxFileDialog_GetPaths(wxFileDialog
*self
){
3226 self
->GetPaths(arr
);
3227 return wxArrayString2PyList_helper(arr
);
3229 SWIGINTERN PyObject
*wxMultiChoiceDialog_GetSelections(wxMultiChoiceDialog
*self
){
3230 return wxArrayInt2PyList_helper(self
->GetSelections());
3232 SWIGINTERN wxSingleChoiceDialog
*new_wxSingleChoiceDialog(wxWindow
*parent
,wxString
const &message
,wxString
const &caption
,int choices
,wxString
*choices_array
,long style
=wxCHOICEDLG_STYLE
,wxPoint
const &pos
=wxDefaultPosition
){
3233 return new wxSingleChoiceDialog(parent
, message
, caption
,
3234 choices
, choices_array
, NULL
, style
, pos
);
3236 static const wxString
wxPyGetPasswordFromUserPromptStr(wxGetPasswordFromUserPromptStr
);
3240 // C++ version of Python aware wxWindow
3241 class wxPyWindow
: public wxWindow
3243 DECLARE_DYNAMIC_CLASS(wxPyWindow
)
3245 wxPyWindow() : wxWindow() {}
3246 wxPyWindow(wxWindow
* parent
, const wxWindowID id
,
3247 const wxPoint
& pos
= wxDefaultPosition
,
3248 const wxSize
& size
= wxDefaultSize
,
3250 const wxString
& name
= wxPyPanelNameStr
)
3251 : wxWindow(parent
, id
, pos
, size
, style
, name
) {}
3253 void SetBestSize(const wxSize
& size
) { wxWindow::SetBestSize(size
); }
3255 bool DoEraseBackground(wxDC
* dc
) {
3257 return wxWindow::DoEraseBackground(dc
->GetHDC());
3259 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3265 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3266 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3267 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3268 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3270 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3271 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3272 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3274 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3275 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3277 DEC_PYCALLBACK__(InitDialog
);
3278 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3279 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3280 DEC_PYCALLBACK_BOOL_(Validate
);
3282 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3283 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3284 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3286 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3287 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3289 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3290 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3292 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3294 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3299 IMPLEMENT_DYNAMIC_CLASS(wxPyWindow
, wxWindow
);
3301 IMP_PYCALLBACK_VOID_INT4(wxPyWindow
, wxWindow
, DoMoveWindow
);
3302 IMP_PYCALLBACK_VOID_INT5(wxPyWindow
, wxWindow
, DoSetSize
);
3303 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetClientSize
);
3304 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetVirtualSize
);
3306 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetSize
);
3307 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetClientSize
);
3308 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetPosition
);
3310 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetVirtualSize
);
3311 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetBestSize
);
3313 IMP_PYCALLBACK__(wxPyWindow
, wxWindow
, InitDialog
);
3314 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataFromWindow
);
3315 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataToWindow
);
3316 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, Validate
);
3318 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocus
);
3319 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocusFromKeyboard
);
3320 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, GetMaxSize
);
3322 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, AddChild
);
3323 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, RemoveChild
);
3325 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, ShouldInheritColours
);
3326 IMP_PYCALLBACK_VIZATTR_(wxPyWindow
, wxWindow
, GetDefaultAttributes
);
3328 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, HasTransparentBackground
);
3330 IMP_PYCALLBACK_VOID_(wxPyWindow
, wxWindow
, OnInternalIdle
);
3332 // C++ version of Python aware wxPanel
3333 class wxPyPanel
: public wxPanel
3335 DECLARE_DYNAMIC_CLASS(wxPyPanel
)
3337 wxPyPanel() : wxPanel() {}
3338 wxPyPanel(wxWindow
* parent
, const wxWindowID id
,
3339 const wxPoint
& pos
= wxDefaultPosition
,
3340 const wxSize
& size
= wxDefaultSize
,
3342 const wxString
& name
= wxPyPanelNameStr
)
3343 : wxPanel(parent
, id
, pos
, size
, style
, name
) {}
3345 void SetBestSize(const wxSize
& size
) { wxPanel::SetBestSize(size
); }
3346 bool DoEraseBackground(wxDC
* dc
) {
3348 return wxWindow::DoEraseBackground(dc
->GetHDC());
3350 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3357 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3358 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3359 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3360 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3362 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3363 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3364 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3366 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3367 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3369 DEC_PYCALLBACK__(InitDialog
);
3370 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3371 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3372 DEC_PYCALLBACK_BOOL_(Validate
);
3374 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3375 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3376 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3378 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3379 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3381 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3382 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3384 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3386 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3391 IMPLEMENT_DYNAMIC_CLASS(wxPyPanel
, wxPanel
);
3393 IMP_PYCALLBACK_VOID_INT4(wxPyPanel
, wxPanel
, DoMoveWindow
);
3394 IMP_PYCALLBACK_VOID_INT5(wxPyPanel
, wxPanel
, DoSetSize
);
3395 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetClientSize
);
3396 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetVirtualSize
);
3398 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetSize
);
3399 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetClientSize
);
3400 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetPosition
);
3402 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetVirtualSize
);
3403 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetBestSize
);
3405 IMP_PYCALLBACK__(wxPyPanel
, wxPanel
, InitDialog
);
3406 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataFromWindow
);
3407 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataToWindow
);
3408 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, Validate
);
3410 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocus
);
3411 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocusFromKeyboard
);
3412 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, GetMaxSize
);
3414 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, AddChild
);
3415 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, RemoveChild
);
3417 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, ShouldInheritColours
);
3418 IMP_PYCALLBACK_VIZATTR_(wxPyPanel
, wxPanel
, GetDefaultAttributes
);
3420 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, HasTransparentBackground
);
3422 IMP_PYCALLBACK_VOID_(wxPyPanel
, wxPanel
, OnInternalIdle
);
3424 // C++ version of Python aware wxScrolledWindow
3425 class wxPyScrolledWindow
: public wxScrolledWindow
3427 DECLARE_DYNAMIC_CLASS(wxPyScrolledWindow
)
3429 wxPyScrolledWindow() : wxScrolledWindow() {}
3430 wxPyScrolledWindow(wxWindow
* parent
, const wxWindowID id
,
3431 const wxPoint
& pos
= wxDefaultPosition
,
3432 const wxSize
& size
= wxDefaultSize
,
3434 const wxString
& name
= wxPyPanelNameStr
)
3435 : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
) {}
3437 void SetBestSize(const wxSize
& size
) { wxScrolledWindow::SetBestSize(size
); }
3438 bool DoEraseBackground(wxDC
* dc
) {
3440 return wxWindow::DoEraseBackground(dc
->GetHDC());
3442 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3448 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3449 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3450 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3451 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3453 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3454 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3455 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3457 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3458 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3460 DEC_PYCALLBACK__(InitDialog
);
3461 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3462 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3463 DEC_PYCALLBACK_BOOL_(Validate
);
3465 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3466 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3467 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3469 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3470 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3472 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3473 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3475 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3477 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3482 IMPLEMENT_DYNAMIC_CLASS(wxPyScrolledWindow
, wxScrolledWindow
);
3484 IMP_PYCALLBACK_VOID_INT4(wxPyScrolledWindow
, wxScrolledWindow
, DoMoveWindow
);
3485 IMP_PYCALLBACK_VOID_INT5(wxPyScrolledWindow
, wxScrolledWindow
, DoSetSize
);
3486 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetClientSize
);
3487 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetVirtualSize
);
3489 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetSize
);
3490 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetClientSize
);
3491 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetPosition
);
3493 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetVirtualSize
);
3494 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetBestSize
);
3496 IMP_PYCALLBACK__(wxPyScrolledWindow
, wxScrolledWindow
, InitDialog
);
3497 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataFromWindow
);
3498 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataToWindow
);
3499 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, Validate
);
3501 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocus
);
3502 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocusFromKeyboard
);
3503 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, GetMaxSize
);
3505 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, AddChild
);
3506 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, RemoveChild
);
3508 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, ShouldInheritColours
);
3509 IMP_PYCALLBACK_VIZATTR_(wxPyScrolledWindow
, wxScrolledWindow
, GetDefaultAttributes
);
3511 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, HasTransparentBackground
);
3513 IMP_PYCALLBACK_VOID_(wxPyScrolledWindow
, wxScrolledWindow
, OnInternalIdle
);
3516 #include "wx/wxPython/printfw.h"
3519 static const wxString
wxPyPrintoutTitleStr(wxT("Printout"));
3520 static const wxString
wxPyPreviewCanvasNameStr(wxT("previewcanvas"));
3521 SWIGINTERN PyObject
*wxPrintData_GetPrivData(wxPrintData
*self
){
3523 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3524 data
= PyString_FromStringAndSize(self
->GetPrivData(),
3525 self
->GetPrivDataLen());
3526 wxPyEndBlockThreads(blocked
);
3529 SWIGINTERN
void wxPrintData_SetPrivData(wxPrintData
*self
,PyObject
*data
){
3530 if (! PyString_Check(data
)) {
3531 wxPyBLOCK_THREADS(PyErr_SetString(PyExc_TypeError
,
3532 "Expected string object"));
3536 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3537 self
->SetPrivData(PyString_AS_STRING(data
), PyString_GET_SIZE(data
));
3538 wxPyEndBlockThreads(blocked
);
3542 IMPLEMENT_ABSTRACT_CLASS(wxPyPrintout
, wxPrintout
);
3544 // Since this one would be tough and ugly to do with the Macros...
3545 void wxPyPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *pageFrom
, int *pageTo
) {
3546 bool hadErr
= false;
3549 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3550 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetPageInfo"))) {
3551 PyObject
* result
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3552 if (result
&& PyTuple_Check(result
) && PyTuple_Size(result
) == 4) {
3555 val
= PyTuple_GetItem(result
, 0);
3556 if (PyInt_Check(val
)) *minPage
= PyInt_AsLong(val
);
3559 val
= PyTuple_GetItem(result
, 1);
3560 if (PyInt_Check(val
)) *maxPage
= PyInt_AsLong(val
);
3563 val
= PyTuple_GetItem(result
, 2);
3564 if (PyInt_Check(val
)) *pageFrom
= PyInt_AsLong(val
);
3567 val
= PyTuple_GetItem(result
, 3);
3568 if (PyInt_Check(val
)) *pageTo
= PyInt_AsLong(val
);
3575 PyErr_SetString(PyExc_TypeError
, "GetPageInfo should return a tuple of 4 integers.");
3580 wxPyEndBlockThreads(blocked
);
3582 wxPrintout::GetPageInfo(minPage
, maxPage
, pageFrom
, pageTo
);
3587 IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout
, wxPrintout
, OnBeginDocument
);
3588 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndDocument
);
3589 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnBeginPrinting
);
3590 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndPrinting
);
3591 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnPreparePrinting
);
3592 IMP_PYCALLBACK_BOOL_INT_pure(wxPyPrintout
, wxPrintout
, OnPrintPage
);
3593 IMP_PYCALLBACK_BOOL_INT(wxPyPrintout
, wxPrintout
, HasPage
);
3599 #define DEC_PYCALLBACK_BOOL_PREWINDC(CBNAME) \
3600 bool CBNAME(wxPreviewCanvas* a, wxDC& b)
3603 #define IMP_PYCALLBACK_BOOL_PREWINDC(CLASS, PCLASS, CBNAME) \
3604 bool CLASS::CBNAME(wxPreviewCanvas* a, wxDC& b) { \
3607 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
3608 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
3609 PyObject* win = wxPyMake_wxObject(a,false); \
3610 PyObject* dc = wxPyMake_wxObject(&b,false); \
3611 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", win, dc)); \
3615 wxPyEndBlockThreads(blocked); \
3617 rval = PCLASS::CBNAME(a, b); \
3624 class wxPyPrintPreview
: public wxPrintPreview
3626 DECLARE_CLASS(wxPyPrintPreview
)
3628 wxPyPrintPreview(wxPyPrintout
* printout
,
3629 wxPyPrintout
* printoutForPrinting
,
3630 wxPrintDialogData
* data
=NULL
)
3631 : wxPrintPreview(printout
, printoutForPrinting
, data
)
3633 wxPyPrintPreview(wxPyPrintout
* printout
,
3634 wxPyPrintout
* printoutForPrinting
,
3636 : wxPrintPreview(printout
, printoutForPrinting
, data
)
3639 DEC_PYCALLBACK_BOOL_INT(SetCurrentPage
);
3640 DEC_PYCALLBACK_BOOL_PREWINDC(PaintPage
);
3641 DEC_PYCALLBACK_BOOL_PREWINDC(DrawBlankPage
);
3642 DEC_PYCALLBACK_BOOL_INT(RenderPage
);
3643 DEC_PYCALLBACK_VOID_INT(SetZoom
);
3644 DEC_PYCALLBACK_BOOL_BOOL(Print
);
3645 DEC_PYCALLBACK_VOID_(DetermineScaling
);
3650 // Stupid renamed classes... Fix this in 2.5...
3651 #if defined(__WXMSW__)
3652 IMPLEMENT_CLASS( wxPyPrintPreview
, wxWindowsPrintPreview
);
3653 #elif defined(__WXMAC__)
3654 IMPLEMENT_CLASS( wxPyPrintPreview
, wxMacPrintPreview
);
3656 IMPLEMENT_CLASS( wxPyPrintPreview
, wxPostScriptPrintPreview
);
3659 IMP_PYCALLBACK_BOOL_INT (wxPyPrintPreview
, wxPrintPreview
, SetCurrentPage
);
3660 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, PaintPage
);
3661 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, DrawBlankPage
);
3662 IMP_PYCALLBACK_BOOL_INT (wxPyPrintPreview
, wxPrintPreview
, RenderPage
);
3663 IMP_PYCALLBACK_VOID_INT (wxPyPrintPreview
, wxPrintPreview
, SetZoom
);
3664 IMP_PYCALLBACK_BOOL_BOOL (wxPyPrintPreview
, wxPrintPreview
, Print
);
3665 IMP_PYCALLBACK_VOID_ (wxPyPrintPreview
, wxPrintPreview
, DetermineScaling
);
3668 class wxPyPreviewFrame
: public wxPreviewFrame
3670 DECLARE_CLASS(wxPyPreviewFrame
)
3672 wxPyPreviewFrame(wxPrintPreview
* preview
, wxFrame
* parent
,
3673 const wxString
& title
,
3674 const wxPoint
& pos
= wxDefaultPosition
,
3675 const wxSize
& size
= wxDefaultSize
,
3676 long style
= wxDEFAULT_FRAME_STYLE
,
3677 const wxString
& name
= wxPyFrameNameStr
)
3678 : wxPreviewFrame(preview
, parent
, title
, pos
, size
, style
, name
)
3681 void SetPreviewCanvas(wxPreviewCanvas
* canvas
) { m_previewCanvas
= canvas
; }
3682 void SetControlBar(wxPreviewControlBar
* bar
) { m_controlBar
= bar
; }
3684 DEC_PYCALLBACK_VOID_(Initialize
);
3685 DEC_PYCALLBACK_VOID_(CreateCanvas
);
3686 DEC_PYCALLBACK_VOID_(CreateControlBar
);
3691 IMPLEMENT_CLASS(wxPyPreviewFrame
, wxPreviewFrame
);
3693 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, Initialize
);
3694 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateCanvas
);
3695 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateControlBar
);
3698 class wxPyPreviewControlBar
: public wxPreviewControlBar
3700 DECLARE_CLASS(wxPyPreviewControlBar
)
3702 wxPyPreviewControlBar(wxPrintPreview
*preview
,
3705 const wxPoint
& pos
= wxDefaultPosition
,
3706 const wxSize
& size
= wxDefaultSize
,
3708 const wxString
& name
= wxPyPanelNameStr
)
3709 : wxPreviewControlBar(preview
, buttons
, parent
, pos
, size
, style
, name
)
3712 void SetPrintPreview(wxPrintPreview
* preview
) { m_printPreview
= preview
; }
3714 DEC_PYCALLBACK_VOID_(CreateButtons
);
3715 DEC_PYCALLBACK_VOID_INT(SetZoomControl
);
3720 IMPLEMENT_CLASS(wxPyPreviewControlBar
, wxPreviewControlBar
);
3721 IMP_PYCALLBACK_VOID_(wxPyPreviewControlBar
, wxPreviewControlBar
, CreateButtons
);
3722 IMP_PYCALLBACK_VOID_INT(wxPyPreviewControlBar
, wxPreviewControlBar
, SetZoomControl
);
3727 SWIGINTERN PyObject
*_wrap_new_Panel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3728 PyObject
*resultobj
= 0;
3729 wxWindow
*arg1
= (wxWindow
*) 0 ;
3730 int arg2
= (int) (int)-1 ;
3731 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
3732 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
3733 wxSize
const &arg4_defvalue
= wxDefaultSize
;
3734 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
3735 long arg5
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER
;
3736 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
3737 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
3738 wxPanel
*result
= 0 ;
3747 bool temp6
= false ;
3748 PyObject
* obj0
= 0 ;
3749 PyObject
* obj1
= 0 ;
3750 PyObject
* obj2
= 0 ;
3751 PyObject
* obj3
= 0 ;
3752 PyObject
* obj4
= 0 ;
3753 PyObject
* obj5
= 0 ;
3754 char * kwnames
[] = {
3755 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
3758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Panel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
3759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3760 if (!SWIG_IsOK(res1
)) {
3761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Panel" "', expected argument " "1"" of type '" "wxWindow *""'");
3763 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
3765 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3766 if (!SWIG_IsOK(ecode2
)) {
3767 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Panel" "', expected argument " "2"" of type '" "int""'");
3769 arg2
= static_cast< int >(val2
);
3774 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
3780 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
3784 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
3785 if (!SWIG_IsOK(ecode5
)) {
3786 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_Panel" "', expected argument " "5"" of type '" "long""'");
3788 arg5
= static_cast< long >(val5
);
3792 arg6
= wxString_in_helper(obj5
);
3793 if (arg6
== NULL
) SWIG_fail
;
3798 if (!wxPyCheckForApp()) SWIG_fail
;
3799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3800 result
= (wxPanel
*)new wxPanel(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
3801 wxPyEndAllowThreads(__tstate
);
3802 if (PyErr_Occurred()) SWIG_fail
;
3804 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPanel
, SWIG_POINTER_NEW
| 0 );
3819 SWIGINTERN PyObject
*_wrap_new_PrePanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3820 PyObject
*resultobj
= 0;
3821 wxPanel
*result
= 0 ;
3823 if (!SWIG_Python_UnpackTuple(args
,"new_PrePanel",0,0,0)) SWIG_fail
;
3825 if (!wxPyCheckForApp()) SWIG_fail
;
3826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3827 result
= (wxPanel
*)new wxPanel();
3828 wxPyEndAllowThreads(__tstate
);
3829 if (PyErr_Occurred()) SWIG_fail
;
3831 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPanel
, SWIG_POINTER_OWN
| 0 );
3838 SWIGINTERN PyObject
*_wrap_Panel_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3839 PyObject
*resultobj
= 0;
3840 wxPanel
*arg1
= (wxPanel
*) 0 ;
3841 wxWindow
*arg2
= (wxWindow
*) 0 ;
3842 int arg3
= (int) (int)-1 ;
3843 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
3844 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
3845 wxSize
const &arg5_defvalue
= wxDefaultSize
;
3846 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
3847 long arg6
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER
;
3848 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
3849 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
3861 bool temp7
= false ;
3862 PyObject
* obj0
= 0 ;
3863 PyObject
* obj1
= 0 ;
3864 PyObject
* obj2
= 0 ;
3865 PyObject
* obj3
= 0 ;
3866 PyObject
* obj4
= 0 ;
3867 PyObject
* obj5
= 0 ;
3868 PyObject
* obj6
= 0 ;
3869 char * kwnames
[] = {
3870 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
3873 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Panel_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
3874 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPanel
, 0 | 0 );
3875 if (!SWIG_IsOK(res1
)) {
3876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Panel_Create" "', expected argument " "1"" of type '" "wxPanel *""'");
3878 arg1
= reinterpret_cast< wxPanel
* >(argp1
);
3879 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3880 if (!SWIG_IsOK(res2
)) {
3881 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Panel_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
3883 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
3885 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3886 if (!SWIG_IsOK(ecode3
)) {
3887 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Panel_Create" "', expected argument " "3"" of type '" "int""'");
3889 arg3
= static_cast< int >(val3
);
3894 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3900 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3904 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
3905 if (!SWIG_IsOK(ecode6
)) {
3906 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "Panel_Create" "', expected argument " "6"" of type '" "long""'");
3908 arg6
= static_cast< long >(val6
);
3912 arg7
= wxString_in_helper(obj6
);
3913 if (arg7
== NULL
) SWIG_fail
;
3918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3919 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3920 wxPyEndAllowThreads(__tstate
);
3921 if (PyErr_Occurred()) SWIG_fail
;
3924 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3940 SWIGINTERN PyObject
*_wrap_Panel_SetFocusIgnoringChildren(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3941 PyObject
*resultobj
= 0;
3942 wxPanel
*arg1
= (wxPanel
*) 0 ;
3945 PyObject
*swig_obj
[1] ;
3947 if (!args
) SWIG_fail
;
3949 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPanel
, 0 | 0 );
3950 if (!SWIG_IsOK(res1
)) {
3951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Panel_SetFocusIgnoringChildren" "', expected argument " "1"" of type '" "wxPanel *""'");
3953 arg1
= reinterpret_cast< wxPanel
* >(argp1
);
3955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3956 (arg1
)->SetFocusIgnoringChildren();
3957 wxPyEndAllowThreads(__tstate
);
3958 if (PyErr_Occurred()) SWIG_fail
;
3960 resultobj
= SWIG_Py_Void();
3967 SWIGINTERN PyObject
*_wrap_Panel_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3968 PyObject
*resultobj
= 0;
3969 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
3970 SwigValueWrapper
<wxVisualAttributes
> result
;
3973 PyObject
* obj0
= 0 ;
3974 char * kwnames
[] = {
3975 (char *) "variant", NULL
3978 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Panel_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
3980 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
3981 if (!SWIG_IsOK(ecode1
)) {
3982 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Panel_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
3984 arg1
= static_cast< wxWindowVariant
>(val1
);
3987 if (!wxPyCheckForApp()) SWIG_fail
;
3988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3989 result
= wxPanel::GetClassDefaultAttributes(arg1
);
3990 wxPyEndAllowThreads(__tstate
);
3991 if (PyErr_Occurred()) SWIG_fail
;
3993 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
4000 SWIGINTERN PyObject
*Panel_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4002 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4003 SWIG_TypeNewClientData(SWIGTYPE_p_wxPanel
, SWIG_NewClientData(obj
));
4004 return SWIG_Py_Void();
4007 SWIGINTERN PyObject
*Panel_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4008 return SWIG_Python_InitShadowInstance(args
);
4011 SWIGINTERN PyObject
*_wrap_new_ScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4012 PyObject
*resultobj
= 0;
4013 wxWindow
*arg1
= (wxWindow
*) 0 ;
4014 int arg2
= (int) (int)-1 ;
4015 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
4016 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
4017 wxSize
const &arg4_defvalue
= wxDefaultSize
;
4018 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
4019 long arg5
= (long) wxHSCROLL
|wxVSCROLL
;
4020 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
4021 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
4022 wxScrolledWindow
*result
= 0 ;
4031 bool temp6
= false ;
4032 PyObject
* obj0
= 0 ;
4033 PyObject
* obj1
= 0 ;
4034 PyObject
* obj2
= 0 ;
4035 PyObject
* obj3
= 0 ;
4036 PyObject
* obj4
= 0 ;
4037 PyObject
* obj5
= 0 ;
4038 char * kwnames
[] = {
4039 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4042 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_ScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
4043 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4044 if (!SWIG_IsOK(res1
)) {
4045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
4047 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
4049 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4050 if (!SWIG_IsOK(ecode2
)) {
4051 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_ScrolledWindow" "', expected argument " "2"" of type '" "int""'");
4053 arg2
= static_cast< int >(val2
);
4058 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
4064 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
4068 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
4069 if (!SWIG_IsOK(ecode5
)) {
4070 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_ScrolledWindow" "', expected argument " "5"" of type '" "long""'");
4072 arg5
= static_cast< long >(val5
);
4076 arg6
= wxString_in_helper(obj5
);
4077 if (arg6
== NULL
) SWIG_fail
;
4082 if (!wxPyCheckForApp()) SWIG_fail
;
4083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4084 result
= (wxScrolledWindow
*)new wxScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
4085 wxPyEndAllowThreads(__tstate
);
4086 if (PyErr_Occurred()) SWIG_fail
;
4088 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_NEW
| 0 );
4103 SWIGINTERN PyObject
*_wrap_new_PreScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4104 PyObject
*resultobj
= 0;
4105 wxScrolledWindow
*result
= 0 ;
4107 if (!SWIG_Python_UnpackTuple(args
,"new_PreScrolledWindow",0,0,0)) SWIG_fail
;
4109 if (!wxPyCheckForApp()) SWIG_fail
;
4110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4111 result
= (wxScrolledWindow
*)new wxScrolledWindow();
4112 wxPyEndAllowThreads(__tstate
);
4113 if (PyErr_Occurred()) SWIG_fail
;
4115 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_OWN
| 0 );
4122 SWIGINTERN PyObject
*_wrap_ScrolledWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4123 PyObject
*resultobj
= 0;
4124 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4125 wxWindow
*arg2
= (wxWindow
*) 0 ;
4126 int arg3
= (int) (int)-1 ;
4127 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4128 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4129 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4130 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4131 long arg6
= (long) wxHSCROLL
|wxVSCROLL
;
4132 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
4133 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
4145 bool temp7
= false ;
4146 PyObject
* obj0
= 0 ;
4147 PyObject
* obj1
= 0 ;
4148 PyObject
* obj2
= 0 ;
4149 PyObject
* obj3
= 0 ;
4150 PyObject
* obj4
= 0 ;
4151 PyObject
* obj5
= 0 ;
4152 PyObject
* obj6
= 0 ;
4153 char * kwnames
[] = {
4154 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4157 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:ScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
4158 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4159 if (!SWIG_IsOK(res1
)) {
4160 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_Create" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4162 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4163 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4164 if (!SWIG_IsOK(res2
)) {
4165 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
4167 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4169 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4170 if (!SWIG_IsOK(ecode3
)) {
4171 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_Create" "', expected argument " "3"" of type '" "int""'");
4173 arg3
= static_cast< int >(val3
);
4178 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4184 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4188 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
4189 if (!SWIG_IsOK(ecode6
)) {
4190 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "ScrolledWindow_Create" "', expected argument " "6"" of type '" "long""'");
4192 arg6
= static_cast< long >(val6
);
4196 arg7
= wxString_in_helper(obj6
);
4197 if (arg7
== NULL
) SWIG_fail
;
4202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4203 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
4204 wxPyEndAllowThreads(__tstate
);
4205 if (PyErr_Occurred()) SWIG_fail
;
4208 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4224 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4225 PyObject
*resultobj
= 0;
4226 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4231 int arg6
= (int) 0 ;
4232 int arg7
= (int) 0 ;
4233 bool arg8
= (bool) false ;
4250 PyObject
* obj0
= 0 ;
4251 PyObject
* obj1
= 0 ;
4252 PyObject
* obj2
= 0 ;
4253 PyObject
* obj3
= 0 ;
4254 PyObject
* obj4
= 0 ;
4255 PyObject
* obj5
= 0 ;
4256 PyObject
* obj6
= 0 ;
4257 PyObject
* obj7
= 0 ;
4258 char * kwnames
[] = {
4259 (char *) "self",(char *) "pixelsPerUnitX",(char *) "pixelsPerUnitY",(char *) "noUnitsX",(char *) "noUnitsY",(char *) "xPos",(char *) "yPos",(char *) "noRefresh", NULL
4262 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOO:ScrolledWindow_SetScrollbars",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
4263 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4264 if (!SWIG_IsOK(res1
)) {
4265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4267 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4268 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4269 if (!SWIG_IsOK(ecode2
)) {
4270 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "2"" of type '" "int""'");
4272 arg2
= static_cast< int >(val2
);
4273 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4274 if (!SWIG_IsOK(ecode3
)) {
4275 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "3"" of type '" "int""'");
4277 arg3
= static_cast< int >(val3
);
4278 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
4279 if (!SWIG_IsOK(ecode4
)) {
4280 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "4"" of type '" "int""'");
4282 arg4
= static_cast< int >(val4
);
4283 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
4284 if (!SWIG_IsOK(ecode5
)) {
4285 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "5"" of type '" "int""'");
4287 arg5
= static_cast< int >(val5
);
4289 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
4290 if (!SWIG_IsOK(ecode6
)) {
4291 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "6"" of type '" "int""'");
4293 arg6
= static_cast< int >(val6
);
4296 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
4297 if (!SWIG_IsOK(ecode7
)) {
4298 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "7"" of type '" "int""'");
4300 arg7
= static_cast< int >(val7
);
4303 ecode8
= SWIG_AsVal_bool(obj7
, &val8
);
4304 if (!SWIG_IsOK(ecode8
)) {
4305 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "8"" of type '" "bool""'");
4307 arg8
= static_cast< bool >(val8
);
4310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4311 (arg1
)->SetScrollbars(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
4312 wxPyEndAllowThreads(__tstate
);
4313 if (PyErr_Occurred()) SWIG_fail
;
4315 resultobj
= SWIG_Py_Void();
4322 SWIGINTERN PyObject
*_wrap_ScrolledWindow_Scroll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4323 PyObject
*resultobj
= 0;
4324 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4333 PyObject
* obj0
= 0 ;
4334 PyObject
* obj1
= 0 ;
4335 PyObject
* obj2
= 0 ;
4336 char * kwnames
[] = {
4337 (char *) "self",(char *) "x",(char *) "y", NULL
4340 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_Scroll",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4341 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4342 if (!SWIG_IsOK(res1
)) {
4343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4345 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4346 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4347 if (!SWIG_IsOK(ecode2
)) {
4348 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "2"" of type '" "int""'");
4350 arg2
= static_cast< int >(val2
);
4351 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4352 if (!SWIG_IsOK(ecode3
)) {
4353 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "3"" of type '" "int""'");
4355 arg3
= static_cast< int >(val3
);
4357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4358 (arg1
)->Scroll(arg2
,arg3
);
4359 wxPyEndAllowThreads(__tstate
);
4360 if (PyErr_Occurred()) SWIG_fail
;
4362 resultobj
= SWIG_Py_Void();
4369 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScrollPageSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4370 PyObject
*resultobj
= 0;
4371 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4378 PyObject
* obj0
= 0 ;
4379 PyObject
* obj1
= 0 ;
4380 char * kwnames
[] = {
4381 (char *) "self",(char *) "orient", NULL
4384 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_GetScrollPageSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4385 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4386 if (!SWIG_IsOK(res1
)) {
4387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScrollPageSize" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4389 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4390 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4391 if (!SWIG_IsOK(ecode2
)) {
4392 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_GetScrollPageSize" "', expected argument " "2"" of type '" "int""'");
4394 arg2
= static_cast< int >(val2
);
4396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4397 result
= (int)((wxScrolledWindow
const *)arg1
)->GetScrollPageSize(arg2
);
4398 wxPyEndAllowThreads(__tstate
);
4399 if (PyErr_Occurred()) SWIG_fail
;
4401 resultobj
= SWIG_From_int(static_cast< int >(result
));
4408 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollPageSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4409 PyObject
*resultobj
= 0;
4410 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4419 PyObject
* obj0
= 0 ;
4420 PyObject
* obj1
= 0 ;
4421 PyObject
* obj2
= 0 ;
4422 char * kwnames
[] = {
4423 (char *) "self",(char *) "orient",(char *) "pageSize", NULL
4426 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollPageSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4427 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4428 if (!SWIG_IsOK(res1
)) {
4429 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4431 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4432 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4433 if (!SWIG_IsOK(ecode2
)) {
4434 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "2"" of type '" "int""'");
4436 arg2
= static_cast< int >(val2
);
4437 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4438 if (!SWIG_IsOK(ecode3
)) {
4439 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "3"" of type '" "int""'");
4441 arg3
= static_cast< int >(val3
);
4443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4444 (arg1
)->SetScrollPageSize(arg2
,arg3
);
4445 wxPyEndAllowThreads(__tstate
);
4446 if (PyErr_Occurred()) SWIG_fail
;
4448 resultobj
= SWIG_Py_Void();
4455 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollRate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4456 PyObject
*resultobj
= 0;
4457 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4466 PyObject
* obj0
= 0 ;
4467 PyObject
* obj1
= 0 ;
4468 PyObject
* obj2
= 0 ;
4469 char * kwnames
[] = {
4470 (char *) "self",(char *) "xstep",(char *) "ystep", NULL
4473 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollRate",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4474 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4475 if (!SWIG_IsOK(res1
)) {
4476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4478 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4479 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4480 if (!SWIG_IsOK(ecode2
)) {
4481 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "2"" of type '" "int""'");
4483 arg2
= static_cast< int >(val2
);
4484 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4485 if (!SWIG_IsOK(ecode3
)) {
4486 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "3"" of type '" "int""'");
4488 arg3
= static_cast< int >(val3
);
4490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4491 (arg1
)->SetScrollRate(arg2
,arg3
);
4492 wxPyEndAllowThreads(__tstate
);
4493 if (PyErr_Occurred()) SWIG_fail
;
4495 resultobj
= SWIG_Py_Void();
4502 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScrollPixelsPerUnit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4503 PyObject
*resultobj
= 0;
4504 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4505 int *arg2
= (int *) 0 ;
4506 int *arg3
= (int *) 0 ;
4510 int res2
= SWIG_TMPOBJ
;
4512 int res3
= SWIG_TMPOBJ
;
4513 PyObject
*swig_obj
[1] ;
4517 if (!args
) SWIG_fail
;
4519 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4520 if (!SWIG_IsOK(res1
)) {
4521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScrollPixelsPerUnit" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4523 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4526 ((wxScrolledWindow
const *)arg1
)->GetScrollPixelsPerUnit(arg2
,arg3
);
4527 wxPyEndAllowThreads(__tstate
);
4528 if (PyErr_Occurred()) SWIG_fail
;
4530 resultobj
= SWIG_Py_Void();
4531 if (SWIG_IsTmpObj(res2
)) {
4532 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4534 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4535 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4537 if (SWIG_IsTmpObj(res3
)) {
4538 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
4540 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4541 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
4549 SWIGINTERN PyObject
*_wrap_ScrolledWindow_EnableScrolling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4550 PyObject
*resultobj
= 0;
4551 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4560 PyObject
* obj0
= 0 ;
4561 PyObject
* obj1
= 0 ;
4562 PyObject
* obj2
= 0 ;
4563 char * kwnames
[] = {
4564 (char *) "self",(char *) "x_scrolling",(char *) "y_scrolling", NULL
4567 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_EnableScrolling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4568 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4569 if (!SWIG_IsOK(res1
)) {
4570 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4572 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4573 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4574 if (!SWIG_IsOK(ecode2
)) {
4575 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "2"" of type '" "bool""'");
4577 arg2
= static_cast< bool >(val2
);
4578 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
4579 if (!SWIG_IsOK(ecode3
)) {
4580 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "3"" of type '" "bool""'");
4582 arg3
= static_cast< bool >(val3
);
4584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4585 (arg1
)->EnableScrolling(arg2
,arg3
);
4586 wxPyEndAllowThreads(__tstate
);
4587 if (PyErr_Occurred()) SWIG_fail
;
4589 resultobj
= SWIG_Py_Void();
4596 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetViewStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4597 PyObject
*resultobj
= 0;
4598 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4599 int *arg2
= (int *) 0 ;
4600 int *arg3
= (int *) 0 ;
4604 int res2
= SWIG_TMPOBJ
;
4606 int res3
= SWIG_TMPOBJ
;
4607 PyObject
*swig_obj
[1] ;
4611 if (!args
) SWIG_fail
;
4613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4614 if (!SWIG_IsOK(res1
)) {
4615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetViewStart" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4617 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4620 ((wxScrolledWindow
const *)arg1
)->GetViewStart(arg2
,arg3
);
4621 wxPyEndAllowThreads(__tstate
);
4622 if (PyErr_Occurred()) SWIG_fail
;
4624 resultobj
= SWIG_Py_Void();
4625 if (SWIG_IsTmpObj(res2
)) {
4626 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4628 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4629 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4631 if (SWIG_IsTmpObj(res3
)) {
4632 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
4634 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4635 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
4643 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4644 PyObject
*resultobj
= 0;
4645 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4654 PyObject
* obj0
= 0 ;
4655 PyObject
* obj1
= 0 ;
4656 PyObject
* obj2
= 0 ;
4657 char * kwnames
[] = {
4658 (char *) "self",(char *) "xs",(char *) "ys", NULL
4661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScale",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4663 if (!SWIG_IsOK(res1
)) {
4664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4666 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4667 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
4668 if (!SWIG_IsOK(ecode2
)) {
4669 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "2"" of type '" "double""'");
4671 arg2
= static_cast< double >(val2
);
4672 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
4673 if (!SWIG_IsOK(ecode3
)) {
4674 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "3"" of type '" "double""'");
4676 arg3
= static_cast< double >(val3
);
4678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4679 (arg1
)->SetScale(arg2
,arg3
);
4680 wxPyEndAllowThreads(__tstate
);
4681 if (PyErr_Occurred()) SWIG_fail
;
4683 resultobj
= SWIG_Py_Void();
4690 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScaleX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4691 PyObject
*resultobj
= 0;
4692 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4696 PyObject
*swig_obj
[1] ;
4698 if (!args
) SWIG_fail
;
4700 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4701 if (!SWIG_IsOK(res1
)) {
4702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScaleX" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4704 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4706 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4707 result
= (double)((wxScrolledWindow
const *)arg1
)->GetScaleX();
4708 wxPyEndAllowThreads(__tstate
);
4709 if (PyErr_Occurred()) SWIG_fail
;
4711 resultobj
= SWIG_From_double(static_cast< double >(result
));
4718 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScaleY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4719 PyObject
*resultobj
= 0;
4720 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4724 PyObject
*swig_obj
[1] ;
4726 if (!args
) SWIG_fail
;
4728 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4729 if (!SWIG_IsOK(res1
)) {
4730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScaleY" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4732 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4735 result
= (double)((wxScrolledWindow
const *)arg1
)->GetScaleY();
4736 wxPyEndAllowThreads(__tstate
);
4737 if (PyErr_Occurred()) SWIG_fail
;
4739 resultobj
= SWIG_From_double(static_cast< double >(result
));
4746 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4747 PyObject
*resultobj
= 0;
4748 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4755 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
4756 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4757 if (!SWIG_IsOK(res1
)) {
4758 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4760 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4763 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
4766 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4767 result
= ((wxScrolledWindow
const *)arg1
)->CalcScrolledPosition((wxPoint
const &)*arg2
);
4768 wxPyEndAllowThreads(__tstate
);
4769 if (PyErr_Occurred()) SWIG_fail
;
4771 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
4778 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4779 PyObject
*resultobj
= 0;
4780 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4783 int *arg4
= (int *) 0 ;
4784 int *arg5
= (int *) 0 ;
4792 int res4
= SWIG_TMPOBJ
;
4794 int res5
= SWIG_TMPOBJ
;
4798 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
4799 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4800 if (!SWIG_IsOK(res1
)) {
4801 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4803 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4804 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
4805 if (!SWIG_IsOK(ecode2
)) {
4806 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "2"" of type '" "int""'");
4808 arg2
= static_cast< int >(val2
);
4809 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
4810 if (!SWIG_IsOK(ecode3
)) {
4811 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "3"" of type '" "int""'");
4813 arg3
= static_cast< int >(val3
);
4815 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4816 ((wxScrolledWindow
const *)arg1
)->CalcScrolledPosition(arg2
,arg3
,arg4
,arg5
);
4817 wxPyEndAllowThreads(__tstate
);
4818 if (PyErr_Occurred()) SWIG_fail
;
4820 resultobj
= SWIG_Py_Void();
4821 if (SWIG_IsTmpObj(res4
)) {
4822 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
4824 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4825 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
4827 if (SWIG_IsTmpObj(res5
)) {
4828 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
4830 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4831 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
4839 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition(PyObject
*self
, PyObject
*args
) {
4843 if (!(argc
= SWIG_Python_UnpackTuple(args
,"ScrolledWindow_CalcScrolledPosition",0,3,argv
))) SWIG_fail
;
4846 return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(self
, argc
, argv
);
4849 return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(self
, argc
, argv
);
4853 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcScrolledPosition'");
4858 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4859 PyObject
*resultobj
= 0;
4860 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4867 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
4868 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4869 if (!SWIG_IsOK(res1
)) {
4870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4872 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4875 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
4878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4879 result
= ((wxScrolledWindow
const *)arg1
)->CalcUnscrolledPosition((wxPoint
const &)*arg2
);
4880 wxPyEndAllowThreads(__tstate
);
4881 if (PyErr_Occurred()) SWIG_fail
;
4883 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
4890 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4891 PyObject
*resultobj
= 0;
4892 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4895 int *arg4
= (int *) 0 ;
4896 int *arg5
= (int *) 0 ;
4904 int res4
= SWIG_TMPOBJ
;
4906 int res5
= SWIG_TMPOBJ
;
4910 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
4911 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4912 if (!SWIG_IsOK(res1
)) {
4913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4915 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4916 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
4917 if (!SWIG_IsOK(ecode2
)) {
4918 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "2"" of type '" "int""'");
4920 arg2
= static_cast< int >(val2
);
4921 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
4922 if (!SWIG_IsOK(ecode3
)) {
4923 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "3"" of type '" "int""'");
4925 arg3
= static_cast< int >(val3
);
4927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4928 ((wxScrolledWindow
const *)arg1
)->CalcUnscrolledPosition(arg2
,arg3
,arg4
,arg5
);
4929 wxPyEndAllowThreads(__tstate
);
4930 if (PyErr_Occurred()) SWIG_fail
;
4932 resultobj
= SWIG_Py_Void();
4933 if (SWIG_IsTmpObj(res4
)) {
4934 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
4936 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4937 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
4939 if (SWIG_IsTmpObj(res5
)) {
4940 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
4942 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4943 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
4951 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition(PyObject
*self
, PyObject
*args
) {
4955 if (!(argc
= SWIG_Python_UnpackTuple(args
,"ScrolledWindow_CalcUnscrolledPosition",0,3,argv
))) SWIG_fail
;
4958 return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(self
, argc
, argv
);
4961 return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(self
, argc
, argv
);
4965 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcUnscrolledPosition'");
4970 SWIGINTERN PyObject
*_wrap_ScrolledWindow_AdjustScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4971 PyObject
*resultobj
= 0;
4972 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4975 PyObject
*swig_obj
[1] ;
4977 if (!args
) SWIG_fail
;
4979 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4980 if (!SWIG_IsOK(res1
)) {
4981 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_AdjustScrollbars" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4983 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4986 (arg1
)->AdjustScrollbars();
4987 wxPyEndAllowThreads(__tstate
);
4988 if (PyErr_Occurred()) SWIG_fail
;
4990 resultobj
= SWIG_Py_Void();
4997 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrollInc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4998 PyObject
*resultobj
= 0;
4999 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5000 wxScrollWinEvent
*arg2
= 0 ;
5006 PyObject
* obj0
= 0 ;
5007 PyObject
* obj1
= 0 ;
5008 char * kwnames
[] = {
5009 (char *) "self",(char *) "event", NULL
5012 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_CalcScrollInc",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5013 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5014 if (!SWIG_IsOK(res1
)) {
5015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5017 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5018 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxScrollWinEvent
, 0 );
5019 if (!SWIG_IsOK(res2
)) {
5020 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "2"" of type '" "wxScrollWinEvent &""'");
5023 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "2"" of type '" "wxScrollWinEvent &""'");
5025 arg2
= reinterpret_cast< wxScrollWinEvent
* >(argp2
);
5027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5028 result
= (int)(arg1
)->CalcScrollInc(*arg2
);
5029 wxPyEndAllowThreads(__tstate
);
5030 if (PyErr_Occurred()) SWIG_fail
;
5032 resultobj
= SWIG_From_int(static_cast< int >(result
));
5039 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetTargetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5040 PyObject
*resultobj
= 0;
5041 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5042 wxWindow
*arg2
= (wxWindow
*) 0 ;
5047 PyObject
* obj0
= 0 ;
5048 PyObject
* obj1
= 0 ;
5049 char * kwnames
[] = {
5050 (char *) "self",(char *) "target", NULL
5053 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_SetTargetWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5054 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5055 if (!SWIG_IsOK(res1
)) {
5056 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetTargetWindow" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5058 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5059 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5060 if (!SWIG_IsOK(res2
)) {
5061 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_SetTargetWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
5063 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
5065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5066 (arg1
)->SetTargetWindow(arg2
);
5067 wxPyEndAllowThreads(__tstate
);
5068 if (PyErr_Occurred()) SWIG_fail
;
5070 resultobj
= SWIG_Py_Void();
5077 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetTargetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5078 PyObject
*resultobj
= 0;
5079 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5080 wxWindow
*result
= 0 ;
5083 PyObject
*swig_obj
[1] ;
5085 if (!args
) SWIG_fail
;
5087 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5088 if (!SWIG_IsOK(res1
)) {
5089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetTargetWindow" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
5091 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5094 result
= (wxWindow
*)((wxScrolledWindow
const *)arg1
)->GetTargetWindow();
5095 wxPyEndAllowThreads(__tstate
);
5096 if (PyErr_Occurred()) SWIG_fail
;
5099 resultobj
= wxPyMake_wxObject(result
, 0);
5107 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetTargetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5108 PyObject
*resultobj
= 0;
5109 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5114 PyObject
* obj0
= 0 ;
5115 PyObject
* obj1
= 0 ;
5116 char * kwnames
[] = {
5117 (char *) "self",(char *) "rect", NULL
5120 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_SetTargetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5121 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5122 if (!SWIG_IsOK(res1
)) {
5123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetTargetRect" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5125 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5128 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
5131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5132 (arg1
)->SetTargetRect((wxRect
const &)*arg2
);
5133 wxPyEndAllowThreads(__tstate
);
5134 if (PyErr_Occurred()) SWIG_fail
;
5136 resultobj
= SWIG_Py_Void();
5143 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetTargetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5144 PyObject
*resultobj
= 0;
5145 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5149 PyObject
*swig_obj
[1] ;
5151 if (!args
) SWIG_fail
;
5153 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5154 if (!SWIG_IsOK(res1
)) {
5155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetTargetRect" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
5157 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5160 result
= ((wxScrolledWindow
const *)arg1
)->GetTargetRect();
5161 wxPyEndAllowThreads(__tstate
);
5162 if (PyErr_Occurred()) SWIG_fail
;
5164 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
5171 SWIGINTERN PyObject
*_wrap_ScrolledWindow_DoPrepareDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5172 PyObject
*resultobj
= 0;
5173 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5179 PyObject
* obj0
= 0 ;
5180 PyObject
* obj1
= 0 ;
5181 char * kwnames
[] = {
5182 (char *) "self",(char *) "dc", NULL
5185 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_DoPrepareDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5186 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5187 if (!SWIG_IsOK(res1
)) {
5188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5190 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5191 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
5192 if (!SWIG_IsOK(res2
)) {
5193 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "2"" of type '" "wxDC &""'");
5196 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "2"" of type '" "wxDC &""'");
5198 arg2
= reinterpret_cast< wxDC
* >(argp2
);
5200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5201 (arg1
)->DoPrepareDC(*arg2
);
5202 wxPyEndAllowThreads(__tstate
);
5203 if (PyErr_Occurred()) SWIG_fail
;
5205 resultobj
= SWIG_Py_Void();
5212 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5213 PyObject
*resultobj
= 0;
5214 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
5215 SwigValueWrapper
<wxVisualAttributes
> result
;
5218 PyObject
* obj0
= 0 ;
5219 char * kwnames
[] = {
5220 (char *) "variant", NULL
5223 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ScrolledWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
5225 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
5226 if (!SWIG_IsOK(ecode1
)) {
5227 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "ScrolledWindow_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
5229 arg1
= static_cast< wxWindowVariant
>(val1
);
5232 if (!wxPyCheckForApp()) SWIG_fail
;
5233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5234 result
= wxScrolledWindow::GetClassDefaultAttributes(arg1
);
5235 wxPyEndAllowThreads(__tstate
);
5236 if (PyErr_Occurred()) SWIG_fail
;
5238 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
5245 SWIGINTERN PyObject
*ScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5247 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5248 SWIG_TypeNewClientData(SWIGTYPE_p_wxScrolledWindow
, SWIG_NewClientData(obj
));
5249 return SWIG_Py_Void();
5252 SWIGINTERN PyObject
*ScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5253 return SWIG_Python_InitShadowInstance(args
);
5256 SWIGINTERN
int FrameNameStr_set(PyObject
*) {
5257 SWIG_Error(SWIG_AttributeError
,"Variable FrameNameStr is read-only.");
5262 SWIGINTERN PyObject
*FrameNameStr_get(void) {
5263 PyObject
*pyobj
= 0;
5267 pyobj
= PyUnicode_FromWideChar((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len());
5269 pyobj
= PyString_FromStringAndSize((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len());
5276 SWIGINTERN
int DialogNameStr_set(PyObject
*) {
5277 SWIG_Error(SWIG_AttributeError
,"Variable DialogNameStr is read-only.");
5282 SWIGINTERN PyObject
*DialogNameStr_get(void) {
5283 PyObject
*pyobj
= 0;
5287 pyobj
= PyUnicode_FromWideChar((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len());
5289 pyobj
= PyString_FromStringAndSize((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len());
5296 SWIGINTERN
int StatusLineNameStr_set(PyObject
*) {
5297 SWIG_Error(SWIG_AttributeError
,"Variable StatusLineNameStr is read-only.");
5302 SWIGINTERN PyObject
*StatusLineNameStr_get(void) {
5303 PyObject
*pyobj
= 0;
5307 pyobj
= PyUnicode_FromWideChar((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len());
5309 pyobj
= PyString_FromStringAndSize((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len());
5316 SWIGINTERN
int ToolBarNameStr_set(PyObject
*) {
5317 SWIG_Error(SWIG_AttributeError
,"Variable ToolBarNameStr is read-only.");
5322 SWIGINTERN PyObject
*ToolBarNameStr_get(void) {
5323 PyObject
*pyobj
= 0;
5327 pyobj
= PyUnicode_FromWideChar((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len());
5329 pyobj
= PyString_FromStringAndSize((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len());
5336 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5337 PyObject
*resultobj
= 0;
5338 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5339 bool arg2
= (bool) true ;
5344 PyObject
* obj0
= 0 ;
5345 PyObject
* obj1
= 0 ;
5346 char * kwnames
[] = {
5347 (char *) "self",(char *) "maximize", NULL
5350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Maximize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5352 if (!SWIG_IsOK(res1
)) {
5353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Maximize" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5355 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5357 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5358 if (!SWIG_IsOK(ecode2
)) {
5359 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_Maximize" "', expected argument " "2"" of type '" "bool""'");
5361 arg2
= static_cast< bool >(val2
);
5364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5365 (arg1
)->Maximize(arg2
);
5366 wxPyEndAllowThreads(__tstate
);
5367 if (PyErr_Occurred()) SWIG_fail
;
5369 resultobj
= SWIG_Py_Void();
5376 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5377 PyObject
*resultobj
= 0;
5378 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5381 PyObject
*swig_obj
[1] ;
5383 if (!args
) SWIG_fail
;
5385 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5386 if (!SWIG_IsOK(res1
)) {
5387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Restore" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5389 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5393 wxPyEndAllowThreads(__tstate
);
5394 if (PyErr_Occurred()) SWIG_fail
;
5396 resultobj
= SWIG_Py_Void();
5403 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Iconize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5404 PyObject
*resultobj
= 0;
5405 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5406 bool arg2
= (bool) true ;
5411 PyObject
* obj0
= 0 ;
5412 PyObject
* obj1
= 0 ;
5413 char * kwnames
[] = {
5414 (char *) "self",(char *) "iconize", NULL
5417 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Iconize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5418 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5419 if (!SWIG_IsOK(res1
)) {
5420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Iconize" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5422 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5424 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5425 if (!SWIG_IsOK(ecode2
)) {
5426 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_Iconize" "', expected argument " "2"" of type '" "bool""'");
5428 arg2
= static_cast< bool >(val2
);
5431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5432 (arg1
)->Iconize(arg2
);
5433 wxPyEndAllowThreads(__tstate
);
5434 if (PyErr_Occurred()) SWIG_fail
;
5436 resultobj
= SWIG_Py_Void();
5443 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5444 PyObject
*resultobj
= 0;
5445 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5449 PyObject
*swig_obj
[1] ;
5451 if (!args
) SWIG_fail
;
5453 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5454 if (!SWIG_IsOK(res1
)) {
5455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsMaximized" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5457 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5460 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsMaximized();
5461 wxPyEndAllowThreads(__tstate
);
5462 if (PyErr_Occurred()) SWIG_fail
;
5465 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5473 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsIconized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5474 PyObject
*resultobj
= 0;
5475 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5479 PyObject
*swig_obj
[1] ;
5481 if (!args
) SWIG_fail
;
5483 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5484 if (!SWIG_IsOK(res1
)) {
5485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsIconized" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5487 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5490 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsIconized();
5491 wxPyEndAllowThreads(__tstate
);
5492 if (PyErr_Occurred()) SWIG_fail
;
5495 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5503 SWIGINTERN PyObject
*_wrap_TopLevelWindow_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5504 PyObject
*resultobj
= 0;
5505 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5509 PyObject
*swig_obj
[1] ;
5511 if (!args
) SWIG_fail
;
5513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5514 if (!SWIG_IsOK(res1
)) {
5515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_GetIcon" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5517 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5520 result
= ((wxTopLevelWindow
const *)arg1
)->GetIcon();
5521 wxPyEndAllowThreads(__tstate
);
5522 if (PyErr_Occurred()) SWIG_fail
;
5524 resultobj
= SWIG_NewPointerObj((new wxIcon(static_cast< const wxIcon
& >(result
))), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
5531 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5532 PyObject
*resultobj
= 0;
5533 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5539 PyObject
* obj0
= 0 ;
5540 PyObject
* obj1
= 0 ;
5541 char * kwnames
[] = {
5542 (char *) "self",(char *) "icon", NULL
5545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5547 if (!SWIG_IsOK(res1
)) {
5548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetIcon" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5550 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5551 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
5552 if (!SWIG_IsOK(res2
)) {
5553 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
5556 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
5558 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
5560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5561 (arg1
)->SetIcon((wxIcon
const &)*arg2
);
5562 wxPyEndAllowThreads(__tstate
);
5563 if (PyErr_Occurred()) SWIG_fail
;
5565 resultobj
= SWIG_Py_Void();
5572 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5573 PyObject
*resultobj
= 0;
5574 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5575 wxIconBundle
*arg2
= 0 ;
5580 PyObject
* obj0
= 0 ;
5581 PyObject
* obj1
= 0 ;
5582 char * kwnames
[] = {
5583 (char *) "self",(char *) "icons", NULL
5586 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcons",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5587 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5588 if (!SWIG_IsOK(res1
)) {
5589 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetIcons" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5591 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5592 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIconBundle
, 0 | 0);
5593 if (!SWIG_IsOK(res2
)) {
5594 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
5597 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
5599 arg2
= reinterpret_cast< wxIconBundle
* >(argp2
);
5601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5602 (arg1
)->SetIcons((wxIconBundle
const &)*arg2
);
5603 wxPyEndAllowThreads(__tstate
);
5604 if (PyErr_Occurred()) SWIG_fail
;
5606 resultobj
= SWIG_Py_Void();
5613 SWIGINTERN PyObject
*_wrap_TopLevelWindow_ShowFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5614 PyObject
*resultobj
= 0;
5615 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5617 long arg3
= (long) wxFULLSCREEN_ALL
;
5625 PyObject
* obj0
= 0 ;
5626 PyObject
* obj1
= 0 ;
5627 PyObject
* obj2
= 0 ;
5628 char * kwnames
[] = {
5629 (char *) "self",(char *) "show",(char *) "style", NULL
5632 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TopLevelWindow_ShowFullScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5633 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5634 if (!SWIG_IsOK(res1
)) {
5635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5637 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5638 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5639 if (!SWIG_IsOK(ecode2
)) {
5640 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "2"" of type '" "bool""'");
5642 arg2
= static_cast< bool >(val2
);
5644 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
5645 if (!SWIG_IsOK(ecode3
)) {
5646 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "3"" of type '" "long""'");
5648 arg3
= static_cast< long >(val3
);
5651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5652 result
= (bool)(arg1
)->ShowFullScreen(arg2
,arg3
);
5653 wxPyEndAllowThreads(__tstate
);
5654 if (PyErr_Occurred()) SWIG_fail
;
5657 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5665 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5666 PyObject
*resultobj
= 0;
5667 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5671 PyObject
*swig_obj
[1] ;
5673 if (!args
) SWIG_fail
;
5675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5676 if (!SWIG_IsOK(res1
)) {
5677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsFullScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5679 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5682 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsFullScreen();
5683 wxPyEndAllowThreads(__tstate
);
5684 if (PyErr_Occurred()) SWIG_fail
;
5687 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5695 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5696 PyObject
*resultobj
= 0;
5697 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5698 wxString
*arg2
= 0 ;
5701 bool temp2
= false ;
5702 PyObject
* obj0
= 0 ;
5703 PyObject
* obj1
= 0 ;
5704 char * kwnames
[] = {
5705 (char *) "self",(char *) "title", NULL
5708 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetTitle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5709 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5710 if (!SWIG_IsOK(res1
)) {
5711 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetTitle" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5713 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5715 arg2
= wxString_in_helper(obj1
);
5716 if (arg2
== NULL
) SWIG_fail
;
5720 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5721 (arg1
)->SetTitle((wxString
const &)*arg2
);
5722 wxPyEndAllowThreads(__tstate
);
5723 if (PyErr_Occurred()) SWIG_fail
;
5725 resultobj
= SWIG_Py_Void();
5740 SWIGINTERN PyObject
*_wrap_TopLevelWindow_GetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5741 PyObject
*resultobj
= 0;
5742 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5746 PyObject
*swig_obj
[1] ;
5748 if (!args
) SWIG_fail
;
5750 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5751 if (!SWIG_IsOK(res1
)) {
5752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_GetTitle" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5754 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5756 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5757 result
= ((wxTopLevelWindow
const *)arg1
)->GetTitle();
5758 wxPyEndAllowThreads(__tstate
);
5759 if (PyErr_Occurred()) SWIG_fail
;
5763 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5765 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5774 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetShape(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5775 PyObject
*resultobj
= 0;
5776 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5777 wxRegion
*arg2
= 0 ;
5783 PyObject
* obj0
= 0 ;
5784 PyObject
* obj1
= 0 ;
5785 char * kwnames
[] = {
5786 (char *) "self",(char *) "region", NULL
5789 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetShape",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5790 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5791 if (!SWIG_IsOK(res1
)) {
5792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetShape" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5794 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5795 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
5796 if (!SWIG_IsOK(res2
)) {
5797 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetShape" "', expected argument " "2"" of type '" "wxRegion const &""'");
5800 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetShape" "', expected argument " "2"" of type '" "wxRegion const &""'");
5802 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
5804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5805 result
= (bool)(arg1
)->SetShape((wxRegion
const &)*arg2
);
5806 wxPyEndAllowThreads(__tstate
);
5807 if (PyErr_Occurred()) SWIG_fail
;
5810 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5818 SWIGINTERN PyObject
*_wrap_TopLevelWindow_RequestUserAttention(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5819 PyObject
*resultobj
= 0;
5820 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5821 int arg2
= (int) wxUSER_ATTENTION_INFO
;
5826 PyObject
* obj0
= 0 ;
5827 PyObject
* obj1
= 0 ;
5828 char * kwnames
[] = {
5829 (char *) "self",(char *) "flags", NULL
5832 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_RequestUserAttention",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5833 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5834 if (!SWIG_IsOK(res1
)) {
5835 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_RequestUserAttention" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5837 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5839 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5840 if (!SWIG_IsOK(ecode2
)) {
5841 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_RequestUserAttention" "', expected argument " "2"" of type '" "int""'");
5843 arg2
= static_cast< int >(val2
);
5846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5847 (arg1
)->RequestUserAttention(arg2
);
5848 wxPyEndAllowThreads(__tstate
);
5849 if (PyErr_Occurred()) SWIG_fail
;
5851 resultobj
= SWIG_Py_Void();
5858 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5859 PyObject
*resultobj
= 0;
5860 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5864 PyObject
*swig_obj
[1] ;
5866 if (!args
) SWIG_fail
;
5868 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5869 if (!SWIG_IsOK(res1
)) {
5870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsActive" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5872 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5875 result
= (bool)(arg1
)->IsActive();
5876 wxPyEndAllowThreads(__tstate
);
5877 if (PyErr_Occurred()) SWIG_fail
;
5880 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5888 SWIGINTERN PyObject
*_wrap_TopLevelWindow_MacSetMetalAppearance(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5889 PyObject
*resultobj
= 0;
5890 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5896 PyObject
* obj0
= 0 ;
5897 PyObject
* obj1
= 0 ;
5898 char * kwnames
[] = {
5899 (char *) "self",(char *) "on", NULL
5902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_MacSetMetalAppearance",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5903 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5904 if (!SWIG_IsOK(res1
)) {
5905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_MacSetMetalAppearance" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5907 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5908 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5909 if (!SWIG_IsOK(ecode2
)) {
5910 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_MacSetMetalAppearance" "', expected argument " "2"" of type '" "bool""'");
5912 arg2
= static_cast< bool >(val2
);
5914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5915 wxTopLevelWindow_MacSetMetalAppearance(arg1
,arg2
);
5916 wxPyEndAllowThreads(__tstate
);
5917 if (PyErr_Occurred()) SWIG_fail
;
5919 resultobj
= SWIG_Py_Void();
5926 SWIGINTERN PyObject
*_wrap_TopLevelWindow_MacGetMetalAppearance(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5927 PyObject
*resultobj
= 0;
5928 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5932 PyObject
*swig_obj
[1] ;
5934 if (!args
) SWIG_fail
;
5936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5937 if (!SWIG_IsOK(res1
)) {
5938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_MacGetMetalAppearance" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5940 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5943 result
= (bool)((wxTopLevelWindow
const *)arg1
)->MacGetMetalAppearance();
5944 wxPyEndAllowThreads(__tstate
);
5945 if (PyErr_Occurred()) SWIG_fail
;
5948 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5956 SWIGINTERN PyObject
*_wrap_TopLevelWindow_CenterOnScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5957 PyObject
*resultobj
= 0;
5958 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5959 int arg2
= (int) wxBOTH
;
5964 PyObject
* obj0
= 0 ;
5965 PyObject
* obj1
= 0 ;
5966 char * kwnames
[] = {
5967 (char *) "self",(char *) "dir", NULL
5970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_CenterOnScreen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5971 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5972 if (!SWIG_IsOK(res1
)) {
5973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_CenterOnScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5975 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5977 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5978 if (!SWIG_IsOK(ecode2
)) {
5979 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_CenterOnScreen" "', expected argument " "2"" of type '" "int""'");
5981 arg2
= static_cast< int >(val2
);
5984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5985 (arg1
)->CenterOnScreen(arg2
);
5986 wxPyEndAllowThreads(__tstate
);
5987 if (PyErr_Occurred()) SWIG_fail
;
5989 resultobj
= SWIG_Py_Void();
5996 SWIGINTERN PyObject
*TopLevelWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5998 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5999 SWIG_TypeNewClientData(SWIGTYPE_p_wxTopLevelWindow
, SWIG_NewClientData(obj
));
6000 return SWIG_Py_Void();
6003 SWIGINTERN PyObject
*_wrap_new_Frame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6004 PyObject
*resultobj
= 0;
6005 wxWindow
*arg1
= (wxWindow
*) 0 ;
6006 int arg2
= (int) (int)-1 ;
6007 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6008 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6009 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6010 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6011 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6012 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6013 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
6014 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
6015 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6016 wxFrame
*result
= 0 ;
6021 bool temp3
= false ;
6026 bool temp7
= false ;
6027 PyObject
* obj0
= 0 ;
6028 PyObject
* obj1
= 0 ;
6029 PyObject
* obj2
= 0 ;
6030 PyObject
* obj3
= 0 ;
6031 PyObject
* obj4
= 0 ;
6032 PyObject
* obj5
= 0 ;
6033 PyObject
* obj6
= 0 ;
6034 char * kwnames
[] = {
6035 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6038 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Frame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
6039 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6040 if (!SWIG_IsOK(res1
)) {
6041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Frame" "', expected argument " "1"" of type '" "wxWindow *""'");
6043 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
6045 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6046 if (!SWIG_IsOK(ecode2
)) {
6047 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Frame" "', expected argument " "2"" of type '" "int""'");
6049 arg2
= static_cast< int >(val2
);
6053 arg3
= wxString_in_helper(obj2
);
6054 if (arg3
== NULL
) SWIG_fail
;
6061 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6067 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6071 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
6072 if (!SWIG_IsOK(ecode6
)) {
6073 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_Frame" "', expected argument " "6"" of type '" "long""'");
6075 arg6
= static_cast< long >(val6
);
6079 arg7
= wxString_in_helper(obj6
);
6080 if (arg7
== NULL
) SWIG_fail
;
6085 if (!wxPyCheckForApp()) SWIG_fail
;
6086 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6087 result
= (wxFrame
*)new wxFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6088 wxPyEndAllowThreads(__tstate
);
6089 if (PyErr_Occurred()) SWIG_fail
;
6091 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrame
, SWIG_POINTER_NEW
| 0 );
6114 SWIGINTERN PyObject
*_wrap_new_PreFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6115 PyObject
*resultobj
= 0;
6116 wxFrame
*result
= 0 ;
6118 if (!SWIG_Python_UnpackTuple(args
,"new_PreFrame",0,0,0)) SWIG_fail
;
6120 if (!wxPyCheckForApp()) SWIG_fail
;
6121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6122 result
= (wxFrame
*)new wxFrame();
6123 wxPyEndAllowThreads(__tstate
);
6124 if (PyErr_Occurred()) SWIG_fail
;
6126 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrame
, SWIG_POINTER_OWN
| 0 );
6133 SWIGINTERN PyObject
*_wrap_Frame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6134 PyObject
*resultobj
= 0;
6135 wxFrame
*arg1
= (wxFrame
*) 0 ;
6136 wxWindow
*arg2
= (wxWindow
*) 0 ;
6137 int arg3
= (int) (int)-1 ;
6138 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6139 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6140 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6141 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6142 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6143 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6144 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
6145 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
6146 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6154 bool temp4
= false ;
6159 bool temp8
= false ;
6160 PyObject
* obj0
= 0 ;
6161 PyObject
* obj1
= 0 ;
6162 PyObject
* obj2
= 0 ;
6163 PyObject
* obj3
= 0 ;
6164 PyObject
* obj4
= 0 ;
6165 PyObject
* obj5
= 0 ;
6166 PyObject
* obj6
= 0 ;
6167 PyObject
* obj7
= 0 ;
6168 char * kwnames
[] = {
6169 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6172 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Frame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
6173 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6174 if (!SWIG_IsOK(res1
)) {
6175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_Create" "', expected argument " "1"" of type '" "wxFrame *""'");
6177 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6178 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6179 if (!SWIG_IsOK(res2
)) {
6180 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
6182 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6184 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6185 if (!SWIG_IsOK(ecode3
)) {
6186 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_Create" "', expected argument " "3"" of type '" "int""'");
6188 arg3
= static_cast< int >(val3
);
6192 arg4
= wxString_in_helper(obj3
);
6193 if (arg4
== NULL
) SWIG_fail
;
6200 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6206 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6210 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
6211 if (!SWIG_IsOK(ecode7
)) {
6212 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "Frame_Create" "', expected argument " "7"" of type '" "long""'");
6214 arg7
= static_cast< long >(val7
);
6218 arg8
= wxString_in_helper(obj7
);
6219 if (arg8
== NULL
) SWIG_fail
;
6224 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6225 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6226 wxPyEndAllowThreads(__tstate
);
6227 if (PyErr_Occurred()) SWIG_fail
;
6230 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6254 SWIGINTERN PyObject
*_wrap_Frame_SendSizeEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6255 PyObject
*resultobj
= 0;
6256 wxFrame
*arg1
= (wxFrame
*) 0 ;
6259 PyObject
*swig_obj
[1] ;
6261 if (!args
) SWIG_fail
;
6263 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6264 if (!SWIG_IsOK(res1
)) {
6265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SendSizeEvent" "', expected argument " "1"" of type '" "wxFrame *""'");
6267 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6270 (arg1
)->SendSizeEvent();
6271 wxPyEndAllowThreads(__tstate
);
6272 if (PyErr_Occurred()) SWIG_fail
;
6274 resultobj
= SWIG_Py_Void();
6281 SWIGINTERN PyObject
*_wrap_Frame_SetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6282 PyObject
*resultobj
= 0;
6283 wxFrame
*arg1
= (wxFrame
*) 0 ;
6284 wxMenuBar
*arg2
= (wxMenuBar
*) 0 ;
6289 PyObject
* obj0
= 0 ;
6290 PyObject
* obj1
= 0 ;
6291 char * kwnames
[] = {
6292 (char *) "self",(char *) "menubar", NULL
6295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6297 if (!SWIG_IsOK(res1
)) {
6298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetMenuBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6300 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6301 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenuBar
, 0 | 0 );
6302 if (!SWIG_IsOK(res2
)) {
6303 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetMenuBar" "', expected argument " "2"" of type '" "wxMenuBar *""'");
6305 arg2
= reinterpret_cast< wxMenuBar
* >(argp2
);
6307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6308 (arg1
)->SetMenuBar(arg2
);
6309 wxPyEndAllowThreads(__tstate
);
6310 if (PyErr_Occurred()) SWIG_fail
;
6312 resultobj
= SWIG_Py_Void();
6319 SWIGINTERN PyObject
*_wrap_Frame_GetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6320 PyObject
*resultobj
= 0;
6321 wxFrame
*arg1
= (wxFrame
*) 0 ;
6322 wxMenuBar
*result
= 0 ;
6325 PyObject
*swig_obj
[1] ;
6327 if (!args
) SWIG_fail
;
6329 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6330 if (!SWIG_IsOK(res1
)) {
6331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetMenuBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6333 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6336 result
= (wxMenuBar
*)((wxFrame
const *)arg1
)->GetMenuBar();
6337 wxPyEndAllowThreads(__tstate
);
6338 if (PyErr_Occurred()) SWIG_fail
;
6341 resultobj
= wxPyMake_wxObject(result
, 0);
6349 SWIGINTERN PyObject
*_wrap_Frame_ProcessCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6350 PyObject
*resultobj
= 0;
6351 wxFrame
*arg1
= (wxFrame
*) 0 ;
6358 PyObject
* obj0
= 0 ;
6359 PyObject
* obj1
= 0 ;
6360 char * kwnames
[] = {
6361 (char *) "self",(char *) "winid", NULL
6364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_ProcessCommand",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6365 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6366 if (!SWIG_IsOK(res1
)) {
6367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_ProcessCommand" "', expected argument " "1"" of type '" "wxFrame *""'");
6369 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6370 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6371 if (!SWIG_IsOK(ecode2
)) {
6372 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_ProcessCommand" "', expected argument " "2"" of type '" "int""'");
6374 arg2
= static_cast< int >(val2
);
6376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6377 result
= (bool)(arg1
)->ProcessCommand(arg2
);
6378 wxPyEndAllowThreads(__tstate
);
6379 if (PyErr_Occurred()) SWIG_fail
;
6382 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6390 SWIGINTERN PyObject
*_wrap_Frame_CreateStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6391 PyObject
*resultobj
= 0;
6392 wxFrame
*arg1
= (wxFrame
*) 0 ;
6393 int arg2
= (int) 1 ;
6394 long arg3
= (long) wxDEFAULT_STATUSBAR_STYLE
;
6395 int arg4
= (int) 0 ;
6396 wxString
const &arg5_defvalue
= wxPyStatusLineNameStr
;
6397 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
6398 wxStatusBar
*result
= 0 ;
6407 bool temp5
= false ;
6408 PyObject
* obj0
= 0 ;
6409 PyObject
* obj1
= 0 ;
6410 PyObject
* obj2
= 0 ;
6411 PyObject
* obj3
= 0 ;
6412 PyObject
* obj4
= 0 ;
6413 char * kwnames
[] = {
6414 (char *) "self",(char *) "number",(char *) "style",(char *) "winid",(char *) "name", NULL
6417 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:Frame_CreateStatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
6418 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6419 if (!SWIG_IsOK(res1
)) {
6420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_CreateStatusBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6422 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6424 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6425 if (!SWIG_IsOK(ecode2
)) {
6426 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_CreateStatusBar" "', expected argument " "2"" of type '" "int""'");
6428 arg2
= static_cast< int >(val2
);
6431 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
6432 if (!SWIG_IsOK(ecode3
)) {
6433 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_CreateStatusBar" "', expected argument " "3"" of type '" "long""'");
6435 arg3
= static_cast< long >(val3
);
6438 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
6439 if (!SWIG_IsOK(ecode4
)) {
6440 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Frame_CreateStatusBar" "', expected argument " "4"" of type '" "int""'");
6442 arg4
= static_cast< int >(val4
);
6446 arg5
= wxString_in_helper(obj4
);
6447 if (arg5
== NULL
) SWIG_fail
;
6452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6453 result
= (wxStatusBar
*)(arg1
)->CreateStatusBar(arg2
,arg3
,arg4
,(wxString
const &)*arg5
);
6454 wxPyEndAllowThreads(__tstate
);
6455 if (PyErr_Occurred()) SWIG_fail
;
6458 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6474 SWIGINTERN PyObject
*_wrap_Frame_GetStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6475 PyObject
*resultobj
= 0;
6476 wxFrame
*arg1
= (wxFrame
*) 0 ;
6477 wxStatusBar
*result
= 0 ;
6480 PyObject
*swig_obj
[1] ;
6482 if (!args
) SWIG_fail
;
6484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6485 if (!SWIG_IsOK(res1
)) {
6486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetStatusBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6488 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6491 result
= (wxStatusBar
*)((wxFrame
const *)arg1
)->GetStatusBar();
6492 wxPyEndAllowThreads(__tstate
);
6493 if (PyErr_Occurred()) SWIG_fail
;
6496 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6504 SWIGINTERN PyObject
*_wrap_Frame_SetStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6505 PyObject
*resultobj
= 0;
6506 wxFrame
*arg1
= (wxFrame
*) 0 ;
6507 wxStatusBar
*arg2
= (wxStatusBar
*) 0 ;
6512 PyObject
* obj0
= 0 ;
6513 PyObject
* obj1
= 0 ;
6514 char * kwnames
[] = {
6515 (char *) "self",(char *) "statBar", NULL
6518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6520 if (!SWIG_IsOK(res1
)) {
6521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6523 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6524 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
6525 if (!SWIG_IsOK(res2
)) {
6526 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetStatusBar" "', expected argument " "2"" of type '" "wxStatusBar *""'");
6528 arg2
= reinterpret_cast< wxStatusBar
* >(argp2
);
6530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6531 (arg1
)->SetStatusBar(arg2
);
6532 wxPyEndAllowThreads(__tstate
);
6533 if (PyErr_Occurred()) SWIG_fail
;
6535 resultobj
= SWIG_Py_Void();
6542 SWIGINTERN PyObject
*_wrap_Frame_SetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6543 PyObject
*resultobj
= 0;
6544 wxFrame
*arg1
= (wxFrame
*) 0 ;
6545 wxString
*arg2
= 0 ;
6546 int arg3
= (int) 0 ;
6549 bool temp2
= false ;
6552 PyObject
* obj0
= 0 ;
6553 PyObject
* obj1
= 0 ;
6554 PyObject
* obj2
= 0 ;
6555 char * kwnames
[] = {
6556 (char *) "self",(char *) "text",(char *) "number", NULL
6559 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6560 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6561 if (!SWIG_IsOK(res1
)) {
6562 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6564 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6566 arg2
= wxString_in_helper(obj1
);
6567 if (arg2
== NULL
) SWIG_fail
;
6571 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6572 if (!SWIG_IsOK(ecode3
)) {
6573 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_SetStatusText" "', expected argument " "3"" of type '" "int""'");
6575 arg3
= static_cast< int >(val3
);
6578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6579 (arg1
)->SetStatusText((wxString
const &)*arg2
,arg3
);
6580 wxPyEndAllowThreads(__tstate
);
6581 if (PyErr_Occurred()) SWIG_fail
;
6583 resultobj
= SWIG_Py_Void();
6598 SWIGINTERN PyObject
*_wrap_Frame_SetStatusWidths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6599 PyObject
*resultobj
= 0;
6600 wxFrame
*arg1
= (wxFrame
*) 0 ;
6602 int *arg3
= (int *) 0 ;
6605 PyObject
* obj0
= 0 ;
6606 PyObject
* obj1
= 0 ;
6607 char * kwnames
[] = {
6608 (char *) "self",(char *) "widths", NULL
6611 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusWidths",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6612 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6613 if (!SWIG_IsOK(res1
)) {
6614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusWidths" "', expected argument " "1"" of type '" "wxFrame *""'");
6616 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6618 arg2
= PyList_Size(obj1
);
6619 arg3
= int_LIST_helper(obj1
);
6620 if (arg3
== NULL
) SWIG_fail
;
6623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6624 (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
);
6625 wxPyEndAllowThreads(__tstate
);
6626 if (PyErr_Occurred()) SWIG_fail
;
6628 resultobj
= SWIG_Py_Void();
6630 if (arg3
) delete [] arg3
;
6635 if (arg3
) delete [] arg3
;
6641 SWIGINTERN PyObject
*_wrap_Frame_PushStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6642 PyObject
*resultobj
= 0;
6643 wxFrame
*arg1
= (wxFrame
*) 0 ;
6644 wxString
*arg2
= 0 ;
6645 int arg3
= (int) 0 ;
6648 bool temp2
= false ;
6651 PyObject
* obj0
= 0 ;
6652 PyObject
* obj1
= 0 ;
6653 PyObject
* obj2
= 0 ;
6654 char * kwnames
[] = {
6655 (char *) "self",(char *) "text",(char *) "number", NULL
6658 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6659 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6660 if (!SWIG_IsOK(res1
)) {
6661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_PushStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6663 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6665 arg2
= wxString_in_helper(obj1
);
6666 if (arg2
== NULL
) SWIG_fail
;
6670 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6671 if (!SWIG_IsOK(ecode3
)) {
6672 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_PushStatusText" "', expected argument " "3"" of type '" "int""'");
6674 arg3
= static_cast< int >(val3
);
6677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6678 (arg1
)->PushStatusText((wxString
const &)*arg2
,arg3
);
6679 wxPyEndAllowThreads(__tstate
);
6680 if (PyErr_Occurred()) SWIG_fail
;
6682 resultobj
= SWIG_Py_Void();
6697 SWIGINTERN PyObject
*_wrap_Frame_PopStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6698 PyObject
*resultobj
= 0;
6699 wxFrame
*arg1
= (wxFrame
*) 0 ;
6700 int arg2
= (int) 0 ;
6705 PyObject
* obj0
= 0 ;
6706 PyObject
* obj1
= 0 ;
6707 char * kwnames
[] = {
6708 (char *) "self",(char *) "number", NULL
6711 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_PopStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6712 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6713 if (!SWIG_IsOK(res1
)) {
6714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_PopStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6716 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6718 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6719 if (!SWIG_IsOK(ecode2
)) {
6720 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_PopStatusText" "', expected argument " "2"" of type '" "int""'");
6722 arg2
= static_cast< int >(val2
);
6725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6726 (arg1
)->PopStatusText(arg2
);
6727 wxPyEndAllowThreads(__tstate
);
6728 if (PyErr_Occurred()) SWIG_fail
;
6730 resultobj
= SWIG_Py_Void();
6737 SWIGINTERN PyObject
*_wrap_Frame_SetStatusBarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6738 PyObject
*resultobj
= 0;
6739 wxFrame
*arg1
= (wxFrame
*) 0 ;
6745 PyObject
* obj0
= 0 ;
6746 PyObject
* obj1
= 0 ;
6747 char * kwnames
[] = {
6748 (char *) "self",(char *) "n", NULL
6751 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBarPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6752 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6753 if (!SWIG_IsOK(res1
)) {
6754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusBarPane" "', expected argument " "1"" of type '" "wxFrame *""'");
6756 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6757 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6758 if (!SWIG_IsOK(ecode2
)) {
6759 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_SetStatusBarPane" "', expected argument " "2"" of type '" "int""'");
6761 arg2
= static_cast< int >(val2
);
6763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6764 (arg1
)->SetStatusBarPane(arg2
);
6765 wxPyEndAllowThreads(__tstate
);
6766 if (PyErr_Occurred()) SWIG_fail
;
6768 resultobj
= SWIG_Py_Void();
6775 SWIGINTERN PyObject
*_wrap_Frame_GetStatusBarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6776 PyObject
*resultobj
= 0;
6777 wxFrame
*arg1
= (wxFrame
*) 0 ;
6781 PyObject
*swig_obj
[1] ;
6783 if (!args
) SWIG_fail
;
6785 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6786 if (!SWIG_IsOK(res1
)) {
6787 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetStatusBarPane" "', expected argument " "1"" of type '" "wxFrame const *""'");
6789 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6792 result
= (int)((wxFrame
const *)arg1
)->GetStatusBarPane();
6793 wxPyEndAllowThreads(__tstate
);
6794 if (PyErr_Occurred()) SWIG_fail
;
6796 resultobj
= SWIG_From_int(static_cast< int >(result
));
6803 SWIGINTERN PyObject
*_wrap_Frame_CreateToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6804 PyObject
*resultobj
= 0;
6805 wxFrame
*arg1
= (wxFrame
*) 0 ;
6806 long arg2
= (long) -1 ;
6807 int arg3
= (int) -1 ;
6808 wxString
const &arg4_defvalue
= wxPyToolBarNameStr
;
6809 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6810 wxToolBar
*result
= 0 ;
6817 bool temp4
= false ;
6818 PyObject
* obj0
= 0 ;
6819 PyObject
* obj1
= 0 ;
6820 PyObject
* obj2
= 0 ;
6821 PyObject
* obj3
= 0 ;
6822 char * kwnames
[] = {
6823 (char *) "self",(char *) "style",(char *) "winid",(char *) "name", NULL
6826 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:Frame_CreateToolBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6827 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6828 if (!SWIG_IsOK(res1
)) {
6829 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_CreateToolBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6831 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6833 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
6834 if (!SWIG_IsOK(ecode2
)) {
6835 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_CreateToolBar" "', expected argument " "2"" of type '" "long""'");
6837 arg2
= static_cast< long >(val2
);
6840 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6841 if (!SWIG_IsOK(ecode3
)) {
6842 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_CreateToolBar" "', expected argument " "3"" of type '" "int""'");
6844 arg3
= static_cast< int >(val3
);
6848 arg4
= wxString_in_helper(obj3
);
6849 if (arg4
== NULL
) SWIG_fail
;
6854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6855 result
= (wxToolBar
*)(arg1
)->CreateToolBar(arg2
,arg3
,(wxString
const &)*arg4
);
6856 wxPyEndAllowThreads(__tstate
);
6857 if (PyErr_Occurred()) SWIG_fail
;
6860 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6876 SWIGINTERN PyObject
*_wrap_Frame_GetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6877 PyObject
*resultobj
= 0;
6878 wxFrame
*arg1
= (wxFrame
*) 0 ;
6879 wxToolBar
*result
= 0 ;
6882 PyObject
*swig_obj
[1] ;
6884 if (!args
) SWIG_fail
;
6886 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6887 if (!SWIG_IsOK(res1
)) {
6888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetToolBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6890 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6893 result
= (wxToolBar
*)((wxFrame
const *)arg1
)->GetToolBar();
6894 wxPyEndAllowThreads(__tstate
);
6895 if (PyErr_Occurred()) SWIG_fail
;
6898 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6906 SWIGINTERN PyObject
*_wrap_Frame_SetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6907 PyObject
*resultobj
= 0;
6908 wxFrame
*arg1
= (wxFrame
*) 0 ;
6909 wxToolBar
*arg2
= (wxToolBar
*) 0 ;
6914 PyObject
* obj0
= 0 ;
6915 PyObject
* obj1
= 0 ;
6916 char * kwnames
[] = {
6917 (char *) "self",(char *) "toolbar", NULL
6920 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetToolBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6921 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6922 if (!SWIG_IsOK(res1
)) {
6923 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetToolBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6925 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6926 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxToolBar
, 0 | 0 );
6927 if (!SWIG_IsOK(res2
)) {
6928 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetToolBar" "', expected argument " "2"" of type '" "wxToolBar *""'");
6930 arg2
= reinterpret_cast< wxToolBar
* >(argp2
);
6932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6933 (arg1
)->SetToolBar(arg2
);
6934 wxPyEndAllowThreads(__tstate
);
6935 if (PyErr_Occurred()) SWIG_fail
;
6937 resultobj
= SWIG_Py_Void();
6944 SWIGINTERN PyObject
*_wrap_Frame_DoGiveHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6945 PyObject
*resultobj
= 0;
6946 wxFrame
*arg1
= (wxFrame
*) 0 ;
6947 wxString
*arg2
= 0 ;
6951 bool temp2
= false ;
6954 PyObject
* obj0
= 0 ;
6955 PyObject
* obj1
= 0 ;
6956 PyObject
* obj2
= 0 ;
6957 char * kwnames
[] = {
6958 (char *) "self",(char *) "text",(char *) "show", NULL
6961 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Frame_DoGiveHelp",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6962 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6963 if (!SWIG_IsOK(res1
)) {
6964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_DoGiveHelp" "', expected argument " "1"" of type '" "wxFrame *""'");
6966 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6968 arg2
= wxString_in_helper(obj1
);
6969 if (arg2
== NULL
) SWIG_fail
;
6972 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6973 if (!SWIG_IsOK(ecode3
)) {
6974 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_DoGiveHelp" "', expected argument " "3"" of type '" "bool""'");
6976 arg3
= static_cast< bool >(val3
);
6978 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6979 (arg1
)->DoGiveHelp((wxString
const &)*arg2
,arg3
);
6980 wxPyEndAllowThreads(__tstate
);
6981 if (PyErr_Occurred()) SWIG_fail
;
6983 resultobj
= SWIG_Py_Void();
6998 SWIGINTERN PyObject
*_wrap_Frame_DoMenuUpdates(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6999 PyObject
*resultobj
= 0;
7000 wxFrame
*arg1
= (wxFrame
*) 0 ;
7001 wxMenu
*arg2
= (wxMenu
*) NULL
;
7006 PyObject
* obj0
= 0 ;
7007 PyObject
* obj1
= 0 ;
7008 char * kwnames
[] = {
7009 (char *) "self",(char *) "menu", NULL
7012 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_DoMenuUpdates",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7013 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
7014 if (!SWIG_IsOK(res1
)) {
7015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_DoMenuUpdates" "', expected argument " "1"" of type '" "wxFrame *""'");
7017 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
7019 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
7020 if (!SWIG_IsOK(res2
)) {
7021 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_DoMenuUpdates" "', expected argument " "2"" of type '" "wxMenu *""'");
7023 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
7026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7027 (arg1
)->DoMenuUpdates(arg2
);
7028 wxPyEndAllowThreads(__tstate
);
7029 if (PyErr_Occurred()) SWIG_fail
;
7031 resultobj
= SWIG_Py_Void();
7038 SWIGINTERN PyObject
*_wrap_Frame_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7039 PyObject
*resultobj
= 0;
7040 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7041 SwigValueWrapper
<wxVisualAttributes
> result
;
7044 PyObject
* obj0
= 0 ;
7045 char * kwnames
[] = {
7046 (char *) "variant", NULL
7049 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Frame_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
7051 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7052 if (!SWIG_IsOK(ecode1
)) {
7053 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Frame_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
7055 arg1
= static_cast< wxWindowVariant
>(val1
);
7058 if (!wxPyCheckForApp()) SWIG_fail
;
7059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7060 result
= wxFrame::GetClassDefaultAttributes(arg1
);
7061 wxPyEndAllowThreads(__tstate
);
7062 if (PyErr_Occurred()) SWIG_fail
;
7064 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
7071 SWIGINTERN PyObject
*Frame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7073 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7074 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrame
, SWIG_NewClientData(obj
));
7075 return SWIG_Py_Void();
7078 SWIGINTERN PyObject
*Frame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7079 return SWIG_Python_InitShadowInstance(args
);
7082 SWIGINTERN PyObject
*_wrap_new_Dialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7083 PyObject
*resultobj
= 0;
7084 wxWindow
*arg1
= (wxWindow
*) 0 ;
7085 int arg2
= (int) (int)-1 ;
7086 wxString
const &arg3_defvalue
= wxPyEmptyString
;
7087 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
7088 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7089 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7090 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7091 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7092 long arg6
= (long) wxDEFAULT_DIALOG_STYLE
;
7093 wxString
const &arg7_defvalue
= wxPyDialogNameStr
;
7094 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7095 wxDialog
*result
= 0 ;
7100 bool temp3
= false ;
7105 bool temp7
= false ;
7106 PyObject
* obj0
= 0 ;
7107 PyObject
* obj1
= 0 ;
7108 PyObject
* obj2
= 0 ;
7109 PyObject
* obj3
= 0 ;
7110 PyObject
* obj4
= 0 ;
7111 PyObject
* obj5
= 0 ;
7112 PyObject
* obj6
= 0 ;
7113 char * kwnames
[] = {
7114 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7117 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Dialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
7118 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7119 if (!SWIG_IsOK(res1
)) {
7120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Dialog" "', expected argument " "1"" of type '" "wxWindow *""'");
7122 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7124 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7125 if (!SWIG_IsOK(ecode2
)) {
7126 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Dialog" "', expected argument " "2"" of type '" "int""'");
7128 arg2
= static_cast< int >(val2
);
7132 arg3
= wxString_in_helper(obj2
);
7133 if (arg3
== NULL
) SWIG_fail
;
7140 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7146 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7150 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
7151 if (!SWIG_IsOK(ecode6
)) {
7152 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_Dialog" "', expected argument " "6"" of type '" "long""'");
7154 arg6
= static_cast< long >(val6
);
7158 arg7
= wxString_in_helper(obj6
);
7159 if (arg7
== NULL
) SWIG_fail
;
7164 if (!wxPyCheckForApp()) SWIG_fail
;
7165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7166 result
= (wxDialog
*)new wxDialog(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7167 wxPyEndAllowThreads(__tstate
);
7168 if (PyErr_Occurred()) SWIG_fail
;
7170 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDialog
, SWIG_POINTER_NEW
| 0 );
7193 SWIGINTERN PyObject
*_wrap_new_PreDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7194 PyObject
*resultobj
= 0;
7195 wxDialog
*result
= 0 ;
7197 if (!SWIG_Python_UnpackTuple(args
,"new_PreDialog",0,0,0)) SWIG_fail
;
7199 if (!wxPyCheckForApp()) SWIG_fail
;
7200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7201 result
= (wxDialog
*)new wxDialog();
7202 wxPyEndAllowThreads(__tstate
);
7203 if (PyErr_Occurred()) SWIG_fail
;
7205 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDialog
, SWIG_POINTER_OWN
| 0 );
7212 SWIGINTERN PyObject
*_wrap_Dialog_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7213 PyObject
*resultobj
= 0;
7214 wxDialog
*arg1
= (wxDialog
*) 0 ;
7215 wxWindow
*arg2
= (wxWindow
*) 0 ;
7216 int arg3
= (int) (int)-1 ;
7217 wxString
const &arg4_defvalue
= wxPyEmptyString
;
7218 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7219 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7220 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7221 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7222 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7223 long arg7
= (long) wxDEFAULT_DIALOG_STYLE
;
7224 wxString
const &arg8_defvalue
= wxPyDialogNameStr
;
7225 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7233 bool temp4
= false ;
7238 bool temp8
= false ;
7239 PyObject
* obj0
= 0 ;
7240 PyObject
* obj1
= 0 ;
7241 PyObject
* obj2
= 0 ;
7242 PyObject
* obj3
= 0 ;
7243 PyObject
* obj4
= 0 ;
7244 PyObject
* obj5
= 0 ;
7245 PyObject
* obj6
= 0 ;
7246 PyObject
* obj7
= 0 ;
7247 char * kwnames
[] = {
7248 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7251 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Dialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
7252 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7253 if (!SWIG_IsOK(res1
)) {
7254 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_Create" "', expected argument " "1"" of type '" "wxDialog *""'");
7256 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7257 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7258 if (!SWIG_IsOK(res2
)) {
7259 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Dialog_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
7261 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7263 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7264 if (!SWIG_IsOK(ecode3
)) {
7265 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Dialog_Create" "', expected argument " "3"" of type '" "int""'");
7267 arg3
= static_cast< int >(val3
);
7271 arg4
= wxString_in_helper(obj3
);
7272 if (arg4
== NULL
) SWIG_fail
;
7279 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
7285 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
7289 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
7290 if (!SWIG_IsOK(ecode7
)) {
7291 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "Dialog_Create" "', expected argument " "7"" of type '" "long""'");
7293 arg7
= static_cast< long >(val7
);
7297 arg8
= wxString_in_helper(obj7
);
7298 if (arg8
== NULL
) SWIG_fail
;
7303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7304 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
7305 wxPyEndAllowThreads(__tstate
);
7306 if (PyErr_Occurred()) SWIG_fail
;
7309 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7333 SWIGINTERN PyObject
*_wrap_Dialog_SetReturnCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7334 PyObject
*resultobj
= 0;
7335 wxDialog
*arg1
= (wxDialog
*) 0 ;
7341 PyObject
* obj0
= 0 ;
7342 PyObject
* obj1
= 0 ;
7343 char * kwnames
[] = {
7344 (char *) "self",(char *) "returnCode", NULL
7347 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetReturnCode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7348 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7349 if (!SWIG_IsOK(res1
)) {
7350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetReturnCode" "', expected argument " "1"" of type '" "wxDialog *""'");
7352 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7353 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7354 if (!SWIG_IsOK(ecode2
)) {
7355 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetReturnCode" "', expected argument " "2"" of type '" "int""'");
7357 arg2
= static_cast< int >(val2
);
7359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7360 (arg1
)->SetReturnCode(arg2
);
7361 wxPyEndAllowThreads(__tstate
);
7362 if (PyErr_Occurred()) SWIG_fail
;
7364 resultobj
= SWIG_Py_Void();
7371 SWIGINTERN PyObject
*_wrap_Dialog_GetReturnCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7372 PyObject
*resultobj
= 0;
7373 wxDialog
*arg1
= (wxDialog
*) 0 ;
7377 PyObject
*swig_obj
[1] ;
7379 if (!args
) SWIG_fail
;
7381 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7382 if (!SWIG_IsOK(res1
)) {
7383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetReturnCode" "', expected argument " "1"" of type '" "wxDialog const *""'");
7385 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7388 result
= (int)((wxDialog
const *)arg1
)->GetReturnCode();
7389 wxPyEndAllowThreads(__tstate
);
7390 if (PyErr_Occurred()) SWIG_fail
;
7392 resultobj
= SWIG_From_int(static_cast< int >(result
));
7399 SWIGINTERN PyObject
*_wrap_Dialog_SetAffirmativeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7400 PyObject
*resultobj
= 0;
7401 wxDialog
*arg1
= (wxDialog
*) 0 ;
7407 PyObject
* obj0
= 0 ;
7408 PyObject
* obj1
= 0 ;
7409 char * kwnames
[] = {
7410 (char *) "self",(char *) "affirmativeId", NULL
7413 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetAffirmativeId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7414 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7415 if (!SWIG_IsOK(res1
)) {
7416 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetAffirmativeId" "', expected argument " "1"" of type '" "wxDialog *""'");
7418 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7419 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7420 if (!SWIG_IsOK(ecode2
)) {
7421 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetAffirmativeId" "', expected argument " "2"" of type '" "int""'");
7423 arg2
= static_cast< int >(val2
);
7425 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7426 (arg1
)->SetAffirmativeId(arg2
);
7427 wxPyEndAllowThreads(__tstate
);
7428 if (PyErr_Occurred()) SWIG_fail
;
7430 resultobj
= SWIG_Py_Void();
7437 SWIGINTERN PyObject
*_wrap_Dialog_GetAffirmativeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7438 PyObject
*resultobj
= 0;
7439 wxDialog
*arg1
= (wxDialog
*) 0 ;
7443 PyObject
*swig_obj
[1] ;
7445 if (!args
) SWIG_fail
;
7447 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7448 if (!SWIG_IsOK(res1
)) {
7449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetAffirmativeId" "', expected argument " "1"" of type '" "wxDialog const *""'");
7451 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7454 result
= (int)((wxDialog
const *)arg1
)->GetAffirmativeId();
7455 wxPyEndAllowThreads(__tstate
);
7456 if (PyErr_Occurred()) SWIG_fail
;
7458 resultobj
= SWIG_From_int(static_cast< int >(result
));
7465 SWIGINTERN PyObject
*_wrap_Dialog_SetEscapeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7466 PyObject
*resultobj
= 0;
7467 wxDialog
*arg1
= (wxDialog
*) 0 ;
7473 PyObject
* obj0
= 0 ;
7474 PyObject
* obj1
= 0 ;
7475 char * kwnames
[] = {
7476 (char *) "self",(char *) "escapeId", NULL
7479 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetEscapeId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7480 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7481 if (!SWIG_IsOK(res1
)) {
7482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetEscapeId" "', expected argument " "1"" of type '" "wxDialog *""'");
7484 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7485 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7486 if (!SWIG_IsOK(ecode2
)) {
7487 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetEscapeId" "', expected argument " "2"" of type '" "int""'");
7489 arg2
= static_cast< int >(val2
);
7491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7492 (arg1
)->SetEscapeId(arg2
);
7493 wxPyEndAllowThreads(__tstate
);
7494 if (PyErr_Occurred()) SWIG_fail
;
7496 resultobj
= SWIG_Py_Void();
7503 SWIGINTERN PyObject
*_wrap_Dialog_GetEscapeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7504 PyObject
*resultobj
= 0;
7505 wxDialog
*arg1
= (wxDialog
*) 0 ;
7509 PyObject
*swig_obj
[1] ;
7511 if (!args
) SWIG_fail
;
7513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7514 if (!SWIG_IsOK(res1
)) {
7515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetEscapeId" "', expected argument " "1"" of type '" "wxDialog const *""'");
7517 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7520 result
= (int)((wxDialog
const *)arg1
)->GetEscapeId();
7521 wxPyEndAllowThreads(__tstate
);
7522 if (PyErr_Occurred()) SWIG_fail
;
7524 resultobj
= SWIG_From_int(static_cast< int >(result
));
7531 SWIGINTERN PyObject
*_wrap_Dialog_CreateTextSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7532 PyObject
*resultobj
= 0;
7533 wxDialog
*arg1
= (wxDialog
*) 0 ;
7534 wxString
*arg2
= 0 ;
7535 wxSizer
*result
= 0 ;
7538 bool temp2
= false ;
7539 PyObject
* obj0
= 0 ;
7540 PyObject
* obj1
= 0 ;
7541 char * kwnames
[] = {
7542 (char *) "self",(char *) "message", NULL
7545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateTextSizer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7547 if (!SWIG_IsOK(res1
)) {
7548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateTextSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7550 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7552 arg2
= wxString_in_helper(obj1
);
7553 if (arg2
== NULL
) SWIG_fail
;
7557 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7558 result
= (wxSizer
*)(arg1
)->CreateTextSizer((wxString
const &)*arg2
);
7559 wxPyEndAllowThreads(__tstate
);
7560 if (PyErr_Occurred()) SWIG_fail
;
7563 resultobj
= wxPyMake_wxObject(result
, (bool)0);
7579 SWIGINTERN PyObject
*_wrap_Dialog_CreateButtonSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7580 PyObject
*resultobj
= 0;
7581 wxDialog
*arg1
= (wxDialog
*) 0 ;
7583 bool arg3
= (bool) false ;
7584 int arg4
= (int) 0 ;
7585 wxSizer
*result
= 0 ;
7594 PyObject
* obj0
= 0 ;
7595 PyObject
* obj1
= 0 ;
7596 PyObject
* obj2
= 0 ;
7597 PyObject
* obj3
= 0 ;
7598 char * kwnames
[] = {
7599 (char *) "self",(char *) "flags",(char *) "separated",(char *) "distance", NULL
7602 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:Dialog_CreateButtonSizer",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7603 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7604 if (!SWIG_IsOK(res1
)) {
7605 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7607 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7608 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
7609 if (!SWIG_IsOK(ecode2
)) {
7610 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "2"" of type '" "long""'");
7612 arg2
= static_cast< long >(val2
);
7614 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
7615 if (!SWIG_IsOK(ecode3
)) {
7616 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "3"" of type '" "bool""'");
7618 arg3
= static_cast< bool >(val3
);
7621 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7622 if (!SWIG_IsOK(ecode4
)) {
7623 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "4"" of type '" "int""'");
7625 arg4
= static_cast< int >(val4
);
7628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7629 result
= (wxSizer
*)(arg1
)->CreateButtonSizer(arg2
,arg3
,arg4
);
7630 wxPyEndAllowThreads(__tstate
);
7631 if (PyErr_Occurred()) SWIG_fail
;
7634 resultobj
= wxPyMake_wxObject(result
, (bool)0);
7642 SWIGINTERN PyObject
*_wrap_Dialog_CreateStdDialogButtonSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7643 PyObject
*resultobj
= 0;
7644 wxDialog
*arg1
= (wxDialog
*) 0 ;
7646 wxStdDialogButtonSizer
*result
= 0 ;
7651 PyObject
* obj0
= 0 ;
7652 PyObject
* obj1
= 0 ;
7653 char * kwnames
[] = {
7654 (char *) "self",(char *) "flags", NULL
7657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateStdDialogButtonSizer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7658 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7659 if (!SWIG_IsOK(res1
)) {
7660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateStdDialogButtonSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7662 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7663 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
7664 if (!SWIG_IsOK(ecode2
)) {
7665 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_CreateStdDialogButtonSizer" "', expected argument " "2"" of type '" "long""'");
7667 arg2
= static_cast< long >(val2
);
7669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7670 result
= (wxStdDialogButtonSizer
*)(arg1
)->CreateStdDialogButtonSizer(arg2
);
7671 wxPyEndAllowThreads(__tstate
);
7672 if (PyErr_Occurred()) SWIG_fail
;
7674 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStdDialogButtonSizer
, 0 | 0 );
7681 SWIGINTERN PyObject
*_wrap_Dialog_IsModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7682 PyObject
*resultobj
= 0;
7683 wxDialog
*arg1
= (wxDialog
*) 0 ;
7687 PyObject
*swig_obj
[1] ;
7689 if (!args
) SWIG_fail
;
7691 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7692 if (!SWIG_IsOK(res1
)) {
7693 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_IsModal" "', expected argument " "1"" of type '" "wxDialog const *""'");
7695 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7697 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7698 result
= (bool)((wxDialog
const *)arg1
)->IsModal();
7699 wxPyEndAllowThreads(__tstate
);
7700 if (PyErr_Occurred()) SWIG_fail
;
7703 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7711 SWIGINTERN PyObject
*_wrap_Dialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7712 PyObject
*resultobj
= 0;
7713 wxDialog
*arg1
= (wxDialog
*) 0 ;
7717 PyObject
*swig_obj
[1] ;
7719 if (!args
) SWIG_fail
;
7721 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7722 if (!SWIG_IsOK(res1
)) {
7723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_ShowModal" "', expected argument " "1"" of type '" "wxDialog *""'");
7725 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7728 result
= (int)(arg1
)->ShowModal();
7729 wxPyEndAllowThreads(__tstate
);
7730 if (PyErr_Occurred()) SWIG_fail
;
7732 resultobj
= SWIG_From_int(static_cast< int >(result
));
7739 SWIGINTERN PyObject
*_wrap_Dialog_EndModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7740 PyObject
*resultobj
= 0;
7741 wxDialog
*arg1
= (wxDialog
*) 0 ;
7747 PyObject
* obj0
= 0 ;
7748 PyObject
* obj1
= 0 ;
7749 char * kwnames
[] = {
7750 (char *) "self",(char *) "retCode", NULL
7753 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_EndModal",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7754 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7755 if (!SWIG_IsOK(res1
)) {
7756 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_EndModal" "', expected argument " "1"" of type '" "wxDialog *""'");
7758 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7759 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7760 if (!SWIG_IsOK(ecode2
)) {
7761 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_EndModal" "', expected argument " "2"" of type '" "int""'");
7763 arg2
= static_cast< int >(val2
);
7765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7766 (arg1
)->EndModal(arg2
);
7767 wxPyEndAllowThreads(__tstate
);
7768 if (PyErr_Occurred()) SWIG_fail
;
7770 resultobj
= SWIG_Py_Void();
7777 SWIGINTERN PyObject
*_wrap_Dialog_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7778 PyObject
*resultobj
= 0;
7779 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7780 SwigValueWrapper
<wxVisualAttributes
> result
;
7783 PyObject
* obj0
= 0 ;
7784 char * kwnames
[] = {
7785 (char *) "variant", NULL
7788 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Dialog_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
7790 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7791 if (!SWIG_IsOK(ecode1
)) {
7792 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Dialog_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
7794 arg1
= static_cast< wxWindowVariant
>(val1
);
7797 if (!wxPyCheckForApp()) SWIG_fail
;
7798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7799 result
= wxDialog::GetClassDefaultAttributes(arg1
);
7800 wxPyEndAllowThreads(__tstate
);
7801 if (PyErr_Occurred()) SWIG_fail
;
7803 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
7810 SWIGINTERN PyObject
*Dialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7812 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7813 SWIG_TypeNewClientData(SWIGTYPE_p_wxDialog
, SWIG_NewClientData(obj
));
7814 return SWIG_Py_Void();
7817 SWIGINTERN PyObject
*Dialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7818 return SWIG_Python_InitShadowInstance(args
);
7821 SWIGINTERN PyObject
*_wrap_new_MiniFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7822 PyObject
*resultobj
= 0;
7823 wxWindow
*arg1
= (wxWindow
*) 0 ;
7824 int arg2
= (int) (int)-1 ;
7825 wxString
const &arg3_defvalue
= wxPyEmptyString
;
7826 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
7827 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7828 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7829 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7830 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7831 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
7832 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
7833 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7834 wxMiniFrame
*result
= 0 ;
7839 bool temp3
= false ;
7844 bool temp7
= false ;
7845 PyObject
* obj0
= 0 ;
7846 PyObject
* obj1
= 0 ;
7847 PyObject
* obj2
= 0 ;
7848 PyObject
* obj3
= 0 ;
7849 PyObject
* obj4
= 0 ;
7850 PyObject
* obj5
= 0 ;
7851 PyObject
* obj6
= 0 ;
7852 char * kwnames
[] = {
7853 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7856 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MiniFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
7857 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7858 if (!SWIG_IsOK(res1
)) {
7859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MiniFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
7861 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7863 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7864 if (!SWIG_IsOK(ecode2
)) {
7865 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MiniFrame" "', expected argument " "2"" of type '" "int""'");
7867 arg2
= static_cast< int >(val2
);
7871 arg3
= wxString_in_helper(obj2
);
7872 if (arg3
== NULL
) SWIG_fail
;
7879 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7885 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7889 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
7890 if (!SWIG_IsOK(ecode6
)) {
7891 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MiniFrame" "', expected argument " "6"" of type '" "long""'");
7893 arg6
= static_cast< long >(val6
);
7897 arg7
= wxString_in_helper(obj6
);
7898 if (arg7
== NULL
) SWIG_fail
;
7903 if (!wxPyCheckForApp()) SWIG_fail
;
7904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7905 result
= (wxMiniFrame
*)new wxMiniFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7906 wxPyEndAllowThreads(__tstate
);
7907 if (PyErr_Occurred()) SWIG_fail
;
7909 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMiniFrame
, SWIG_POINTER_NEW
| 0 );
7932 SWIGINTERN PyObject
*_wrap_new_PreMiniFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7933 PyObject
*resultobj
= 0;
7934 wxMiniFrame
*result
= 0 ;
7936 if (!SWIG_Python_UnpackTuple(args
,"new_PreMiniFrame",0,0,0)) SWIG_fail
;
7938 if (!wxPyCheckForApp()) SWIG_fail
;
7939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7940 result
= (wxMiniFrame
*)new wxMiniFrame();
7941 wxPyEndAllowThreads(__tstate
);
7942 if (PyErr_Occurred()) SWIG_fail
;
7944 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMiniFrame
, SWIG_POINTER_OWN
| 0 );
7951 SWIGINTERN PyObject
*_wrap_MiniFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7952 PyObject
*resultobj
= 0;
7953 wxMiniFrame
*arg1
= (wxMiniFrame
*) 0 ;
7954 wxWindow
*arg2
= (wxWindow
*) 0 ;
7955 int arg3
= (int) (int)-1 ;
7956 wxString
const &arg4_defvalue
= wxPyEmptyString
;
7957 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7958 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7959 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7960 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7961 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7962 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
7963 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
7964 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7972 bool temp4
= false ;
7977 bool temp8
= false ;
7978 PyObject
* obj0
= 0 ;
7979 PyObject
* obj1
= 0 ;
7980 PyObject
* obj2
= 0 ;
7981 PyObject
* obj3
= 0 ;
7982 PyObject
* obj4
= 0 ;
7983 PyObject
* obj5
= 0 ;
7984 PyObject
* obj6
= 0 ;
7985 PyObject
* obj7
= 0 ;
7986 char * kwnames
[] = {
7987 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MiniFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
7991 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMiniFrame
, 0 | 0 );
7992 if (!SWIG_IsOK(res1
)) {
7993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MiniFrame_Create" "', expected argument " "1"" of type '" "wxMiniFrame *""'");
7995 arg1
= reinterpret_cast< wxMiniFrame
* >(argp1
);
7996 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7997 if (!SWIG_IsOK(res2
)) {
7998 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MiniFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
8000 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8002 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8003 if (!SWIG_IsOK(ecode3
)) {
8004 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MiniFrame_Create" "', expected argument " "3"" of type '" "int""'");
8006 arg3
= static_cast< int >(val3
);
8010 arg4
= wxString_in_helper(obj3
);
8011 if (arg4
== NULL
) SWIG_fail
;
8018 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
8024 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
8028 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
8029 if (!SWIG_IsOK(ecode7
)) {
8030 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MiniFrame_Create" "', expected argument " "7"" of type '" "long""'");
8032 arg7
= static_cast< long >(val7
);
8036 arg8
= wxString_in_helper(obj7
);
8037 if (arg8
== NULL
) SWIG_fail
;
8042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8043 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
8044 wxPyEndAllowThreads(__tstate
);
8045 if (PyErr_Occurred()) SWIG_fail
;
8048 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8072 SWIGINTERN PyObject
*MiniFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8074 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8075 SWIG_TypeNewClientData(SWIGTYPE_p_wxMiniFrame
, SWIG_NewClientData(obj
));
8076 return SWIG_Py_Void();
8079 SWIGINTERN PyObject
*MiniFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8080 return SWIG_Python_InitShadowInstance(args
);
8083 SWIGINTERN PyObject
*_wrap_new_SplashScreenWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8084 PyObject
*resultobj
= 0;
8085 wxBitmap
*arg1
= 0 ;
8086 wxWindow
*arg2
= (wxWindow
*) 0 ;
8088 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
8089 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
8090 wxSize
const &arg5_defvalue
= wxDefaultSize
;
8091 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
8092 long arg6
= (long) wxNO_BORDER
;
8093 wxSplashScreenWindow
*result
= 0 ;
8104 PyObject
* obj0
= 0 ;
8105 PyObject
* obj1
= 0 ;
8106 PyObject
* obj2
= 0 ;
8107 PyObject
* obj3
= 0 ;
8108 PyObject
* obj4
= 0 ;
8109 PyObject
* obj5
= 0 ;
8110 char * kwnames
[] = {
8111 (char *) "bitmap",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
8114 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_SplashScreenWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
8115 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8116 if (!SWIG_IsOK(res1
)) {
8117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplashScreenWindow" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8120 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_SplashScreenWindow" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8122 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8123 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8124 if (!SWIG_IsOK(res2
)) {
8125 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_SplashScreenWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
8127 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8128 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8129 if (!SWIG_IsOK(ecode3
)) {
8130 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_SplashScreenWindow" "', expected argument " "3"" of type '" "int""'");
8132 arg3
= static_cast< int >(val3
);
8136 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8142 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
8146 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
8147 if (!SWIG_IsOK(ecode6
)) {
8148 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_SplashScreenWindow" "', expected argument " "6"" of type '" "long""'");
8150 arg6
= static_cast< long >(val6
);
8153 if (!wxPyCheckForApp()) SWIG_fail
;
8154 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8155 result
= (wxSplashScreenWindow
*)new wxSplashScreenWindow((wxBitmap
const &)*arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
8156 wxPyEndAllowThreads(__tstate
);
8157 if (PyErr_Occurred()) SWIG_fail
;
8159 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreenWindow
, SWIG_POINTER_NEW
| 0 );
8166 SWIGINTERN PyObject
*_wrap_SplashScreenWindow_SetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8167 PyObject
*resultobj
= 0;
8168 wxSplashScreenWindow
*arg1
= (wxSplashScreenWindow
*) 0 ;
8169 wxBitmap
*arg2
= 0 ;
8174 PyObject
* obj0
= 0 ;
8175 PyObject
* obj1
= 0 ;
8176 char * kwnames
[] = {
8177 (char *) "self",(char *) "bitmap", NULL
8180 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplashScreenWindow_SetBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8181 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8182 if (!SWIG_IsOK(res1
)) {
8183 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "1"" of type '" "wxSplashScreenWindow *""'");
8185 arg1
= reinterpret_cast< wxSplashScreenWindow
* >(argp1
);
8186 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8187 if (!SWIG_IsOK(res2
)) {
8188 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
8191 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
8193 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
8195 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8196 (arg1
)->SetBitmap((wxBitmap
const &)*arg2
);
8197 wxPyEndAllowThreads(__tstate
);
8198 if (PyErr_Occurred()) SWIG_fail
;
8200 resultobj
= SWIG_Py_Void();
8207 SWIGINTERN PyObject
*_wrap_SplashScreenWindow_GetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8208 PyObject
*resultobj
= 0;
8209 wxSplashScreenWindow
*arg1
= (wxSplashScreenWindow
*) 0 ;
8210 wxBitmap
*result
= 0 ;
8213 PyObject
*swig_obj
[1] ;
8215 if (!args
) SWIG_fail
;
8217 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8218 if (!SWIG_IsOK(res1
)) {
8219 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreenWindow_GetBitmap" "', expected argument " "1"" of type '" "wxSplashScreenWindow *""'");
8221 arg1
= reinterpret_cast< wxSplashScreenWindow
* >(argp1
);
8223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8225 wxBitmap
&_result_ref
= (arg1
)->GetBitmap();
8226 result
= (wxBitmap
*) &_result_ref
;
8228 wxPyEndAllowThreads(__tstate
);
8229 if (PyErr_Occurred()) SWIG_fail
;
8232 wxBitmap
* resultptr
= new wxBitmap(*result
);
8233 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
8241 SWIGINTERN PyObject
*SplashScreenWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8243 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8244 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplashScreenWindow
, SWIG_NewClientData(obj
));
8245 return SWIG_Py_Void();
8248 SWIGINTERN PyObject
*SplashScreenWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8249 return SWIG_Python_InitShadowInstance(args
);
8252 SWIGINTERN PyObject
*_wrap_new_SplashScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8253 PyObject
*resultobj
= 0;
8254 wxBitmap
*arg1
= 0 ;
8257 wxWindow
*arg4
= (wxWindow
*) 0 ;
8258 int arg5
= (int) -1 ;
8259 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
8260 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
8261 wxSize
const &arg7_defvalue
= wxDefaultSize
;
8262 wxSize
*arg7
= (wxSize
*) &arg7_defvalue
;
8263 long arg8
= (long) wxSIMPLE_BORDER
|wxFRAME_NO_TASKBAR
|wxSTAY_ON_TOP
;
8264 wxSplashScreen
*result
= 0 ;
8279 PyObject
* obj0
= 0 ;
8280 PyObject
* obj1
= 0 ;
8281 PyObject
* obj2
= 0 ;
8282 PyObject
* obj3
= 0 ;
8283 PyObject
* obj4
= 0 ;
8284 PyObject
* obj5
= 0 ;
8285 PyObject
* obj6
= 0 ;
8286 PyObject
* obj7
= 0 ;
8287 char * kwnames
[] = {
8288 (char *) "bitmap",(char *) "splashStyle",(char *) "milliseconds",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
8291 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:new_SplashScreen",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
8292 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8293 if (!SWIG_IsOK(res1
)) {
8294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplashScreen" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8297 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_SplashScreen" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8299 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8300 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
8301 if (!SWIG_IsOK(ecode2
)) {
8302 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SplashScreen" "', expected argument " "2"" of type '" "long""'");
8304 arg2
= static_cast< long >(val2
);
8305 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8306 if (!SWIG_IsOK(ecode3
)) {
8307 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_SplashScreen" "', expected argument " "3"" of type '" "int""'");
8309 arg3
= static_cast< int >(val3
);
8310 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8311 if (!SWIG_IsOK(res4
)) {
8312 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_SplashScreen" "', expected argument " "4"" of type '" "wxWindow *""'");
8314 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
8316 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
8317 if (!SWIG_IsOK(ecode5
)) {
8318 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SplashScreen" "', expected argument " "5"" of type '" "int""'");
8320 arg5
= static_cast< int >(val5
);
8325 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
8331 if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
;
8335 ecode8
= SWIG_AsVal_long(obj7
, &val8
);
8336 if (!SWIG_IsOK(ecode8
)) {
8337 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "new_SplashScreen" "', expected argument " "8"" of type '" "long""'");
8339 arg8
= static_cast< long >(val8
);
8342 if (!wxPyCheckForApp()) SWIG_fail
;
8343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8344 result
= (wxSplashScreen
*)new wxSplashScreen((wxBitmap
const &)*arg1
,arg2
,arg3
,arg4
,arg5
,(wxPoint
const &)*arg6
,(wxSize
const &)*arg7
,arg8
);
8345 wxPyEndAllowThreads(__tstate
);
8346 if (PyErr_Occurred()) SWIG_fail
;
8348 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreen
, SWIG_POINTER_NEW
| 0 );
8355 SWIGINTERN PyObject
*_wrap_SplashScreen_GetSplashStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8356 PyObject
*resultobj
= 0;
8357 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8361 PyObject
*swig_obj
[1] ;
8363 if (!args
) SWIG_fail
;
8365 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8366 if (!SWIG_IsOK(res1
)) {
8367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetSplashStyle" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8369 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8372 result
= (long)((wxSplashScreen
const *)arg1
)->GetSplashStyle();
8373 wxPyEndAllowThreads(__tstate
);
8374 if (PyErr_Occurred()) SWIG_fail
;
8376 resultobj
= SWIG_From_long(static_cast< long >(result
));
8383 SWIGINTERN PyObject
*_wrap_SplashScreen_GetSplashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8384 PyObject
*resultobj
= 0;
8385 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8386 wxSplashScreenWindow
*result
= 0 ;
8389 PyObject
*swig_obj
[1] ;
8391 if (!args
) SWIG_fail
;
8393 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8394 if (!SWIG_IsOK(res1
)) {
8395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetSplashWindow" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8397 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8400 result
= (wxSplashScreenWindow
*)((wxSplashScreen
const *)arg1
)->GetSplashWindow();
8401 wxPyEndAllowThreads(__tstate
);
8402 if (PyErr_Occurred()) SWIG_fail
;
8404 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8411 SWIGINTERN PyObject
*_wrap_SplashScreen_GetTimeout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8412 PyObject
*resultobj
= 0;
8413 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8417 PyObject
*swig_obj
[1] ;
8419 if (!args
) SWIG_fail
;
8421 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8422 if (!SWIG_IsOK(res1
)) {
8423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetTimeout" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8425 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8428 result
= (int)((wxSplashScreen
const *)arg1
)->GetTimeout();
8429 wxPyEndAllowThreads(__tstate
);
8430 if (PyErr_Occurred()) SWIG_fail
;
8432 resultobj
= SWIG_From_int(static_cast< int >(result
));
8439 SWIGINTERN PyObject
*SplashScreen_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8441 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8442 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplashScreen
, SWIG_NewClientData(obj
));
8443 return SWIG_Py_Void();
8446 SWIGINTERN PyObject
*SplashScreen_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8447 return SWIG_Python_InitShadowInstance(args
);
8450 SWIGINTERN PyObject
*_wrap_new_StatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8451 PyObject
*resultobj
= 0;
8452 wxWindow
*arg1
= (wxWindow
*) 0 ;
8453 int arg2
= (int) -1 ;
8454 long arg3
= (long) wxDEFAULT_STATUSBAR_STYLE
;
8455 wxString
const &arg4_defvalue
= wxPyStatusLineNameStr
;
8456 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
8457 wxStatusBar
*result
= 0 ;
8464 bool temp4
= false ;
8465 PyObject
* obj0
= 0 ;
8466 PyObject
* obj1
= 0 ;
8467 PyObject
* obj2
= 0 ;
8468 PyObject
* obj3
= 0 ;
8469 char * kwnames
[] = {
8470 (char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL
8473 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:new_StatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8474 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8475 if (!SWIG_IsOK(res1
)) {
8476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StatusBar" "', expected argument " "1"" of type '" "wxWindow *""'");
8478 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
8480 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8481 if (!SWIG_IsOK(ecode2
)) {
8482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StatusBar" "', expected argument " "2"" of type '" "int""'");
8484 arg2
= static_cast< int >(val2
);
8487 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
8488 if (!SWIG_IsOK(ecode3
)) {
8489 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_StatusBar" "', expected argument " "3"" of type '" "long""'");
8491 arg3
= static_cast< long >(val3
);
8495 arg4
= wxString_in_helper(obj3
);
8496 if (arg4
== NULL
) SWIG_fail
;
8501 if (!wxPyCheckForApp()) SWIG_fail
;
8502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8503 result
= (wxStatusBar
*)new wxStatusBar(arg1
,arg2
,arg3
,(wxString
const &)*arg4
);
8504 wxPyEndAllowThreads(__tstate
);
8505 if (PyErr_Occurred()) SWIG_fail
;
8507 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_NEW
| 0 );
8522 SWIGINTERN PyObject
*_wrap_new_PreStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8523 PyObject
*resultobj
= 0;
8524 wxStatusBar
*result
= 0 ;
8526 if (!SWIG_Python_UnpackTuple(args
,"new_PreStatusBar",0,0,0)) SWIG_fail
;
8528 if (!wxPyCheckForApp()) SWIG_fail
;
8529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8530 result
= (wxStatusBar
*)new wxStatusBar();
8531 wxPyEndAllowThreads(__tstate
);
8532 if (PyErr_Occurred()) SWIG_fail
;
8534 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_OWN
| 0 );
8541 SWIGINTERN PyObject
*_wrap_StatusBar_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8542 PyObject
*resultobj
= 0;
8543 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8544 wxWindow
*arg2
= (wxWindow
*) 0 ;
8545 int arg3
= (int) -1 ;
8546 long arg4
= (long) wxST_SIZEGRIP
;
8547 wxString
const &arg5_defvalue
= wxPyStatusLineNameStr
;
8548 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
8558 bool temp5
= false ;
8559 PyObject
* obj0
= 0 ;
8560 PyObject
* obj1
= 0 ;
8561 PyObject
* obj2
= 0 ;
8562 PyObject
* obj3
= 0 ;
8563 PyObject
* obj4
= 0 ;
8564 char * kwnames
[] = {
8565 (char *) "self",(char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL
8568 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:StatusBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8569 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8570 if (!SWIG_IsOK(res1
)) {
8571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_Create" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8573 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8574 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8575 if (!SWIG_IsOK(res2
)) {
8576 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StatusBar_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
8578 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8580 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8581 if (!SWIG_IsOK(ecode3
)) {
8582 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_Create" "', expected argument " "3"" of type '" "int""'");
8584 arg3
= static_cast< int >(val3
);
8587 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
8588 if (!SWIG_IsOK(ecode4
)) {
8589 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StatusBar_Create" "', expected argument " "4"" of type '" "long""'");
8591 arg4
= static_cast< long >(val4
);
8595 arg5
= wxString_in_helper(obj4
);
8596 if (arg5
== NULL
) SWIG_fail
;
8601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8602 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,(wxString
const &)*arg5
);
8603 wxPyEndAllowThreads(__tstate
);
8604 if (PyErr_Occurred()) SWIG_fail
;
8607 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8623 SWIGINTERN PyObject
*_wrap_StatusBar_SetFieldsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8624 PyObject
*resultobj
= 0;
8625 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8626 int arg2
= (int) 1 ;
8631 PyObject
* obj0
= 0 ;
8632 PyObject
* obj1
= 0 ;
8633 char * kwnames
[] = {
8634 (char *) "self",(char *) "number", NULL
8637 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_SetFieldsCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8638 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8639 if (!SWIG_IsOK(res1
)) {
8640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetFieldsCount" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8642 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8644 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8645 if (!SWIG_IsOK(ecode2
)) {
8646 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_SetFieldsCount" "', expected argument " "2"" of type '" "int""'");
8648 arg2
= static_cast< int >(val2
);
8651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8652 (arg1
)->SetFieldsCount(arg2
);
8653 wxPyEndAllowThreads(__tstate
);
8654 if (PyErr_Occurred()) SWIG_fail
;
8656 resultobj
= SWIG_Py_Void();
8663 SWIGINTERN PyObject
*_wrap_StatusBar_GetFieldsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8664 PyObject
*resultobj
= 0;
8665 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8669 PyObject
*swig_obj
[1] ;
8671 if (!args
) SWIG_fail
;
8673 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8674 if (!SWIG_IsOK(res1
)) {
8675 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetFieldsCount" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
8677 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8680 result
= (int)((wxStatusBar
const *)arg1
)->GetFieldsCount();
8681 wxPyEndAllowThreads(__tstate
);
8682 if (PyErr_Occurred()) SWIG_fail
;
8684 resultobj
= SWIG_From_int(static_cast< int >(result
));
8691 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8692 PyObject
*resultobj
= 0;
8693 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8694 wxString
*arg2
= 0 ;
8695 int arg3
= (int) 0 ;
8698 bool temp2
= false ;
8701 PyObject
* obj0
= 0 ;
8702 PyObject
* obj1
= 0 ;
8703 PyObject
* obj2
= 0 ;
8704 char * kwnames
[] = {
8705 (char *) "self",(char *) "text",(char *) "number", NULL
8708 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8709 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8710 if (!SWIG_IsOK(res1
)) {
8711 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8713 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8715 arg2
= wxString_in_helper(obj1
);
8716 if (arg2
== NULL
) SWIG_fail
;
8720 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8721 if (!SWIG_IsOK(ecode3
)) {
8722 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_SetStatusText" "', expected argument " "3"" of type '" "int""'");
8724 arg3
= static_cast< int >(val3
);
8727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8728 (arg1
)->SetStatusText((wxString
const &)*arg2
,arg3
);
8729 wxPyEndAllowThreads(__tstate
);
8730 if (PyErr_Occurred()) SWIG_fail
;
8732 resultobj
= SWIG_Py_Void();
8747 SWIGINTERN PyObject
*_wrap_StatusBar_GetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8748 PyObject
*resultobj
= 0;
8749 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8750 int arg2
= (int) 0 ;
8756 PyObject
* obj0
= 0 ;
8757 PyObject
* obj1
= 0 ;
8758 char * kwnames
[] = {
8759 (char *) "self",(char *) "number", NULL
8762 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_GetStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8763 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8764 if (!SWIG_IsOK(res1
)) {
8765 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetStatusText" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
8767 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8769 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8770 if (!SWIG_IsOK(ecode2
)) {
8771 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_GetStatusText" "', expected argument " "2"" of type '" "int""'");
8773 arg2
= static_cast< int >(val2
);
8776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8777 result
= ((wxStatusBar
const *)arg1
)->GetStatusText(arg2
);
8778 wxPyEndAllowThreads(__tstate
);
8779 if (PyErr_Occurred()) SWIG_fail
;
8783 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8785 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8794 SWIGINTERN PyObject
*_wrap_StatusBar_PushStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8795 PyObject
*resultobj
= 0;
8796 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8797 wxString
*arg2
= 0 ;
8798 int arg3
= (int) 0 ;
8801 bool temp2
= false ;
8804 PyObject
* obj0
= 0 ;
8805 PyObject
* obj1
= 0 ;
8806 PyObject
* obj2
= 0 ;
8807 char * kwnames
[] = {
8808 (char *) "self",(char *) "text",(char *) "number", NULL
8811 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8812 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8813 if (!SWIG_IsOK(res1
)) {
8814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_PushStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8816 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8818 arg2
= wxString_in_helper(obj1
);
8819 if (arg2
== NULL
) SWIG_fail
;
8823 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8824 if (!SWIG_IsOK(ecode3
)) {
8825 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_PushStatusText" "', expected argument " "3"" of type '" "int""'");
8827 arg3
= static_cast< int >(val3
);
8830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8831 (arg1
)->PushStatusText((wxString
const &)*arg2
,arg3
);
8832 wxPyEndAllowThreads(__tstate
);
8833 if (PyErr_Occurred()) SWIG_fail
;
8835 resultobj
= SWIG_Py_Void();
8850 SWIGINTERN PyObject
*_wrap_StatusBar_PopStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8851 PyObject
*resultobj
= 0;
8852 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8853 int arg2
= (int) 0 ;
8858 PyObject
* obj0
= 0 ;
8859 PyObject
* obj1
= 0 ;
8860 char * kwnames
[] = {
8861 (char *) "self",(char *) "number", NULL
8864 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_PopStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8865 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8866 if (!SWIG_IsOK(res1
)) {
8867 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_PopStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8869 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8871 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8872 if (!SWIG_IsOK(ecode2
)) {
8873 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_PopStatusText" "', expected argument " "2"" of type '" "int""'");
8875 arg2
= static_cast< int >(val2
);
8878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8879 (arg1
)->PopStatusText(arg2
);
8880 wxPyEndAllowThreads(__tstate
);
8881 if (PyErr_Occurred()) SWIG_fail
;
8883 resultobj
= SWIG_Py_Void();
8890 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusWidths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8891 PyObject
*resultobj
= 0;
8892 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8894 int *arg3
= (int *) 0 ;
8897 PyObject
* obj0
= 0 ;
8898 PyObject
* obj1
= 0 ;
8899 char * kwnames
[] = {
8900 (char *) "self",(char *) "widths", NULL
8903 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusWidths",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8904 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8905 if (!SWIG_IsOK(res1
)) {
8906 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusWidths" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8908 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8910 arg2
= PyList_Size(obj1
);
8911 arg3
= int_LIST_helper(obj1
);
8912 if (arg3
== NULL
) SWIG_fail
;
8915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8916 (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
);
8917 wxPyEndAllowThreads(__tstate
);
8918 if (PyErr_Occurred()) SWIG_fail
;
8920 resultobj
= SWIG_Py_Void();
8922 if (arg3
) delete [] arg3
;
8927 if (arg3
) delete [] arg3
;
8933 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusStyles(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8934 PyObject
*resultobj
= 0;
8935 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8937 int *arg3
= (int *) 0 ;
8940 PyObject
* obj0
= 0 ;
8941 PyObject
* obj1
= 0 ;
8942 char * kwnames
[] = {
8943 (char *) "self",(char *) "styles", NULL
8946 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusStyles",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8947 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8948 if (!SWIG_IsOK(res1
)) {
8949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusStyles" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8951 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8953 arg2
= PyList_Size(obj1
);
8954 arg3
= int_LIST_helper(obj1
);
8955 if (arg3
== NULL
) SWIG_fail
;
8958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8959 (arg1
)->SetStatusStyles(arg2
,(int const *)arg3
);
8960 wxPyEndAllowThreads(__tstate
);
8961 if (PyErr_Occurred()) SWIG_fail
;
8963 resultobj
= SWIG_Py_Void();
8965 if (arg3
) delete [] arg3
;
8970 if (arg3
) delete [] arg3
;
8976 SWIGINTERN PyObject
*_wrap_StatusBar_GetFieldRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8977 PyObject
*resultobj
= 0;
8978 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8985 PyObject
* obj0
= 0 ;
8986 PyObject
* obj1
= 0 ;
8987 char * kwnames
[] = {
8988 (char *) "self",(char *) "i", NULL
8991 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_GetFieldRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8992 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8993 if (!SWIG_IsOK(res1
)) {
8994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetFieldRect" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8996 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8997 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8998 if (!SWIG_IsOK(ecode2
)) {
8999 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_GetFieldRect" "', expected argument " "2"" of type '" "int""'");
9001 arg2
= static_cast< int >(val2
);
9003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9004 result
= wxStatusBar_GetFieldRect(arg1
,arg2
);
9005 wxPyEndAllowThreads(__tstate
);
9006 if (PyErr_Occurred()) SWIG_fail
;
9008 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
9015 SWIGINTERN PyObject
*_wrap_StatusBar_SetMinHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9016 PyObject
*resultobj
= 0;
9017 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9023 PyObject
* obj0
= 0 ;
9024 PyObject
* obj1
= 0 ;
9025 char * kwnames
[] = {
9026 (char *) "self",(char *) "height", NULL
9029 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetMinHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9030 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9031 if (!SWIG_IsOK(res1
)) {
9032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetMinHeight" "', expected argument " "1"" of type '" "wxStatusBar *""'");
9034 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9035 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9036 if (!SWIG_IsOK(ecode2
)) {
9037 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_SetMinHeight" "', expected argument " "2"" of type '" "int""'");
9039 arg2
= static_cast< int >(val2
);
9041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9042 (arg1
)->SetMinHeight(arg2
);
9043 wxPyEndAllowThreads(__tstate
);
9044 if (PyErr_Occurred()) SWIG_fail
;
9046 resultobj
= SWIG_Py_Void();
9053 SWIGINTERN PyObject
*_wrap_StatusBar_GetBorderX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9054 PyObject
*resultobj
= 0;
9055 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9059 PyObject
*swig_obj
[1] ;
9061 if (!args
) SWIG_fail
;
9063 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9064 if (!SWIG_IsOK(res1
)) {
9065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetBorderX" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
9067 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9070 result
= (int)((wxStatusBar
const *)arg1
)->GetBorderX();
9071 wxPyEndAllowThreads(__tstate
);
9072 if (PyErr_Occurred()) SWIG_fail
;
9074 resultobj
= SWIG_From_int(static_cast< int >(result
));
9081 SWIGINTERN PyObject
*_wrap_StatusBar_GetBorderY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9082 PyObject
*resultobj
= 0;
9083 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9087 PyObject
*swig_obj
[1] ;
9089 if (!args
) SWIG_fail
;
9091 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9092 if (!SWIG_IsOK(res1
)) {
9093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetBorderY" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
9095 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9098 result
= (int)((wxStatusBar
const *)arg1
)->GetBorderY();
9099 wxPyEndAllowThreads(__tstate
);
9100 if (PyErr_Occurred()) SWIG_fail
;
9102 resultobj
= SWIG_From_int(static_cast< int >(result
));
9109 SWIGINTERN PyObject
*_wrap_StatusBar_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9110 PyObject
*resultobj
= 0;
9111 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
9112 SwigValueWrapper
<wxVisualAttributes
> result
;
9115 PyObject
* obj0
= 0 ;
9116 char * kwnames
[] = {
9117 (char *) "variant", NULL
9120 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StatusBar_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
9122 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
9123 if (!SWIG_IsOK(ecode1
)) {
9124 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StatusBar_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
9126 arg1
= static_cast< wxWindowVariant
>(val1
);
9129 if (!wxPyCheckForApp()) SWIG_fail
;
9130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9131 result
= wxStatusBar::GetClassDefaultAttributes(arg1
);
9132 wxPyEndAllowThreads(__tstate
);
9133 if (PyErr_Occurred()) SWIG_fail
;
9135 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
9142 SWIGINTERN PyObject
*StatusBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9144 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9145 SWIG_TypeNewClientData(SWIGTYPE_p_wxStatusBar
, SWIG_NewClientData(obj
));
9146 return SWIG_Py_Void();
9149 SWIGINTERN PyObject
*StatusBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9150 return SWIG_Python_InitShadowInstance(args
);
9153 SWIGINTERN
int SplitterNameStr_set(PyObject
*) {
9154 SWIG_Error(SWIG_AttributeError
,"Variable SplitterNameStr is read-only.");
9159 SWIGINTERN PyObject
*SplitterNameStr_get(void) {
9160 PyObject
*pyobj
= 0;
9164 pyobj
= PyUnicode_FromWideChar((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len());
9166 pyobj
= PyString_FromStringAndSize((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len());
9173 SWIGINTERN PyObject
*_wrap_new_SplitterWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9174 PyObject
*resultobj
= 0;
9175 wxWindow
*arg1
= (wxWindow
*) 0 ;
9176 int arg2
= (int) -1 ;
9177 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
9178 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
9179 wxSize
const &arg4_defvalue
= wxDefaultSize
;
9180 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
9181 long arg5
= (long) wxSP_3D
;
9182 wxString
const &arg6_defvalue
= wxPySplitterNameStr
;
9183 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
9184 wxSplitterWindow
*result
= 0 ;
9193 bool temp6
= false ;
9194 PyObject
* obj0
= 0 ;
9195 PyObject
* obj1
= 0 ;
9196 PyObject
* obj2
= 0 ;
9197 PyObject
* obj3
= 0 ;
9198 PyObject
* obj4
= 0 ;
9199 PyObject
* obj5
= 0 ;
9200 char * kwnames
[] = {
9201 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
9204 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SplitterWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
9205 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9206 if (!SWIG_IsOK(res1
)) {
9207 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplitterWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
9209 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
9211 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9212 if (!SWIG_IsOK(ecode2
)) {
9213 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SplitterWindow" "', expected argument " "2"" of type '" "int""'");
9215 arg2
= static_cast< int >(val2
);
9220 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
9226 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
9230 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
9231 if (!SWIG_IsOK(ecode5
)) {
9232 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SplitterWindow" "', expected argument " "5"" of type '" "long""'");
9234 arg5
= static_cast< long >(val5
);
9238 arg6
= wxString_in_helper(obj5
);
9239 if (arg6
== NULL
) SWIG_fail
;
9244 if (!wxPyCheckForApp()) SWIG_fail
;
9245 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9246 result
= (wxSplitterWindow
*)new wxSplitterWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
9247 wxPyEndAllowThreads(__tstate
);
9248 if (PyErr_Occurred()) SWIG_fail
;
9250 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_NEW
| 0 );
9265 SWIGINTERN PyObject
*_wrap_new_PreSplitterWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9266 PyObject
*resultobj
= 0;
9267 wxSplitterWindow
*result
= 0 ;
9269 if (!SWIG_Python_UnpackTuple(args
,"new_PreSplitterWindow",0,0,0)) SWIG_fail
;
9271 if (!wxPyCheckForApp()) SWIG_fail
;
9272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9273 result
= (wxSplitterWindow
*)new wxSplitterWindow();
9274 wxPyEndAllowThreads(__tstate
);
9275 if (PyErr_Occurred()) SWIG_fail
;
9277 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_OWN
| 0 );
9284 SWIGINTERN PyObject
*_wrap_SplitterWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9285 PyObject
*resultobj
= 0;
9286 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9287 wxWindow
*arg2
= (wxWindow
*) 0 ;
9288 int arg3
= (int) -1 ;
9289 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
9290 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
9291 wxSize
const &arg5_defvalue
= wxDefaultSize
;
9292 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
9293 long arg6
= (long) wxSP_3D
;
9294 wxString
const &arg7_defvalue
= wxPySplitterNameStr
;
9295 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
9307 bool temp7
= false ;
9308 PyObject
* obj0
= 0 ;
9309 PyObject
* obj1
= 0 ;
9310 PyObject
* obj2
= 0 ;
9311 PyObject
* obj3
= 0 ;
9312 PyObject
* obj4
= 0 ;
9313 PyObject
* obj5
= 0 ;
9314 PyObject
* obj6
= 0 ;
9315 char * kwnames
[] = {
9316 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
9319 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SplitterWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
9320 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9321 if (!SWIG_IsOK(res1
)) {
9322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Create" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9324 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9325 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9326 if (!SWIG_IsOK(res2
)) {
9327 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
9329 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9331 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9332 if (!SWIG_IsOK(ecode3
)) {
9333 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_Create" "', expected argument " "3"" of type '" "int""'");
9335 arg3
= static_cast< int >(val3
);
9340 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
9346 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
9350 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
9351 if (!SWIG_IsOK(ecode6
)) {
9352 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SplitterWindow_Create" "', expected argument " "6"" of type '" "long""'");
9354 arg6
= static_cast< long >(val6
);
9358 arg7
= wxString_in_helper(obj6
);
9359 if (arg7
== NULL
) SWIG_fail
;
9364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9365 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
9366 wxPyEndAllowThreads(__tstate
);
9367 if (PyErr_Occurred()) SWIG_fail
;
9370 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9386 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetWindow1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9387 PyObject
*resultobj
= 0;
9388 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9389 wxWindow
*result
= 0 ;
9392 PyObject
*swig_obj
[1] ;
9394 if (!args
) SWIG_fail
;
9396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9397 if (!SWIG_IsOK(res1
)) {
9398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetWindow1" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9400 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9403 result
= (wxWindow
*)((wxSplitterWindow
const *)arg1
)->GetWindow1();
9404 wxPyEndAllowThreads(__tstate
);
9405 if (PyErr_Occurred()) SWIG_fail
;
9408 resultobj
= wxPyMake_wxObject(result
, 0);
9416 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetWindow2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9417 PyObject
*resultobj
= 0;
9418 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9419 wxWindow
*result
= 0 ;
9422 PyObject
*swig_obj
[1] ;
9424 if (!args
) SWIG_fail
;
9426 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9427 if (!SWIG_IsOK(res1
)) {
9428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetWindow2" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9430 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9433 result
= (wxWindow
*)((wxSplitterWindow
const *)arg1
)->GetWindow2();
9434 wxPyEndAllowThreads(__tstate
);
9435 if (PyErr_Occurred()) SWIG_fail
;
9438 resultobj
= wxPyMake_wxObject(result
, 0);
9446 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSplitMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9447 PyObject
*resultobj
= 0;
9448 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9454 PyObject
* obj0
= 0 ;
9455 PyObject
* obj1
= 0 ;
9456 char * kwnames
[] = {
9457 (char *) "self",(char *) "mode", NULL
9460 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSplitMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9461 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9462 if (!SWIG_IsOK(res1
)) {
9463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSplitMode" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9465 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9466 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9467 if (!SWIG_IsOK(ecode2
)) {
9468 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSplitMode" "', expected argument " "2"" of type '" "int""'");
9470 arg2
= static_cast< int >(val2
);
9472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9473 (arg1
)->SetSplitMode(arg2
);
9474 wxPyEndAllowThreads(__tstate
);
9475 if (PyErr_Occurred()) SWIG_fail
;
9477 resultobj
= SWIG_Py_Void();
9484 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSplitMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9485 PyObject
*resultobj
= 0;
9486 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9490 PyObject
*swig_obj
[1] ;
9492 if (!args
) SWIG_fail
;
9494 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9495 if (!SWIG_IsOK(res1
)) {
9496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSplitMode" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9498 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9501 result
= (wxSplitMode
)((wxSplitterWindow
const *)arg1
)->GetSplitMode();
9502 wxPyEndAllowThreads(__tstate
);
9503 if (PyErr_Occurred()) SWIG_fail
;
9505 resultobj
= SWIG_From_int(static_cast< int >(result
));
9512 SWIGINTERN PyObject
*_wrap_SplitterWindow_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9513 PyObject
*resultobj
= 0;
9514 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9515 wxWindow
*arg2
= (wxWindow
*) 0 ;
9520 PyObject
* obj0
= 0 ;
9521 PyObject
* obj1
= 0 ;
9522 char * kwnames
[] = {
9523 (char *) "self",(char *) "window", NULL
9526 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_Initialize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9527 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9528 if (!SWIG_IsOK(res1
)) {
9529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Initialize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9531 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9532 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9533 if (!SWIG_IsOK(res2
)) {
9534 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Initialize" "', expected argument " "2"" of type '" "wxWindow *""'");
9536 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9539 (arg1
)->Initialize(arg2
);
9540 wxPyEndAllowThreads(__tstate
);
9541 if (PyErr_Occurred()) SWIG_fail
;
9543 resultobj
= SWIG_Py_Void();
9550 SWIGINTERN PyObject
*_wrap_SplitterWindow_SplitVertically(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9551 PyObject
*resultobj
= 0;
9552 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9553 wxWindow
*arg2
= (wxWindow
*) 0 ;
9554 wxWindow
*arg3
= (wxWindow
*) 0 ;
9555 int arg4
= (int) 0 ;
9565 PyObject
* obj0
= 0 ;
9566 PyObject
* obj1
= 0 ;
9567 PyObject
* obj2
= 0 ;
9568 PyObject
* obj3
= 0 ;
9569 char * kwnames
[] = {
9570 (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL
9573 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitVertically",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9574 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9575 if (!SWIG_IsOK(res1
)) {
9576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9578 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9579 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9580 if (!SWIG_IsOK(res2
)) {
9581 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "2"" of type '" "wxWindow *""'");
9583 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9584 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9585 if (!SWIG_IsOK(res3
)) {
9586 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "3"" of type '" "wxWindow *""'");
9588 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9590 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9591 if (!SWIG_IsOK(ecode4
)) {
9592 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "4"" of type '" "int""'");
9594 arg4
= static_cast< int >(val4
);
9597 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9598 result
= (bool)(arg1
)->SplitVertically(arg2
,arg3
,arg4
);
9599 wxPyEndAllowThreads(__tstate
);
9600 if (PyErr_Occurred()) SWIG_fail
;
9603 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9611 SWIGINTERN PyObject
*_wrap_SplitterWindow_SplitHorizontally(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9612 PyObject
*resultobj
= 0;
9613 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9614 wxWindow
*arg2
= (wxWindow
*) 0 ;
9615 wxWindow
*arg3
= (wxWindow
*) 0 ;
9616 int arg4
= (int) 0 ;
9626 PyObject
* obj0
= 0 ;
9627 PyObject
* obj1
= 0 ;
9628 PyObject
* obj2
= 0 ;
9629 PyObject
* obj3
= 0 ;
9630 char * kwnames
[] = {
9631 (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL
9634 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitHorizontally",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9635 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9636 if (!SWIG_IsOK(res1
)) {
9637 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9639 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9640 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9641 if (!SWIG_IsOK(res2
)) {
9642 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "2"" of type '" "wxWindow *""'");
9644 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9645 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9646 if (!SWIG_IsOK(res3
)) {
9647 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "3"" of type '" "wxWindow *""'");
9649 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9651 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9652 if (!SWIG_IsOK(ecode4
)) {
9653 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "4"" of type '" "int""'");
9655 arg4
= static_cast< int >(val4
);
9658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9659 result
= (bool)(arg1
)->SplitHorizontally(arg2
,arg3
,arg4
);
9660 wxPyEndAllowThreads(__tstate
);
9661 if (PyErr_Occurred()) SWIG_fail
;
9664 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9672 SWIGINTERN PyObject
*_wrap_SplitterWindow_Unsplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9673 PyObject
*resultobj
= 0;
9674 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9675 wxWindow
*arg2
= (wxWindow
*) NULL
;
9681 PyObject
* obj0
= 0 ;
9682 PyObject
* obj1
= 0 ;
9683 char * kwnames
[] = {
9684 (char *) "self",(char *) "toRemove", NULL
9687 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:SplitterWindow_Unsplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9688 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9689 if (!SWIG_IsOK(res1
)) {
9690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Unsplit" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9692 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9694 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9695 if (!SWIG_IsOK(res2
)) {
9696 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Unsplit" "', expected argument " "2"" of type '" "wxWindow *""'");
9698 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9701 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9702 result
= (bool)(arg1
)->Unsplit(arg2
);
9703 wxPyEndAllowThreads(__tstate
);
9704 if (PyErr_Occurred()) SWIG_fail
;
9707 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9715 SWIGINTERN PyObject
*_wrap_SplitterWindow_ReplaceWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9716 PyObject
*resultobj
= 0;
9717 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9718 wxWindow
*arg2
= (wxWindow
*) 0 ;
9719 wxWindow
*arg3
= (wxWindow
*) 0 ;
9727 PyObject
* obj0
= 0 ;
9728 PyObject
* obj1
= 0 ;
9729 PyObject
* obj2
= 0 ;
9730 char * kwnames
[] = {
9731 (char *) "self",(char *) "winOld",(char *) "winNew", NULL
9734 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SplitterWindow_ReplaceWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9735 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9736 if (!SWIG_IsOK(res1
)) {
9737 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9739 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9740 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9741 if (!SWIG_IsOK(res2
)) {
9742 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
9744 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9745 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9746 if (!SWIG_IsOK(res3
)) {
9747 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "3"" of type '" "wxWindow *""'");
9749 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9752 result
= (bool)(arg1
)->ReplaceWindow(arg2
,arg3
);
9753 wxPyEndAllowThreads(__tstate
);
9754 if (PyErr_Occurred()) SWIG_fail
;
9757 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9765 SWIGINTERN PyObject
*_wrap_SplitterWindow_UpdateSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9766 PyObject
*resultobj
= 0;
9767 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9770 PyObject
*swig_obj
[1] ;
9772 if (!args
) SWIG_fail
;
9774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9775 if (!SWIG_IsOK(res1
)) {
9776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_UpdateSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9778 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9781 (arg1
)->UpdateSize();
9782 wxPyEndAllowThreads(__tstate
);
9783 if (PyErr_Occurred()) SWIG_fail
;
9785 resultobj
= SWIG_Py_Void();
9792 SWIGINTERN PyObject
*_wrap_SplitterWindow_IsSplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9793 PyObject
*resultobj
= 0;
9794 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9798 PyObject
*swig_obj
[1] ;
9800 if (!args
) SWIG_fail
;
9802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9803 if (!SWIG_IsOK(res1
)) {
9804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_IsSplit" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9806 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9809 result
= (bool)((wxSplitterWindow
const *)arg1
)->IsSplit();
9810 wxPyEndAllowThreads(__tstate
);
9811 if (PyErr_Occurred()) SWIG_fail
;
9814 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9822 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9823 PyObject
*resultobj
= 0;
9824 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9830 PyObject
* obj0
= 0 ;
9831 PyObject
* obj1
= 0 ;
9832 char * kwnames
[] = {
9833 (char *) "self",(char *) "width", NULL
9836 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9837 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9838 if (!SWIG_IsOK(res1
)) {
9839 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9841 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9842 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9843 if (!SWIG_IsOK(ecode2
)) {
9844 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashSize" "', expected argument " "2"" of type '" "int""'");
9846 arg2
= static_cast< int >(val2
);
9848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9849 (arg1
)->SetSashSize(arg2
);
9850 wxPyEndAllowThreads(__tstate
);
9851 if (PyErr_Occurred()) SWIG_fail
;
9853 resultobj
= SWIG_Py_Void();
9860 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9861 PyObject
*resultobj
= 0;
9862 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9868 PyObject
* obj0
= 0 ;
9869 PyObject
* obj1
= 0 ;
9870 char * kwnames
[] = {
9871 (char *) "self",(char *) "width", NULL
9874 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9875 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9876 if (!SWIG_IsOK(res1
)) {
9877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetBorderSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9879 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9880 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9881 if (!SWIG_IsOK(ecode2
)) {
9882 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetBorderSize" "', expected argument " "2"" of type '" "int""'");
9884 arg2
= static_cast< int >(val2
);
9886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9887 (arg1
)->SetBorderSize(arg2
);
9888 wxPyEndAllowThreads(__tstate
);
9889 if (PyErr_Occurred()) SWIG_fail
;
9891 resultobj
= SWIG_Py_Void();
9898 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9899 PyObject
*resultobj
= 0;
9900 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9904 PyObject
*swig_obj
[1] ;
9906 if (!args
) SWIG_fail
;
9908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9909 if (!SWIG_IsOK(res1
)) {
9910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9912 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9915 result
= (int)((wxSplitterWindow
const *)arg1
)->GetSashSize();
9916 wxPyEndAllowThreads(__tstate
);
9917 if (PyErr_Occurred()) SWIG_fail
;
9919 resultobj
= SWIG_From_int(static_cast< int >(result
));
9926 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9927 PyObject
*resultobj
= 0;
9928 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9932 PyObject
*swig_obj
[1] ;
9934 if (!args
) SWIG_fail
;
9936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9937 if (!SWIG_IsOK(res1
)) {
9938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetBorderSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9940 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9943 result
= (int)((wxSplitterWindow
const *)arg1
)->GetBorderSize();
9944 wxPyEndAllowThreads(__tstate
);
9945 if (PyErr_Occurred()) SWIG_fail
;
9947 resultobj
= SWIG_From_int(static_cast< int >(result
));
9954 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9955 PyObject
*resultobj
= 0;
9956 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9958 bool arg3
= (bool) true ;
9965 PyObject
* obj0
= 0 ;
9966 PyObject
* obj1
= 0 ;
9967 PyObject
* obj2
= 0 ;
9968 char * kwnames
[] = {
9969 (char *) "self",(char *) "position",(char *) "redraw", NULL
9972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:SplitterWindow_SetSashPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9974 if (!SWIG_IsOK(res1
)) {
9975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9977 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9978 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9979 if (!SWIG_IsOK(ecode2
)) {
9980 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "2"" of type '" "int""'");
9982 arg2
= static_cast< int >(val2
);
9984 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
9985 if (!SWIG_IsOK(ecode3
)) {
9986 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "3"" of type '" "bool""'");
9988 arg3
= static_cast< bool >(val3
);
9991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9992 (arg1
)->SetSashPosition(arg2
,arg3
);
9993 wxPyEndAllowThreads(__tstate
);
9994 if (PyErr_Occurred()) SWIG_fail
;
9996 resultobj
= SWIG_Py_Void();
10003 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10004 PyObject
*resultobj
= 0;
10005 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10009 PyObject
*swig_obj
[1] ;
10011 if (!args
) SWIG_fail
;
10012 swig_obj
[0] = args
;
10013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10014 if (!SWIG_IsOK(res1
)) {
10015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashPosition" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10017 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10020 result
= (int)((wxSplitterWindow
const *)arg1
)->GetSashPosition();
10021 wxPyEndAllowThreads(__tstate
);
10022 if (PyErr_Occurred()) SWIG_fail
;
10024 resultobj
= SWIG_From_int(static_cast< int >(result
));
10031 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashGravity(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10032 PyObject
*resultobj
= 0;
10033 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10039 PyObject
* obj0
= 0 ;
10040 PyObject
* obj1
= 0 ;
10041 char * kwnames
[] = {
10042 (char *) "self",(char *) "gravity", NULL
10045 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashGravity",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10046 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10047 if (!SWIG_IsOK(res1
)) {
10048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashGravity" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10050 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10051 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
10052 if (!SWIG_IsOK(ecode2
)) {
10053 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashGravity" "', expected argument " "2"" of type '" "double""'");
10055 arg2
= static_cast< double >(val2
);
10057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10058 (arg1
)->SetSashGravity(arg2
);
10059 wxPyEndAllowThreads(__tstate
);
10060 if (PyErr_Occurred()) SWIG_fail
;
10062 resultobj
= SWIG_Py_Void();
10069 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashGravity(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10070 PyObject
*resultobj
= 0;
10071 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10075 PyObject
*swig_obj
[1] ;
10077 if (!args
) SWIG_fail
;
10078 swig_obj
[0] = args
;
10079 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10080 if (!SWIG_IsOK(res1
)) {
10081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashGravity" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10083 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10086 result
= (double)((wxSplitterWindow
const *)arg1
)->GetSashGravity();
10087 wxPyEndAllowThreads(__tstate
);
10088 if (PyErr_Occurred()) SWIG_fail
;
10090 resultobj
= SWIG_From_double(static_cast< double >(result
));
10097 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetMinimumPaneSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10098 PyObject
*resultobj
= 0;
10099 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10105 PyObject
* obj0
= 0 ;
10106 PyObject
* obj1
= 0 ;
10107 char * kwnames
[] = {
10108 (char *) "self",(char *) "min", NULL
10111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetMinimumPaneSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10113 if (!SWIG_IsOK(res1
)) {
10114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetMinimumPaneSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10116 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10117 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10118 if (!SWIG_IsOK(ecode2
)) {
10119 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetMinimumPaneSize" "', expected argument " "2"" of type '" "int""'");
10121 arg2
= static_cast< int >(val2
);
10123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10124 (arg1
)->SetMinimumPaneSize(arg2
);
10125 wxPyEndAllowThreads(__tstate
);
10126 if (PyErr_Occurred()) SWIG_fail
;
10128 resultobj
= SWIG_Py_Void();
10135 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetMinimumPaneSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10136 PyObject
*resultobj
= 0;
10137 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10141 PyObject
*swig_obj
[1] ;
10143 if (!args
) SWIG_fail
;
10144 swig_obj
[0] = args
;
10145 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10146 if (!SWIG_IsOK(res1
)) {
10147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetMinimumPaneSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10149 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10152 result
= (int)((wxSplitterWindow
const *)arg1
)->GetMinimumPaneSize();
10153 wxPyEndAllowThreads(__tstate
);
10154 if (PyErr_Occurred()) SWIG_fail
;
10156 resultobj
= SWIG_From_int(static_cast< int >(result
));
10163 SWIGINTERN PyObject
*_wrap_SplitterWindow_SashHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10164 PyObject
*resultobj
= 0;
10165 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10168 int arg4
= (int) 5 ;
10178 PyObject
* obj0
= 0 ;
10179 PyObject
* obj1
= 0 ;
10180 PyObject
* obj2
= 0 ;
10181 PyObject
* obj3
= 0 ;
10182 char * kwnames
[] = {
10183 (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL
10186 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10187 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10188 if (!SWIG_IsOK(res1
)) {
10189 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10191 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10192 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10193 if (!SWIG_IsOK(ecode2
)) {
10194 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "2"" of type '" "int""'");
10196 arg2
= static_cast< int >(val2
);
10197 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10198 if (!SWIG_IsOK(ecode3
)) {
10199 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "3"" of type '" "int""'");
10201 arg3
= static_cast< int >(val3
);
10203 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10204 if (!SWIG_IsOK(ecode4
)) {
10205 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "4"" of type '" "int""'");
10207 arg4
= static_cast< int >(val4
);
10210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10211 result
= (bool)(arg1
)->SashHitTest(arg2
,arg3
,arg4
);
10212 wxPyEndAllowThreads(__tstate
);
10213 if (PyErr_Occurred()) SWIG_fail
;
10216 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10224 SWIGINTERN PyObject
*_wrap_SplitterWindow_SizeWindows(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10225 PyObject
*resultobj
= 0;
10226 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10229 PyObject
*swig_obj
[1] ;
10231 if (!args
) SWIG_fail
;
10232 swig_obj
[0] = args
;
10233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10234 if (!SWIG_IsOK(res1
)) {
10235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SizeWindows" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10237 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10240 (arg1
)->SizeWindows();
10241 wxPyEndAllowThreads(__tstate
);
10242 if (PyErr_Occurred()) SWIG_fail
;
10244 resultobj
= SWIG_Py_Void();
10251 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetNeedUpdating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10252 PyObject
*resultobj
= 0;
10253 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10259 PyObject
* obj0
= 0 ;
10260 PyObject
* obj1
= 0 ;
10261 char * kwnames
[] = {
10262 (char *) "self",(char *) "needUpdating", NULL
10265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetNeedUpdating",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10267 if (!SWIG_IsOK(res1
)) {
10268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetNeedUpdating" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10270 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10271 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
10272 if (!SWIG_IsOK(ecode2
)) {
10273 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetNeedUpdating" "', expected argument " "2"" of type '" "bool""'");
10275 arg2
= static_cast< bool >(val2
);
10277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10278 (arg1
)->SetNeedUpdating(arg2
);
10279 wxPyEndAllowThreads(__tstate
);
10280 if (PyErr_Occurred()) SWIG_fail
;
10282 resultobj
= SWIG_Py_Void();
10289 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetNeedUpdating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10290 PyObject
*resultobj
= 0;
10291 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10295 PyObject
*swig_obj
[1] ;
10297 if (!args
) SWIG_fail
;
10298 swig_obj
[0] = args
;
10299 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10300 if (!SWIG_IsOK(res1
)) {
10301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetNeedUpdating" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10303 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10306 result
= (bool)((wxSplitterWindow
const *)arg1
)->GetNeedUpdating();
10307 wxPyEndAllowThreads(__tstate
);
10308 if (PyErr_Occurred()) SWIG_fail
;
10311 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10319 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10320 PyObject
*resultobj
= 0;
10321 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
10322 SwigValueWrapper
<wxVisualAttributes
> result
;
10325 PyObject
* obj0
= 0 ;
10326 char * kwnames
[] = {
10327 (char *) "variant", NULL
10330 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SplitterWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
10332 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10333 if (!SWIG_IsOK(ecode1
)) {
10334 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SplitterWindow_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
10336 arg1
= static_cast< wxWindowVariant
>(val1
);
10339 if (!wxPyCheckForApp()) SWIG_fail
;
10340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10341 result
= wxSplitterWindow::GetClassDefaultAttributes(arg1
);
10342 wxPyEndAllowThreads(__tstate
);
10343 if (PyErr_Occurred()) SWIG_fail
;
10345 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
10352 SWIGINTERN PyObject
*SplitterWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10354 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10355 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplitterWindow
, SWIG_NewClientData(obj
));
10356 return SWIG_Py_Void();
10359 SWIGINTERN PyObject
*SplitterWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10360 return SWIG_Python_InitShadowInstance(args
);
10363 SWIGINTERN PyObject
*_wrap_new_SplitterEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10364 PyObject
*resultobj
= 0;
10365 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
10366 wxSplitterWindow
*arg2
= (wxSplitterWindow
*) (wxSplitterWindow
*) NULL
;
10367 wxSplitterEvent
*result
= 0 ;
10372 PyObject
* obj0
= 0 ;
10373 PyObject
* obj1
= 0 ;
10374 char * kwnames
[] = {
10375 (char *) "type",(char *) "splitter", NULL
10378 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SplitterEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10380 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10381 if (!SWIG_IsOK(ecode1
)) {
10382 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_SplitterEvent" "', expected argument " "1"" of type '" "wxEventType""'");
10384 arg1
= static_cast< wxEventType
>(val1
);
10387 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10388 if (!SWIG_IsOK(res2
)) {
10389 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_SplitterEvent" "', expected argument " "2"" of type '" "wxSplitterWindow *""'");
10391 arg2
= reinterpret_cast< wxSplitterWindow
* >(argp2
);
10394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10395 result
= (wxSplitterEvent
*)new wxSplitterEvent(arg1
,arg2
);
10396 wxPyEndAllowThreads(__tstate
);
10397 if (PyErr_Occurred()) SWIG_fail
;
10399 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_NEW
| 0 );
10406 SWIGINTERN PyObject
*_wrap_SplitterEvent_SetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10407 PyObject
*resultobj
= 0;
10408 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10414 PyObject
* obj0
= 0 ;
10415 PyObject
* obj1
= 0 ;
10416 char * kwnames
[] = {
10417 (char *) "self",(char *) "pos", NULL
10420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterEvent_SetSashPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10422 if (!SWIG_IsOK(res1
)) {
10423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_SetSashPosition" "', expected argument " "1"" of type '" "wxSplitterEvent *""'");
10425 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10426 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10427 if (!SWIG_IsOK(ecode2
)) {
10428 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterEvent_SetSashPosition" "', expected argument " "2"" of type '" "int""'");
10430 arg2
= static_cast< int >(val2
);
10432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10433 (arg1
)->SetSashPosition(arg2
);
10434 wxPyEndAllowThreads(__tstate
);
10435 if (PyErr_Occurred()) SWIG_fail
;
10437 resultobj
= SWIG_Py_Void();
10444 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10445 PyObject
*resultobj
= 0;
10446 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10450 PyObject
*swig_obj
[1] ;
10452 if (!args
) SWIG_fail
;
10453 swig_obj
[0] = args
;
10454 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10455 if (!SWIG_IsOK(res1
)) {
10456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetSashPosition" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10458 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10461 result
= (int)((wxSplitterEvent
const *)arg1
)->GetSashPosition();
10462 wxPyEndAllowThreads(__tstate
);
10463 if (PyErr_Occurred()) SWIG_fail
;
10465 resultobj
= SWIG_From_int(static_cast< int >(result
));
10472 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetWindowBeingRemoved(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10473 PyObject
*resultobj
= 0;
10474 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10475 wxWindow
*result
= 0 ;
10478 PyObject
*swig_obj
[1] ;
10480 if (!args
) SWIG_fail
;
10481 swig_obj
[0] = args
;
10482 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10483 if (!SWIG_IsOK(res1
)) {
10484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetWindowBeingRemoved" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10486 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10489 result
= (wxWindow
*)((wxSplitterEvent
const *)arg1
)->GetWindowBeingRemoved();
10490 wxPyEndAllowThreads(__tstate
);
10491 if (PyErr_Occurred()) SWIG_fail
;
10494 resultobj
= wxPyMake_wxObject(result
, 0);
10502 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10503 PyObject
*resultobj
= 0;
10504 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10508 PyObject
*swig_obj
[1] ;
10510 if (!args
) SWIG_fail
;
10511 swig_obj
[0] = args
;
10512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10513 if (!SWIG_IsOK(res1
)) {
10514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetX" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10516 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10519 result
= (int)((wxSplitterEvent
const *)arg1
)->GetX();
10520 wxPyEndAllowThreads(__tstate
);
10521 if (PyErr_Occurred()) SWIG_fail
;
10523 resultobj
= SWIG_From_int(static_cast< int >(result
));
10530 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10531 PyObject
*resultobj
= 0;
10532 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10536 PyObject
*swig_obj
[1] ;
10538 if (!args
) SWIG_fail
;
10539 swig_obj
[0] = args
;
10540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10541 if (!SWIG_IsOK(res1
)) {
10542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetY" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10544 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10547 result
= (int)((wxSplitterEvent
const *)arg1
)->GetY();
10548 wxPyEndAllowThreads(__tstate
);
10549 if (PyErr_Occurred()) SWIG_fail
;
10551 resultobj
= SWIG_From_int(static_cast< int >(result
));
10558 SWIGINTERN PyObject
*SplitterEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10560 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10561 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplitterEvent
, SWIG_NewClientData(obj
));
10562 return SWIG_Py_Void();
10565 SWIGINTERN PyObject
*SplitterEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10566 return SWIG_Python_InitShadowInstance(args
);
10569 SWIGINTERN
int SashNameStr_set(PyObject
*) {
10570 SWIG_Error(SWIG_AttributeError
,"Variable SashNameStr is read-only.");
10575 SWIGINTERN PyObject
*SashNameStr_get(void) {
10576 PyObject
*pyobj
= 0;
10580 pyobj
= PyUnicode_FromWideChar((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len());
10582 pyobj
= PyString_FromStringAndSize((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len());
10589 SWIGINTERN
int SashLayoutNameStr_set(PyObject
*) {
10590 SWIG_Error(SWIG_AttributeError
,"Variable SashLayoutNameStr is read-only.");
10595 SWIGINTERN PyObject
*SashLayoutNameStr_get(void) {
10596 PyObject
*pyobj
= 0;
10600 pyobj
= PyUnicode_FromWideChar((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len());
10602 pyobj
= PyString_FromStringAndSize((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len());
10609 SWIGINTERN PyObject
*_wrap_new_SashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10610 PyObject
*resultobj
= 0;
10611 wxWindow
*arg1
= (wxWindow
*) 0 ;
10612 int arg2
= (int) -1 ;
10613 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
10614 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
10615 wxSize
const &arg4_defvalue
= wxDefaultSize
;
10616 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
10617 long arg5
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
10618 wxString
const &arg6_defvalue
= wxPySashNameStr
;
10619 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
10620 wxSashWindow
*result
= 0 ;
10629 bool temp6
= false ;
10630 PyObject
* obj0
= 0 ;
10631 PyObject
* obj1
= 0 ;
10632 PyObject
* obj2
= 0 ;
10633 PyObject
* obj3
= 0 ;
10634 PyObject
* obj4
= 0 ;
10635 PyObject
* obj5
= 0 ;
10636 char * kwnames
[] = {
10637 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10640 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
10641 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10642 if (!SWIG_IsOK(res1
)) {
10643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SashWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
10645 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10647 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10648 if (!SWIG_IsOK(ecode2
)) {
10649 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashWindow" "', expected argument " "2"" of type '" "int""'");
10651 arg2
= static_cast< int >(val2
);
10656 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
10662 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
10666 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
10667 if (!SWIG_IsOK(ecode5
)) {
10668 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SashWindow" "', expected argument " "5"" of type '" "long""'");
10670 arg5
= static_cast< long >(val5
);
10674 arg6
= wxString_in_helper(obj5
);
10675 if (arg6
== NULL
) SWIG_fail
;
10680 if (!wxPyCheckForApp()) SWIG_fail
;
10681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10682 result
= (wxSashWindow
*)new wxSashWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
10683 wxPyEndAllowThreads(__tstate
);
10684 if (PyErr_Occurred()) SWIG_fail
;
10686 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_NEW
| 0 );
10701 SWIGINTERN PyObject
*_wrap_new_PreSashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10702 PyObject
*resultobj
= 0;
10703 wxSashWindow
*result
= 0 ;
10705 if (!SWIG_Python_UnpackTuple(args
,"new_PreSashWindow",0,0,0)) SWIG_fail
;
10707 if (!wxPyCheckForApp()) SWIG_fail
;
10708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10709 result
= (wxSashWindow
*)new wxSashWindow();
10710 wxPyEndAllowThreads(__tstate
);
10711 if (PyErr_Occurred()) SWIG_fail
;
10713 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_OWN
| 0 );
10720 SWIGINTERN PyObject
*_wrap_SashWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10721 PyObject
*resultobj
= 0;
10722 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10723 wxWindow
*arg2
= (wxWindow
*) 0 ;
10724 int arg3
= (int) -1 ;
10725 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
10726 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
10727 wxSize
const &arg5_defvalue
= wxDefaultSize
;
10728 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
10729 long arg6
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
10730 wxString
const &arg7_defvalue
= wxPySashNameStr
;
10731 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
10743 bool temp7
= false ;
10744 PyObject
* obj0
= 0 ;
10745 PyObject
* obj1
= 0 ;
10746 PyObject
* obj2
= 0 ;
10747 PyObject
* obj3
= 0 ;
10748 PyObject
* obj4
= 0 ;
10749 PyObject
* obj5
= 0 ;
10750 PyObject
* obj6
= 0 ;
10751 char * kwnames
[] = {
10752 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10755 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
10756 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10757 if (!SWIG_IsOK(res1
)) {
10758 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_Create" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10760 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10761 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10762 if (!SWIG_IsOK(res2
)) {
10763 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SashWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
10765 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
10767 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10768 if (!SWIG_IsOK(ecode3
)) {
10769 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_Create" "', expected argument " "3"" of type '" "int""'");
10771 arg3
= static_cast< int >(val3
);
10776 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
10782 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
10786 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
10787 if (!SWIG_IsOK(ecode6
)) {
10788 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SashWindow_Create" "', expected argument " "6"" of type '" "long""'");
10790 arg6
= static_cast< long >(val6
);
10794 arg7
= wxString_in_helper(obj6
);
10795 if (arg7
== NULL
) SWIG_fail
;
10800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10801 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
10802 wxPyEndAllowThreads(__tstate
);
10803 if (PyErr_Occurred()) SWIG_fail
;
10806 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10822 SWIGINTERN PyObject
*_wrap_SashWindow_SetSashVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10823 PyObject
*resultobj
= 0;
10824 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10825 wxSashEdgePosition arg2
;
10833 PyObject
* obj0
= 0 ;
10834 PyObject
* obj1
= 0 ;
10835 PyObject
* obj2
= 0 ;
10836 char * kwnames
[] = {
10837 (char *) "self",(char *) "edge",(char *) "sash", NULL
10840 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10842 if (!SWIG_IsOK(res1
)) {
10843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10845 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10846 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10847 if (!SWIG_IsOK(ecode2
)) {
10848 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10850 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10851 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10852 if (!SWIG_IsOK(ecode3
)) {
10853 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "3"" of type '" "bool""'");
10855 arg3
= static_cast< bool >(val3
);
10857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10858 (arg1
)->SetSashVisible(arg2
,arg3
);
10859 wxPyEndAllowThreads(__tstate
);
10860 if (PyErr_Occurred()) SWIG_fail
;
10862 resultobj
= SWIG_Py_Void();
10869 SWIGINTERN PyObject
*_wrap_SashWindow_GetSashVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10870 PyObject
*resultobj
= 0;
10871 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10872 wxSashEdgePosition arg2
;
10878 PyObject
* obj0
= 0 ;
10879 PyObject
* obj1
= 0 ;
10880 char * kwnames
[] = {
10881 (char *) "self",(char *) "edge", NULL
10884 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetSashVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10885 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10886 if (!SWIG_IsOK(res1
)) {
10887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetSashVisible" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
10889 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10890 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10891 if (!SWIG_IsOK(ecode2
)) {
10892 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_GetSashVisible" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10894 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10897 result
= (bool)((wxSashWindow
const *)arg1
)->GetSashVisible(arg2
);
10898 wxPyEndAllowThreads(__tstate
);
10899 if (PyErr_Occurred()) SWIG_fail
;
10902 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10910 SWIGINTERN PyObject
*_wrap_SashWindow_SetSashBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10911 PyObject
*resultobj
= 0;
10912 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10913 wxSashEdgePosition arg2
;
10921 PyObject
* obj0
= 0 ;
10922 PyObject
* obj1
= 0 ;
10923 PyObject
* obj2
= 0 ;
10924 char * kwnames
[] = {
10925 (char *) "self",(char *) "edge",(char *) "border", NULL
10928 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashBorder",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10929 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10930 if (!SWIG_IsOK(res1
)) {
10931 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10933 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10934 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10935 if (!SWIG_IsOK(ecode2
)) {
10936 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10938 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10939 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10940 if (!SWIG_IsOK(ecode3
)) {
10941 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "3"" of type '" "bool""'");
10943 arg3
= static_cast< bool >(val3
);
10945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10946 (arg1
)->SetSashBorder(arg2
,arg3
);
10947 wxPyEndAllowThreads(__tstate
);
10948 if (PyErr_Occurred()) SWIG_fail
;
10950 resultobj
= SWIG_Py_Void();
10957 SWIGINTERN PyObject
*_wrap_SashWindow_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10958 PyObject
*resultobj
= 0;
10959 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10960 wxSashEdgePosition arg2
;
10966 PyObject
* obj0
= 0 ;
10967 PyObject
* obj1
= 0 ;
10968 char * kwnames
[] = {
10969 (char *) "self",(char *) "edge", NULL
10972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_HasBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10974 if (!SWIG_IsOK(res1
)) {
10975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_HasBorder" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
10977 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10978 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10979 if (!SWIG_IsOK(ecode2
)) {
10980 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_HasBorder" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10982 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10985 result
= (bool)((wxSashWindow
const *)arg1
)->HasBorder(arg2
);
10986 wxPyEndAllowThreads(__tstate
);
10987 if (PyErr_Occurred()) SWIG_fail
;
10990 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10998 SWIGINTERN PyObject
*_wrap_SashWindow_GetEdgeMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10999 PyObject
*resultobj
= 0;
11000 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11001 wxSashEdgePosition arg2
;
11007 PyObject
* obj0
= 0 ;
11008 PyObject
* obj1
= 0 ;
11009 char * kwnames
[] = {
11010 (char *) "self",(char *) "edge", NULL
11013 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetEdgeMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11014 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11015 if (!SWIG_IsOK(res1
)) {
11016 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetEdgeMargin" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11018 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11019 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11020 if (!SWIG_IsOK(ecode2
)) {
11021 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_GetEdgeMargin" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11023 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11025 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11026 result
= (int)((wxSashWindow
const *)arg1
)->GetEdgeMargin(arg2
);
11027 wxPyEndAllowThreads(__tstate
);
11028 if (PyErr_Occurred()) SWIG_fail
;
11030 resultobj
= SWIG_From_int(static_cast< int >(result
));
11037 SWIGINTERN PyObject
*_wrap_SashWindow_SetDefaultBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11038 PyObject
*resultobj
= 0;
11039 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11045 PyObject
* obj0
= 0 ;
11046 PyObject
* obj1
= 0 ;
11047 char * kwnames
[] = {
11048 (char *) "self",(char *) "width", NULL
11051 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetDefaultBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11052 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11053 if (!SWIG_IsOK(res1
)) {
11054 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetDefaultBorderSize" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11056 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11057 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11058 if (!SWIG_IsOK(ecode2
)) {
11059 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetDefaultBorderSize" "', expected argument " "2"" of type '" "int""'");
11061 arg2
= static_cast< int >(val2
);
11063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11064 (arg1
)->SetDefaultBorderSize(arg2
);
11065 wxPyEndAllowThreads(__tstate
);
11066 if (PyErr_Occurred()) SWIG_fail
;
11068 resultobj
= SWIG_Py_Void();
11075 SWIGINTERN PyObject
*_wrap_SashWindow_GetDefaultBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11076 PyObject
*resultobj
= 0;
11077 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11081 PyObject
*swig_obj
[1] ;
11083 if (!args
) SWIG_fail
;
11084 swig_obj
[0] = args
;
11085 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11086 if (!SWIG_IsOK(res1
)) {
11087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetDefaultBorderSize" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11089 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11092 result
= (int)((wxSashWindow
const *)arg1
)->GetDefaultBorderSize();
11093 wxPyEndAllowThreads(__tstate
);
11094 if (PyErr_Occurred()) SWIG_fail
;
11096 resultobj
= SWIG_From_int(static_cast< int >(result
));
11103 SWIGINTERN PyObject
*_wrap_SashWindow_SetExtraBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11104 PyObject
*resultobj
= 0;
11105 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11111 PyObject
* obj0
= 0 ;
11112 PyObject
* obj1
= 0 ;
11113 char * kwnames
[] = {
11114 (char *) "self",(char *) "width", NULL
11117 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetExtraBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11118 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11119 if (!SWIG_IsOK(res1
)) {
11120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetExtraBorderSize" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11122 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11123 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11124 if (!SWIG_IsOK(ecode2
)) {
11125 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetExtraBorderSize" "', expected argument " "2"" of type '" "int""'");
11127 arg2
= static_cast< int >(val2
);
11129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11130 (arg1
)->SetExtraBorderSize(arg2
);
11131 wxPyEndAllowThreads(__tstate
);
11132 if (PyErr_Occurred()) SWIG_fail
;
11134 resultobj
= SWIG_Py_Void();
11141 SWIGINTERN PyObject
*_wrap_SashWindow_GetExtraBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11142 PyObject
*resultobj
= 0;
11143 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11147 PyObject
*swig_obj
[1] ;
11149 if (!args
) SWIG_fail
;
11150 swig_obj
[0] = args
;
11151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11152 if (!SWIG_IsOK(res1
)) {
11153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetExtraBorderSize" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11155 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11158 result
= (int)((wxSashWindow
const *)arg1
)->GetExtraBorderSize();
11159 wxPyEndAllowThreads(__tstate
);
11160 if (PyErr_Occurred()) SWIG_fail
;
11162 resultobj
= SWIG_From_int(static_cast< int >(result
));
11169 SWIGINTERN PyObject
*_wrap_SashWindow_SetMinimumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11170 PyObject
*resultobj
= 0;
11171 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11177 PyObject
* obj0
= 0 ;
11178 PyObject
* obj1
= 0 ;
11179 char * kwnames
[] = {
11180 (char *) "self",(char *) "min", NULL
11183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11185 if (!SWIG_IsOK(res1
)) {
11186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMinimumSizeX" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11188 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11190 if (!SWIG_IsOK(ecode2
)) {
11191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMinimumSizeX" "', expected argument " "2"" of type '" "int""'");
11193 arg2
= static_cast< int >(val2
);
11195 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11196 (arg1
)->SetMinimumSizeX(arg2
);
11197 wxPyEndAllowThreads(__tstate
);
11198 if (PyErr_Occurred()) SWIG_fail
;
11200 resultobj
= SWIG_Py_Void();
11207 SWIGINTERN PyObject
*_wrap_SashWindow_SetMinimumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11208 PyObject
*resultobj
= 0;
11209 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11215 PyObject
* obj0
= 0 ;
11216 PyObject
* obj1
= 0 ;
11217 char * kwnames
[] = {
11218 (char *) "self",(char *) "min", NULL
11221 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11222 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11223 if (!SWIG_IsOK(res1
)) {
11224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMinimumSizeY" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11226 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11227 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11228 if (!SWIG_IsOK(ecode2
)) {
11229 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMinimumSizeY" "', expected argument " "2"" of type '" "int""'");
11231 arg2
= static_cast< int >(val2
);
11233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11234 (arg1
)->SetMinimumSizeY(arg2
);
11235 wxPyEndAllowThreads(__tstate
);
11236 if (PyErr_Occurred()) SWIG_fail
;
11238 resultobj
= SWIG_Py_Void();
11245 SWIGINTERN PyObject
*_wrap_SashWindow_GetMinimumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11246 PyObject
*resultobj
= 0;
11247 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11251 PyObject
*swig_obj
[1] ;
11253 if (!args
) SWIG_fail
;
11254 swig_obj
[0] = args
;
11255 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11256 if (!SWIG_IsOK(res1
)) {
11257 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMinimumSizeX" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11259 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11262 result
= (int)((wxSashWindow
const *)arg1
)->GetMinimumSizeX();
11263 wxPyEndAllowThreads(__tstate
);
11264 if (PyErr_Occurred()) SWIG_fail
;
11266 resultobj
= SWIG_From_int(static_cast< int >(result
));
11273 SWIGINTERN PyObject
*_wrap_SashWindow_GetMinimumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11274 PyObject
*resultobj
= 0;
11275 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11279 PyObject
*swig_obj
[1] ;
11281 if (!args
) SWIG_fail
;
11282 swig_obj
[0] = args
;
11283 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11284 if (!SWIG_IsOK(res1
)) {
11285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMinimumSizeY" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11287 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11289 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11290 result
= (int)((wxSashWindow
const *)arg1
)->GetMinimumSizeY();
11291 wxPyEndAllowThreads(__tstate
);
11292 if (PyErr_Occurred()) SWIG_fail
;
11294 resultobj
= SWIG_From_int(static_cast< int >(result
));
11301 SWIGINTERN PyObject
*_wrap_SashWindow_SetMaximumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11302 PyObject
*resultobj
= 0;
11303 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11309 PyObject
* obj0
= 0 ;
11310 PyObject
* obj1
= 0 ;
11311 char * kwnames
[] = {
11312 (char *) "self",(char *) "max", NULL
11315 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11316 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11317 if (!SWIG_IsOK(res1
)) {
11318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMaximumSizeX" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11320 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11321 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11322 if (!SWIG_IsOK(ecode2
)) {
11323 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMaximumSizeX" "', expected argument " "2"" of type '" "int""'");
11325 arg2
= static_cast< int >(val2
);
11327 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11328 (arg1
)->SetMaximumSizeX(arg2
);
11329 wxPyEndAllowThreads(__tstate
);
11330 if (PyErr_Occurred()) SWIG_fail
;
11332 resultobj
= SWIG_Py_Void();
11339 SWIGINTERN PyObject
*_wrap_SashWindow_SetMaximumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11340 PyObject
*resultobj
= 0;
11341 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11347 PyObject
* obj0
= 0 ;
11348 PyObject
* obj1
= 0 ;
11349 char * kwnames
[] = {
11350 (char *) "self",(char *) "max", NULL
11353 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11354 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11355 if (!SWIG_IsOK(res1
)) {
11356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMaximumSizeY" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11358 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11359 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11360 if (!SWIG_IsOK(ecode2
)) {
11361 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMaximumSizeY" "', expected argument " "2"" of type '" "int""'");
11363 arg2
= static_cast< int >(val2
);
11365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11366 (arg1
)->SetMaximumSizeY(arg2
);
11367 wxPyEndAllowThreads(__tstate
);
11368 if (PyErr_Occurred()) SWIG_fail
;
11370 resultobj
= SWIG_Py_Void();
11377 SWIGINTERN PyObject
*_wrap_SashWindow_GetMaximumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11378 PyObject
*resultobj
= 0;
11379 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11383 PyObject
*swig_obj
[1] ;
11385 if (!args
) SWIG_fail
;
11386 swig_obj
[0] = args
;
11387 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11388 if (!SWIG_IsOK(res1
)) {
11389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMaximumSizeX" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11391 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11394 result
= (int)((wxSashWindow
const *)arg1
)->GetMaximumSizeX();
11395 wxPyEndAllowThreads(__tstate
);
11396 if (PyErr_Occurred()) SWIG_fail
;
11398 resultobj
= SWIG_From_int(static_cast< int >(result
));
11405 SWIGINTERN PyObject
*_wrap_SashWindow_GetMaximumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11406 PyObject
*resultobj
= 0;
11407 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11411 PyObject
*swig_obj
[1] ;
11413 if (!args
) SWIG_fail
;
11414 swig_obj
[0] = args
;
11415 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11416 if (!SWIG_IsOK(res1
)) {
11417 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMaximumSizeY" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11419 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11422 result
= (int)((wxSashWindow
const *)arg1
)->GetMaximumSizeY();
11423 wxPyEndAllowThreads(__tstate
);
11424 if (PyErr_Occurred()) SWIG_fail
;
11426 resultobj
= SWIG_From_int(static_cast< int >(result
));
11433 SWIGINTERN PyObject
*_wrap_SashWindow_SashHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11434 PyObject
*resultobj
= 0;
11435 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11438 int arg4
= (int) 2 ;
11439 wxSashEdgePosition result
;
11448 PyObject
* obj0
= 0 ;
11449 PyObject
* obj1
= 0 ;
11450 PyObject
* obj2
= 0 ;
11451 PyObject
* obj3
= 0 ;
11452 char * kwnames
[] = {
11453 (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL
11456 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SashWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11457 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11458 if (!SWIG_IsOK(res1
)) {
11459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SashHitTest" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11461 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11462 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11463 if (!SWIG_IsOK(ecode2
)) {
11464 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SashHitTest" "', expected argument " "2"" of type '" "int""'");
11466 arg2
= static_cast< int >(val2
);
11467 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11468 if (!SWIG_IsOK(ecode3
)) {
11469 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SashHitTest" "', expected argument " "3"" of type '" "int""'");
11471 arg3
= static_cast< int >(val3
);
11473 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11474 if (!SWIG_IsOK(ecode4
)) {
11475 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SashWindow_SashHitTest" "', expected argument " "4"" of type '" "int""'");
11477 arg4
= static_cast< int >(val4
);
11480 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11481 result
= (wxSashEdgePosition
)(arg1
)->SashHitTest(arg2
,arg3
,arg4
);
11482 wxPyEndAllowThreads(__tstate
);
11483 if (PyErr_Occurred()) SWIG_fail
;
11485 resultobj
= SWIG_From_int(static_cast< int >(result
));
11492 SWIGINTERN PyObject
*_wrap_SashWindow_SizeWindows(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11493 PyObject
*resultobj
= 0;
11494 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11497 PyObject
*swig_obj
[1] ;
11499 if (!args
) SWIG_fail
;
11500 swig_obj
[0] = args
;
11501 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11502 if (!SWIG_IsOK(res1
)) {
11503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SizeWindows" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11505 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11507 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11508 (arg1
)->SizeWindows();
11509 wxPyEndAllowThreads(__tstate
);
11510 if (PyErr_Occurred()) SWIG_fail
;
11512 resultobj
= SWIG_Py_Void();
11519 SWIGINTERN PyObject
*SashWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11521 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11522 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashWindow
, SWIG_NewClientData(obj
));
11523 return SWIG_Py_Void();
11526 SWIGINTERN PyObject
*SashWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11527 return SWIG_Python_InitShadowInstance(args
);
11530 SWIGINTERN PyObject
*_wrap_new_SashEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11531 PyObject
*resultobj
= 0;
11532 int arg1
= (int) 0 ;
11533 wxSashEdgePosition arg2
= (wxSashEdgePosition
) wxSASH_NONE
;
11534 wxSashEvent
*result
= 0 ;
11539 PyObject
* obj0
= 0 ;
11540 PyObject
* obj1
= 0 ;
11541 char * kwnames
[] = {
11542 (char *) "id",(char *) "edge", NULL
11545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SashEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11547 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11548 if (!SWIG_IsOK(ecode1
)) {
11549 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_SashEvent" "', expected argument " "1"" of type '" "int""'");
11551 arg1
= static_cast< int >(val1
);
11554 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11555 if (!SWIG_IsOK(ecode2
)) {
11556 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashEvent" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11558 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11562 result
= (wxSashEvent
*)new wxSashEvent(arg1
,arg2
);
11563 wxPyEndAllowThreads(__tstate
);
11564 if (PyErr_Occurred()) SWIG_fail
;
11566 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_NEW
| 0 );
11573 SWIGINTERN PyObject
*_wrap_SashEvent_SetEdge(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11574 PyObject
*resultobj
= 0;
11575 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11576 wxSashEdgePosition arg2
;
11581 PyObject
* obj0
= 0 ;
11582 PyObject
* obj1
= 0 ;
11583 char * kwnames
[] = {
11584 (char *) "self",(char *) "edge", NULL
11587 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetEdge",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11588 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11589 if (!SWIG_IsOK(res1
)) {
11590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetEdge" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11592 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11593 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11594 if (!SWIG_IsOK(ecode2
)) {
11595 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashEvent_SetEdge" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11597 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11600 (arg1
)->SetEdge(arg2
);
11601 wxPyEndAllowThreads(__tstate
);
11602 if (PyErr_Occurred()) SWIG_fail
;
11604 resultobj
= SWIG_Py_Void();
11611 SWIGINTERN PyObject
*_wrap_SashEvent_GetEdge(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11612 PyObject
*resultobj
= 0;
11613 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11614 wxSashEdgePosition result
;
11617 PyObject
*swig_obj
[1] ;
11619 if (!args
) SWIG_fail
;
11620 swig_obj
[0] = args
;
11621 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11622 if (!SWIG_IsOK(res1
)) {
11623 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetEdge" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11625 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11628 result
= (wxSashEdgePosition
)((wxSashEvent
const *)arg1
)->GetEdge();
11629 wxPyEndAllowThreads(__tstate
);
11630 if (PyErr_Occurred()) SWIG_fail
;
11632 resultobj
= SWIG_From_int(static_cast< int >(result
));
11639 SWIGINTERN PyObject
*_wrap_SashEvent_SetDragRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11640 PyObject
*resultobj
= 0;
11641 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11646 PyObject
* obj0
= 0 ;
11647 PyObject
* obj1
= 0 ;
11648 char * kwnames
[] = {
11649 (char *) "self",(char *) "rect", NULL
11652 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11653 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11654 if (!SWIG_IsOK(res1
)) {
11655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetDragRect" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11657 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11660 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
11663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11664 (arg1
)->SetDragRect((wxRect
const &)*arg2
);
11665 wxPyEndAllowThreads(__tstate
);
11666 if (PyErr_Occurred()) SWIG_fail
;
11668 resultobj
= SWIG_Py_Void();
11675 SWIGINTERN PyObject
*_wrap_SashEvent_GetDragRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11676 PyObject
*resultobj
= 0;
11677 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11681 PyObject
*swig_obj
[1] ;
11683 if (!args
) SWIG_fail
;
11684 swig_obj
[0] = args
;
11685 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11686 if (!SWIG_IsOK(res1
)) {
11687 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetDragRect" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11689 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11692 result
= ((wxSashEvent
const *)arg1
)->GetDragRect();
11693 wxPyEndAllowThreads(__tstate
);
11694 if (PyErr_Occurred()) SWIG_fail
;
11696 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
11703 SWIGINTERN PyObject
*_wrap_SashEvent_SetDragStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11704 PyObject
*resultobj
= 0;
11705 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11706 wxSashDragStatus arg2
;
11711 PyObject
* obj0
= 0 ;
11712 PyObject
* obj1
= 0 ;
11713 char * kwnames
[] = {
11714 (char *) "self",(char *) "status", NULL
11717 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11718 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11719 if (!SWIG_IsOK(res1
)) {
11720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetDragStatus" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11722 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11723 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11724 if (!SWIG_IsOK(ecode2
)) {
11725 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashEvent_SetDragStatus" "', expected argument " "2"" of type '" "wxSashDragStatus""'");
11727 arg2
= static_cast< wxSashDragStatus
>(val2
);
11729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11730 (arg1
)->SetDragStatus(arg2
);
11731 wxPyEndAllowThreads(__tstate
);
11732 if (PyErr_Occurred()) SWIG_fail
;
11734 resultobj
= SWIG_Py_Void();
11741 SWIGINTERN PyObject
*_wrap_SashEvent_GetDragStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11742 PyObject
*resultobj
= 0;
11743 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11744 wxSashDragStatus result
;
11747 PyObject
*swig_obj
[1] ;
11749 if (!args
) SWIG_fail
;
11750 swig_obj
[0] = args
;
11751 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11752 if (!SWIG_IsOK(res1
)) {
11753 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetDragStatus" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11755 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11758 result
= (wxSashDragStatus
)((wxSashEvent
const *)arg1
)->GetDragStatus();
11759 wxPyEndAllowThreads(__tstate
);
11760 if (PyErr_Occurred()) SWIG_fail
;
11762 resultobj
= SWIG_From_int(static_cast< int >(result
));
11769 SWIGINTERN PyObject
*SashEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11771 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11772 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashEvent
, SWIG_NewClientData(obj
));
11773 return SWIG_Py_Void();
11776 SWIGINTERN PyObject
*SashEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11777 return SWIG_Python_InitShadowInstance(args
);
11780 SWIGINTERN PyObject
*_wrap_new_QueryLayoutInfoEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11781 PyObject
*resultobj
= 0;
11782 int arg1
= (int) 0 ;
11783 wxQueryLayoutInfoEvent
*result
= 0 ;
11786 PyObject
* obj0
= 0 ;
11787 char * kwnames
[] = {
11788 (char *) "id", NULL
11791 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_QueryLayoutInfoEvent",kwnames
,&obj0
)) SWIG_fail
;
11793 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11794 if (!SWIG_IsOK(ecode1
)) {
11795 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_QueryLayoutInfoEvent" "', expected argument " "1"" of type '" "int""'");
11797 arg1
= static_cast< int >(val1
);
11800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11801 result
= (wxQueryLayoutInfoEvent
*)new wxQueryLayoutInfoEvent(arg1
);
11802 wxPyEndAllowThreads(__tstate
);
11803 if (PyErr_Occurred()) SWIG_fail
;
11805 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_NEW
| 0 );
11812 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetRequestedLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11813 PyObject
*resultobj
= 0;
11814 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11820 PyObject
* obj0
= 0 ;
11821 PyObject
* obj1
= 0 ;
11822 char * kwnames
[] = {
11823 (char *) "self",(char *) "length", NULL
11826 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetRequestedLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11827 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11828 if (!SWIG_IsOK(res1
)) {
11829 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetRequestedLength" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11831 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11832 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11833 if (!SWIG_IsOK(ecode2
)) {
11834 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetRequestedLength" "', expected argument " "2"" of type '" "int""'");
11836 arg2
= static_cast< int >(val2
);
11838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11839 (arg1
)->SetRequestedLength(arg2
);
11840 wxPyEndAllowThreads(__tstate
);
11841 if (PyErr_Occurred()) SWIG_fail
;
11843 resultobj
= SWIG_Py_Void();
11850 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetRequestedLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11851 PyObject
*resultobj
= 0;
11852 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11856 PyObject
*swig_obj
[1] ;
11858 if (!args
) SWIG_fail
;
11859 swig_obj
[0] = args
;
11860 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11861 if (!SWIG_IsOK(res1
)) {
11862 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetRequestedLength" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11864 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11867 result
= (int)((wxQueryLayoutInfoEvent
const *)arg1
)->GetRequestedLength();
11868 wxPyEndAllowThreads(__tstate
);
11869 if (PyErr_Occurred()) SWIG_fail
;
11871 resultobj
= SWIG_From_int(static_cast< int >(result
));
11878 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11879 PyObject
*resultobj
= 0;
11880 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11886 PyObject
* obj0
= 0 ;
11887 PyObject
* obj1
= 0 ;
11888 char * kwnames
[] = {
11889 (char *) "self",(char *) "flags", NULL
11892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11893 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11894 if (!SWIG_IsOK(res1
)) {
11895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetFlags" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11897 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11898 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11899 if (!SWIG_IsOK(ecode2
)) {
11900 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
11902 arg2
= static_cast< int >(val2
);
11904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11905 (arg1
)->SetFlags(arg2
);
11906 wxPyEndAllowThreads(__tstate
);
11907 if (PyErr_Occurred()) SWIG_fail
;
11909 resultobj
= SWIG_Py_Void();
11916 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11917 PyObject
*resultobj
= 0;
11918 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11922 PyObject
*swig_obj
[1] ;
11924 if (!args
) SWIG_fail
;
11925 swig_obj
[0] = args
;
11926 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11927 if (!SWIG_IsOK(res1
)) {
11928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetFlags" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11930 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11933 result
= (int)((wxQueryLayoutInfoEvent
const *)arg1
)->GetFlags();
11934 wxPyEndAllowThreads(__tstate
);
11935 if (PyErr_Occurred()) SWIG_fail
;
11937 resultobj
= SWIG_From_int(static_cast< int >(result
));
11944 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11945 PyObject
*resultobj
= 0;
11946 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11951 PyObject
* obj0
= 0 ;
11952 PyObject
* obj1
= 0 ;
11953 char * kwnames
[] = {
11954 (char *) "self",(char *) "size", NULL
11957 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11958 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11959 if (!SWIG_IsOK(res1
)) {
11960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetSize" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11962 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11965 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
11968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11969 (arg1
)->SetSize((wxSize
const &)*arg2
);
11970 wxPyEndAllowThreads(__tstate
);
11971 if (PyErr_Occurred()) SWIG_fail
;
11973 resultobj
= SWIG_Py_Void();
11980 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11981 PyObject
*resultobj
= 0;
11982 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11986 PyObject
*swig_obj
[1] ;
11988 if (!args
) SWIG_fail
;
11989 swig_obj
[0] = args
;
11990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11991 if (!SWIG_IsOK(res1
)) {
11992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetSize" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11994 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11997 result
= ((wxQueryLayoutInfoEvent
const *)arg1
)->GetSize();
11998 wxPyEndAllowThreads(__tstate
);
11999 if (PyErr_Occurred()) SWIG_fail
;
12001 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
12008 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12009 PyObject
*resultobj
= 0;
12010 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12011 wxLayoutOrientation arg2
;
12016 PyObject
* obj0
= 0 ;
12017 PyObject
* obj1
= 0 ;
12018 char * kwnames
[] = {
12019 (char *) "self",(char *) "orient", NULL
12022 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12023 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12024 if (!SWIG_IsOK(res1
)) {
12025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetOrientation" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
12027 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12028 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12029 if (!SWIG_IsOK(ecode2
)) {
12030 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetOrientation" "', expected argument " "2"" of type '" "wxLayoutOrientation""'");
12032 arg2
= static_cast< wxLayoutOrientation
>(val2
);
12034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12035 (arg1
)->SetOrientation(arg2
);
12036 wxPyEndAllowThreads(__tstate
);
12037 if (PyErr_Occurred()) SWIG_fail
;
12039 resultobj
= SWIG_Py_Void();
12046 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12047 PyObject
*resultobj
= 0;
12048 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12049 wxLayoutOrientation result
;
12052 PyObject
*swig_obj
[1] ;
12054 if (!args
) SWIG_fail
;
12055 swig_obj
[0] = args
;
12056 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12057 if (!SWIG_IsOK(res1
)) {
12058 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetOrientation" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
12060 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12062 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12063 result
= (wxLayoutOrientation
)((wxQueryLayoutInfoEvent
const *)arg1
)->GetOrientation();
12064 wxPyEndAllowThreads(__tstate
);
12065 if (PyErr_Occurred()) SWIG_fail
;
12067 resultobj
= SWIG_From_int(static_cast< int >(result
));
12074 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12075 PyObject
*resultobj
= 0;
12076 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12077 wxLayoutAlignment arg2
;
12082 PyObject
* obj0
= 0 ;
12083 PyObject
* obj1
= 0 ;
12084 char * kwnames
[] = {
12085 (char *) "self",(char *) "align", NULL
12088 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetAlignment",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12089 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12090 if (!SWIG_IsOK(res1
)) {
12091 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetAlignment" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
12093 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12094 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12095 if (!SWIG_IsOK(ecode2
)) {
12096 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetAlignment" "', expected argument " "2"" of type '" "wxLayoutAlignment""'");
12098 arg2
= static_cast< wxLayoutAlignment
>(val2
);
12100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12101 (arg1
)->SetAlignment(arg2
);
12102 wxPyEndAllowThreads(__tstate
);
12103 if (PyErr_Occurred()) SWIG_fail
;
12105 resultobj
= SWIG_Py_Void();
12112 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12113 PyObject
*resultobj
= 0;
12114 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12115 wxLayoutAlignment result
;
12118 PyObject
*swig_obj
[1] ;
12120 if (!args
) SWIG_fail
;
12121 swig_obj
[0] = args
;
12122 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12123 if (!SWIG_IsOK(res1
)) {
12124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetAlignment" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
12126 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12129 result
= (wxLayoutAlignment
)((wxQueryLayoutInfoEvent
const *)arg1
)->GetAlignment();
12130 wxPyEndAllowThreads(__tstate
);
12131 if (PyErr_Occurred()) SWIG_fail
;
12133 resultobj
= SWIG_From_int(static_cast< int >(result
));
12140 SWIGINTERN PyObject
*QueryLayoutInfoEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12142 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12143 SWIG_TypeNewClientData(SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_NewClientData(obj
));
12144 return SWIG_Py_Void();
12147 SWIGINTERN PyObject
*QueryLayoutInfoEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12148 return SWIG_Python_InitShadowInstance(args
);
12151 SWIGINTERN PyObject
*_wrap_new_CalculateLayoutEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12152 PyObject
*resultobj
= 0;
12153 int arg1
= (int) 0 ;
12154 wxCalculateLayoutEvent
*result
= 0 ;
12157 PyObject
* obj0
= 0 ;
12158 char * kwnames
[] = {
12159 (char *) "id", NULL
12162 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_CalculateLayoutEvent",kwnames
,&obj0
)) SWIG_fail
;
12164 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
12165 if (!SWIG_IsOK(ecode1
)) {
12166 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_CalculateLayoutEvent" "', expected argument " "1"" of type '" "int""'");
12168 arg1
= static_cast< int >(val1
);
12171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12172 result
= (wxCalculateLayoutEvent
*)new wxCalculateLayoutEvent(arg1
);
12173 wxPyEndAllowThreads(__tstate
);
12174 if (PyErr_Occurred()) SWIG_fail
;
12176 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_NEW
| 0 );
12183 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12184 PyObject
*resultobj
= 0;
12185 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12191 PyObject
* obj0
= 0 ;
12192 PyObject
* obj1
= 0 ;
12193 char * kwnames
[] = {
12194 (char *) "self",(char *) "flags", NULL
12197 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12198 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12199 if (!SWIG_IsOK(res1
)) {
12200 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_SetFlags" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent *""'");
12202 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12203 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12204 if (!SWIG_IsOK(ecode2
)) {
12205 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "CalculateLayoutEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
12207 arg2
= static_cast< int >(val2
);
12209 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12210 (arg1
)->SetFlags(arg2
);
12211 wxPyEndAllowThreads(__tstate
);
12212 if (PyErr_Occurred()) SWIG_fail
;
12214 resultobj
= SWIG_Py_Void();
12221 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12222 PyObject
*resultobj
= 0;
12223 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12227 PyObject
*swig_obj
[1] ;
12229 if (!args
) SWIG_fail
;
12230 swig_obj
[0] = args
;
12231 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12232 if (!SWIG_IsOK(res1
)) {
12233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_GetFlags" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent const *""'");
12235 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12238 result
= (int)((wxCalculateLayoutEvent
const *)arg1
)->GetFlags();
12239 wxPyEndAllowThreads(__tstate
);
12240 if (PyErr_Occurred()) SWIG_fail
;
12242 resultobj
= SWIG_From_int(static_cast< int >(result
));
12249 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12250 PyObject
*resultobj
= 0;
12251 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12256 PyObject
* obj0
= 0 ;
12257 PyObject
* obj1
= 0 ;
12258 char * kwnames
[] = {
12259 (char *) "self",(char *) "rect", NULL
12262 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12263 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12264 if (!SWIG_IsOK(res1
)) {
12265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_SetRect" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent *""'");
12267 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12270 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
12273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12274 (arg1
)->SetRect((wxRect
const &)*arg2
);
12275 wxPyEndAllowThreads(__tstate
);
12276 if (PyErr_Occurred()) SWIG_fail
;
12278 resultobj
= SWIG_Py_Void();
12285 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_GetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12286 PyObject
*resultobj
= 0;
12287 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12291 PyObject
*swig_obj
[1] ;
12293 if (!args
) SWIG_fail
;
12294 swig_obj
[0] = args
;
12295 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12296 if (!SWIG_IsOK(res1
)) {
12297 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_GetRect" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent const *""'");
12299 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12301 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12302 result
= ((wxCalculateLayoutEvent
const *)arg1
)->GetRect();
12303 wxPyEndAllowThreads(__tstate
);
12304 if (PyErr_Occurred()) SWIG_fail
;
12306 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
12313 SWIGINTERN PyObject
*CalculateLayoutEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12315 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12316 SWIG_TypeNewClientData(SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_NewClientData(obj
));
12317 return SWIG_Py_Void();
12320 SWIGINTERN PyObject
*CalculateLayoutEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12321 return SWIG_Python_InitShadowInstance(args
);
12324 SWIGINTERN PyObject
*_wrap_new_SashLayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12325 PyObject
*resultobj
= 0;
12326 wxWindow
*arg1
= (wxWindow
*) 0 ;
12327 int arg2
= (int) -1 ;
12328 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12329 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12330 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12331 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12332 long arg5
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
12333 wxString
const &arg6_defvalue
= wxPySashLayoutNameStr
;
12334 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
12335 wxSashLayoutWindow
*result
= 0 ;
12344 bool temp6
= false ;
12345 PyObject
* obj0
= 0 ;
12346 PyObject
* obj1
= 0 ;
12347 PyObject
* obj2
= 0 ;
12348 PyObject
* obj3
= 0 ;
12349 PyObject
* obj4
= 0 ;
12350 PyObject
* obj5
= 0 ;
12351 char * kwnames
[] = {
12352 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashLayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
12356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12357 if (!SWIG_IsOK(res1
)) {
12358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SashLayoutWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
12360 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12362 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12363 if (!SWIG_IsOK(ecode2
)) {
12364 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashLayoutWindow" "', expected argument " "2"" of type '" "int""'");
12366 arg2
= static_cast< int >(val2
);
12371 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12377 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12381 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
12382 if (!SWIG_IsOK(ecode5
)) {
12383 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SashLayoutWindow" "', expected argument " "5"" of type '" "long""'");
12385 arg5
= static_cast< long >(val5
);
12389 arg6
= wxString_in_helper(obj5
);
12390 if (arg6
== NULL
) SWIG_fail
;
12395 if (!wxPyCheckForApp()) SWIG_fail
;
12396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12397 result
= (wxSashLayoutWindow
*)new wxSashLayoutWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
12398 wxPyEndAllowThreads(__tstate
);
12399 if (PyErr_Occurred()) SWIG_fail
;
12401 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_NEW
| 0 );
12416 SWIGINTERN PyObject
*_wrap_new_PreSashLayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12417 PyObject
*resultobj
= 0;
12418 wxSashLayoutWindow
*result
= 0 ;
12420 if (!SWIG_Python_UnpackTuple(args
,"new_PreSashLayoutWindow",0,0,0)) SWIG_fail
;
12422 if (!wxPyCheckForApp()) SWIG_fail
;
12423 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12424 result
= (wxSashLayoutWindow
*)new wxSashLayoutWindow();
12425 wxPyEndAllowThreads(__tstate
);
12426 if (PyErr_Occurred()) SWIG_fail
;
12428 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_OWN
| 0 );
12435 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12436 PyObject
*resultobj
= 0;
12437 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12438 wxWindow
*arg2
= (wxWindow
*) 0 ;
12439 int arg3
= (int) -1 ;
12440 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12441 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12442 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12443 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12444 long arg6
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
12445 wxString
const &arg7_defvalue
= wxPySashLayoutNameStr
;
12446 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12458 bool temp7
= false ;
12459 PyObject
* obj0
= 0 ;
12460 PyObject
* obj1
= 0 ;
12461 PyObject
* obj2
= 0 ;
12462 PyObject
* obj3
= 0 ;
12463 PyObject
* obj4
= 0 ;
12464 PyObject
* obj5
= 0 ;
12465 PyObject
* obj6
= 0 ;
12466 char * kwnames
[] = {
12467 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashLayoutWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
12471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12472 if (!SWIG_IsOK(res1
)) {
12473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_Create" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12475 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12476 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12477 if (!SWIG_IsOK(res2
)) {
12478 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SashLayoutWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
12480 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12482 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
12483 if (!SWIG_IsOK(ecode3
)) {
12484 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashLayoutWindow_Create" "', expected argument " "3"" of type '" "int""'");
12486 arg3
= static_cast< int >(val3
);
12491 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12497 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12501 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
12502 if (!SWIG_IsOK(ecode6
)) {
12503 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SashLayoutWindow_Create" "', expected argument " "6"" of type '" "long""'");
12505 arg6
= static_cast< long >(val6
);
12509 arg7
= wxString_in_helper(obj6
);
12510 if (arg7
== NULL
) SWIG_fail
;
12515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12516 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
12517 wxPyEndAllowThreads(__tstate
);
12518 if (PyErr_Occurred()) SWIG_fail
;
12521 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12537 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_GetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12538 PyObject
*resultobj
= 0;
12539 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12540 wxLayoutAlignment result
;
12543 PyObject
*swig_obj
[1] ;
12545 if (!args
) SWIG_fail
;
12546 swig_obj
[0] = args
;
12547 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12548 if (!SWIG_IsOK(res1
)) {
12549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_GetAlignment" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12551 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12554 result
= (wxLayoutAlignment
)(arg1
)->GetAlignment();
12555 wxPyEndAllowThreads(__tstate
);
12556 if (PyErr_Occurred()) SWIG_fail
;
12558 resultobj
= SWIG_From_int(static_cast< int >(result
));
12565 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12566 PyObject
*resultobj
= 0;
12567 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12568 wxLayoutOrientation result
;
12571 PyObject
*swig_obj
[1] ;
12573 if (!args
) SWIG_fail
;
12574 swig_obj
[0] = args
;
12575 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12576 if (!SWIG_IsOK(res1
)) {
12577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_GetOrientation" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12579 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12582 result
= (wxLayoutOrientation
)(arg1
)->GetOrientation();
12583 wxPyEndAllowThreads(__tstate
);
12584 if (PyErr_Occurred()) SWIG_fail
;
12586 resultobj
= SWIG_From_int(static_cast< int >(result
));
12593 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12594 PyObject
*resultobj
= 0;
12595 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12596 wxLayoutAlignment arg2
;
12601 PyObject
* obj0
= 0 ;
12602 PyObject
* obj1
= 0 ;
12603 char * kwnames
[] = {
12604 (char *) "self",(char *) "alignment", NULL
12607 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetAlignment",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12608 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12609 if (!SWIG_IsOK(res1
)) {
12610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetAlignment" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12612 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12613 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12614 if (!SWIG_IsOK(ecode2
)) {
12615 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashLayoutWindow_SetAlignment" "', expected argument " "2"" of type '" "wxLayoutAlignment""'");
12617 arg2
= static_cast< wxLayoutAlignment
>(val2
);
12619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12620 (arg1
)->SetAlignment(arg2
);
12621 wxPyEndAllowThreads(__tstate
);
12622 if (PyErr_Occurred()) SWIG_fail
;
12624 resultobj
= SWIG_Py_Void();
12631 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetDefaultSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12632 PyObject
*resultobj
= 0;
12633 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12638 PyObject
* obj0
= 0 ;
12639 PyObject
* obj1
= 0 ;
12640 char * kwnames
[] = {
12641 (char *) "self",(char *) "size", NULL
12644 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetDefaultSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12645 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12646 if (!SWIG_IsOK(res1
)) {
12647 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetDefaultSize" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12649 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12652 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
12655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12656 (arg1
)->SetDefaultSize((wxSize
const &)*arg2
);
12657 wxPyEndAllowThreads(__tstate
);
12658 if (PyErr_Occurred()) SWIG_fail
;
12660 resultobj
= SWIG_Py_Void();
12667 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12668 PyObject
*resultobj
= 0;
12669 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12670 wxLayoutOrientation arg2
;
12675 PyObject
* obj0
= 0 ;
12676 PyObject
* obj1
= 0 ;
12677 char * kwnames
[] = {
12678 (char *) "self",(char *) "orientation", NULL
12681 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12682 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12683 if (!SWIG_IsOK(res1
)) {
12684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetOrientation" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12686 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12687 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12688 if (!SWIG_IsOK(ecode2
)) {
12689 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashLayoutWindow_SetOrientation" "', expected argument " "2"" of type '" "wxLayoutOrientation""'");
12691 arg2
= static_cast< wxLayoutOrientation
>(val2
);
12693 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12694 (arg1
)->SetOrientation(arg2
);
12695 wxPyEndAllowThreads(__tstate
);
12696 if (PyErr_Occurred()) SWIG_fail
;
12698 resultobj
= SWIG_Py_Void();
12705 SWIGINTERN PyObject
*SashLayoutWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12707 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12708 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashLayoutWindow
, SWIG_NewClientData(obj
));
12709 return SWIG_Py_Void();
12712 SWIGINTERN PyObject
*SashLayoutWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12713 return SWIG_Python_InitShadowInstance(args
);
12716 SWIGINTERN PyObject
*_wrap_new_LayoutAlgorithm(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12717 PyObject
*resultobj
= 0;
12718 wxLayoutAlgorithm
*result
= 0 ;
12720 if (!SWIG_Python_UnpackTuple(args
,"new_LayoutAlgorithm",0,0,0)) SWIG_fail
;
12722 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12723 result
= (wxLayoutAlgorithm
*)new wxLayoutAlgorithm();
12724 wxPyEndAllowThreads(__tstate
);
12725 if (PyErr_Occurred()) SWIG_fail
;
12727 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_NEW
| 0 );
12734 SWIGINTERN PyObject
*_wrap_delete_LayoutAlgorithm(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12735 PyObject
*resultobj
= 0;
12736 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12739 PyObject
*swig_obj
[1] ;
12741 if (!args
) SWIG_fail
;
12742 swig_obj
[0] = args
;
12743 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_DISOWN
| 0 );
12744 if (!SWIG_IsOK(res1
)) {
12745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_LayoutAlgorithm" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12747 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12752 wxPyEndAllowThreads(__tstate
);
12753 if (PyErr_Occurred()) SWIG_fail
;
12755 resultobj
= SWIG_Py_Void();
12762 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutMDIFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12763 PyObject
*resultobj
= 0;
12764 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12765 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
12766 wxRect
*arg3
= (wxRect
*) NULL
;
12774 PyObject
* obj0
= 0 ;
12775 PyObject
* obj1
= 0 ;
12776 PyObject
* obj2
= 0 ;
12777 char * kwnames
[] = {
12778 (char *) "self",(char *) "frame",(char *) "rect", NULL
12781 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutMDIFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12782 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12783 if (!SWIG_IsOK(res1
)) {
12784 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12786 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12787 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
12788 if (!SWIG_IsOK(res2
)) {
12789 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
12791 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
12793 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxRect
, 0 | 0 );
12794 if (!SWIG_IsOK(res3
)) {
12795 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "3"" of type '" "wxRect *""'");
12797 arg3
= reinterpret_cast< wxRect
* >(argp3
);
12800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12801 result
= (bool)(arg1
)->LayoutMDIFrame(arg2
,arg3
);
12802 wxPyEndAllowThreads(__tstate
);
12803 if (PyErr_Occurred()) SWIG_fail
;
12806 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12814 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12815 PyObject
*resultobj
= 0;
12816 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12817 wxFrame
*arg2
= (wxFrame
*) 0 ;
12818 wxWindow
*arg3
= (wxWindow
*) NULL
;
12826 PyObject
* obj0
= 0 ;
12827 PyObject
* obj1
= 0 ;
12828 PyObject
* obj2
= 0 ;
12829 char * kwnames
[] = {
12830 (char *) "self",(char *) "frame",(char *) "mainWindow", NULL
12833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12835 if (!SWIG_IsOK(res1
)) {
12836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12838 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12839 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
12840 if (!SWIG_IsOK(res2
)) {
12841 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
12843 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
12845 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12846 if (!SWIG_IsOK(res3
)) {
12847 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "3"" of type '" "wxWindow *""'");
12849 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12853 result
= (bool)(arg1
)->LayoutFrame(arg2
,arg3
);
12854 wxPyEndAllowThreads(__tstate
);
12855 if (PyErr_Occurred()) SWIG_fail
;
12858 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12866 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12867 PyObject
*resultobj
= 0;
12868 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12869 wxWindow
*arg2
= (wxWindow
*) 0 ;
12870 wxWindow
*arg3
= (wxWindow
*) NULL
;
12878 PyObject
* obj0
= 0 ;
12879 PyObject
* obj1
= 0 ;
12880 PyObject
* obj2
= 0 ;
12881 char * kwnames
[] = {
12882 (char *) "self",(char *) "parent",(char *) "mainWindow", NULL
12885 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12886 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12887 if (!SWIG_IsOK(res1
)) {
12888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12890 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12891 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12892 if (!SWIG_IsOK(res2
)) {
12893 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
12895 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12897 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12898 if (!SWIG_IsOK(res3
)) {
12899 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "3"" of type '" "wxWindow *""'");
12901 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12905 result
= (bool)(arg1
)->LayoutWindow(arg2
,arg3
);
12906 wxPyEndAllowThreads(__tstate
);
12907 if (PyErr_Occurred()) SWIG_fail
;
12910 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12918 SWIGINTERN PyObject
*LayoutAlgorithm_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12920 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12921 SWIG_TypeNewClientData(SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_NewClientData(obj
));
12922 return SWIG_Py_Void();
12925 SWIGINTERN PyObject
*LayoutAlgorithm_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12926 return SWIG_Python_InitShadowInstance(args
);
12929 SWIGINTERN PyObject
*_wrap_new_PopupWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12930 PyObject
*resultobj
= 0;
12931 wxWindow
*arg1
= (wxWindow
*) 0 ;
12932 int arg2
= (int) wxBORDER_NONE
;
12933 wxPopupWindow
*result
= 0 ;
12938 PyObject
* obj0
= 0 ;
12939 PyObject
* obj1
= 0 ;
12940 char * kwnames
[] = {
12941 (char *) "parent",(char *) "flags", NULL
12944 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12945 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12946 if (!SWIG_IsOK(res1
)) {
12947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PopupWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
12949 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12951 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12952 if (!SWIG_IsOK(ecode2
)) {
12953 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PopupWindow" "', expected argument " "2"" of type '" "int""'");
12955 arg2
= static_cast< int >(val2
);
12958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12959 result
= (wxPopupWindow
*)new wxPopupWindow(arg1
,arg2
);
12960 wxPyEndAllowThreads(__tstate
);
12961 if (PyErr_Occurred()) SWIG_fail
;
12963 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_NEW
| 0 );
12970 SWIGINTERN PyObject
*_wrap_new_PrePopupWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12971 PyObject
*resultobj
= 0;
12972 wxPopupWindow
*result
= 0 ;
12974 if (!SWIG_Python_UnpackTuple(args
,"new_PrePopupWindow",0,0,0)) SWIG_fail
;
12976 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12977 result
= (wxPopupWindow
*)new wxPopupWindow();
12978 wxPyEndAllowThreads(__tstate
);
12979 if (PyErr_Occurred()) SWIG_fail
;
12981 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_OWN
| 0 );
12988 SWIGINTERN PyObject
*PopupWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12990 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12991 SWIG_TypeNewClientData(SWIGTYPE_p_wxPopupWindow
, SWIG_NewClientData(obj
));
12992 return SWIG_Py_Void();
12995 SWIGINTERN PyObject
*PopupWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12996 return SWIG_Python_InitShadowInstance(args
);
12999 SWIGINTERN PyObject
*_wrap_new_PopupTransientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13000 PyObject
*resultobj
= 0;
13001 wxWindow
*arg1
= (wxWindow
*) 0 ;
13002 int arg2
= (int) wxBORDER_NONE
;
13003 wxPyPopupTransientWindow
*result
= 0 ;
13008 PyObject
* obj0
= 0 ;
13009 PyObject
* obj1
= 0 ;
13010 char * kwnames
[] = {
13011 (char *) "parent",(char *) "style", NULL
13014 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupTransientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13015 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13016 if (!SWIG_IsOK(res1
)) {
13017 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PopupTransientWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13019 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13021 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13022 if (!SWIG_IsOK(ecode2
)) {
13023 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PopupTransientWindow" "', expected argument " "2"" of type '" "int""'");
13025 arg2
= static_cast< int >(val2
);
13028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13029 result
= (wxPyPopupTransientWindow
*)new wxPyPopupTransientWindow(arg1
,arg2
);
13030 wxPyEndAllowThreads(__tstate
);
13031 if (PyErr_Occurred()) SWIG_fail
;
13033 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_NEW
| 0 );
13040 SWIGINTERN PyObject
*_wrap_new_PrePopupTransientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13041 PyObject
*resultobj
= 0;
13042 wxPyPopupTransientWindow
*result
= 0 ;
13044 if (!SWIG_Python_UnpackTuple(args
,"new_PrePopupTransientWindow",0,0,0)) SWIG_fail
;
13046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13047 result
= (wxPyPopupTransientWindow
*)new wxPyPopupTransientWindow();
13048 wxPyEndAllowThreads(__tstate
);
13049 if (PyErr_Occurred()) SWIG_fail
;
13051 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_OWN
| 0 );
13058 SWIGINTERN PyObject
*PopupTransientWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13060 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13061 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_NewClientData(obj
));
13062 return SWIG_Py_Void();
13065 SWIGINTERN PyObject
*PopupTransientWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13066 return SWIG_Python_InitShadowInstance(args
);
13069 SWIGINTERN PyObject
*_wrap_new_TipWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13070 PyObject
*resultobj
= 0;
13071 wxWindow
*arg1
= (wxWindow
*) 0 ;
13072 wxString
*arg2
= 0 ;
13073 int arg3
= (int) 100 ;
13074 wxRect
*arg4
= (wxRect
*) NULL
;
13075 wxTipWindow
*result
= 0 ;
13078 bool temp2
= false ;
13083 PyObject
* obj0
= 0 ;
13084 PyObject
* obj1
= 0 ;
13085 PyObject
* obj2
= 0 ;
13086 PyObject
* obj3
= 0 ;
13087 char * kwnames
[] = {
13088 (char *) "parent",(char *) "text",(char *) "maxLength",(char *) "rectBound", NULL
13091 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_TipWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13092 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13093 if (!SWIG_IsOK(res1
)) {
13094 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TipWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13096 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13098 arg2
= wxString_in_helper(obj1
);
13099 if (arg2
== NULL
) SWIG_fail
;
13103 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13104 if (!SWIG_IsOK(ecode3
)) {
13105 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_TipWindow" "', expected argument " "3"" of type '" "int""'");
13107 arg3
= static_cast< int >(val3
);
13110 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxRect
, 0 | 0 );
13111 if (!SWIG_IsOK(res4
)) {
13112 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_TipWindow" "', expected argument " "4"" of type '" "wxRect *""'");
13114 arg4
= reinterpret_cast< wxRect
* >(argp4
);
13117 if (!wxPyCheckForApp()) SWIG_fail
;
13118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13119 result
= (wxTipWindow
*)new_wxTipWindow(arg1
,(wxString
const &)*arg2
,arg3
,arg4
);
13120 wxPyEndAllowThreads(__tstate
);
13121 if (PyErr_Occurred()) SWIG_fail
;
13123 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTipWindow
, SWIG_POINTER_NEW
| 0 );
13138 SWIGINTERN PyObject
*_wrap_TipWindow_SetBoundingRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13139 PyObject
*resultobj
= 0;
13140 wxTipWindow
*arg1
= (wxTipWindow
*) 0 ;
13145 PyObject
* obj0
= 0 ;
13146 PyObject
* obj1
= 0 ;
13147 char * kwnames
[] = {
13148 (char *) "self",(char *) "rectBound", NULL
13151 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TipWindow_SetBoundingRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13152 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTipWindow
, 0 | 0 );
13153 if (!SWIG_IsOK(res1
)) {
13154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipWindow_SetBoundingRect" "', expected argument " "1"" of type '" "wxTipWindow *""'");
13156 arg1
= reinterpret_cast< wxTipWindow
* >(argp1
);
13159 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
13162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13163 (arg1
)->SetBoundingRect((wxRect
const &)*arg2
);
13164 wxPyEndAllowThreads(__tstate
);
13165 if (PyErr_Occurred()) SWIG_fail
;
13167 resultobj
= SWIG_Py_Void();
13174 SWIGINTERN PyObject
*_wrap_TipWindow_Close(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13175 PyObject
*resultobj
= 0;
13176 wxTipWindow
*arg1
= (wxTipWindow
*) 0 ;
13179 PyObject
*swig_obj
[1] ;
13181 if (!args
) SWIG_fail
;
13182 swig_obj
[0] = args
;
13183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTipWindow
, 0 | 0 );
13184 if (!SWIG_IsOK(res1
)) {
13185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipWindow_Close" "', expected argument " "1"" of type '" "wxTipWindow *""'");
13187 arg1
= reinterpret_cast< wxTipWindow
* >(argp1
);
13189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13191 wxPyEndAllowThreads(__tstate
);
13192 if (PyErr_Occurred()) SWIG_fail
;
13194 resultobj
= SWIG_Py_Void();
13201 SWIGINTERN PyObject
*TipWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13203 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13204 SWIG_TypeNewClientData(SWIGTYPE_p_wxTipWindow
, SWIG_NewClientData(obj
));
13205 return SWIG_Py_Void();
13208 SWIGINTERN PyObject
*TipWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13209 return SWIG_Python_InitShadowInstance(args
);
13212 SWIGINTERN PyObject
*_wrap_new_VScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13213 PyObject
*resultobj
= 0;
13214 wxWindow
*arg1
= (wxWindow
*) 0 ;
13215 int arg2
= (int) wxID_ANY
;
13216 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
13217 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
13218 wxSize
const &arg4_defvalue
= wxDefaultSize
;
13219 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
13220 long arg5
= (long) 0 ;
13221 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
13222 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
13223 wxPyVScrolledWindow
*result
= 0 ;
13232 bool temp6
= false ;
13233 PyObject
* obj0
= 0 ;
13234 PyObject
* obj1
= 0 ;
13235 PyObject
* obj2
= 0 ;
13236 PyObject
* obj3
= 0 ;
13237 PyObject
* obj4
= 0 ;
13238 PyObject
* obj5
= 0 ;
13239 char * kwnames
[] = {
13240 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
13243 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
13244 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13245 if (!SWIG_IsOK(res1
)) {
13246 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_VScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13248 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13250 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13251 if (!SWIG_IsOK(ecode2
)) {
13252 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_VScrolledWindow" "', expected argument " "2"" of type '" "int""'");
13254 arg2
= static_cast< int >(val2
);
13259 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
13265 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13269 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
13270 if (!SWIG_IsOK(ecode5
)) {
13271 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_VScrolledWindow" "', expected argument " "5"" of type '" "long""'");
13273 arg5
= static_cast< long >(val5
);
13277 arg6
= wxString_in_helper(obj5
);
13278 if (arg6
== NULL
) SWIG_fail
;
13283 if (!wxPyCheckForApp()) SWIG_fail
;
13284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13285 result
= (wxPyVScrolledWindow
*)new wxPyVScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
13286 wxPyEndAllowThreads(__tstate
);
13287 if (PyErr_Occurred()) SWIG_fail
;
13289 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_NEW
| 0 );
13304 SWIGINTERN PyObject
*_wrap_new_PreVScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13305 PyObject
*resultobj
= 0;
13306 wxPyVScrolledWindow
*result
= 0 ;
13308 if (!SWIG_Python_UnpackTuple(args
,"new_PreVScrolledWindow",0,0,0)) SWIG_fail
;
13310 if (!wxPyCheckForApp()) SWIG_fail
;
13311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13312 result
= (wxPyVScrolledWindow
*)new wxPyVScrolledWindow();
13313 wxPyEndAllowThreads(__tstate
);
13314 if (PyErr_Occurred()) SWIG_fail
;
13316 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_OWN
| 0 );
13323 SWIGINTERN PyObject
*_wrap_VScrolledWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13324 PyObject
*resultobj
= 0;
13325 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13326 PyObject
*arg2
= (PyObject
*) 0 ;
13327 PyObject
*arg3
= (PyObject
*) 0 ;
13330 PyObject
* obj0
= 0 ;
13331 PyObject
* obj1
= 0 ;
13332 PyObject
* obj2
= 0 ;
13333 char * kwnames
[] = {
13334 (char *) "self",(char *) "self",(char *) "_class", NULL
13337 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13338 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13339 if (!SWIG_IsOK(res1
)) {
13340 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13342 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13347 (arg1
)->_setCallbackInfo(arg2
,arg3
);
13348 wxPyEndAllowThreads(__tstate
);
13349 if (PyErr_Occurred()) SWIG_fail
;
13351 resultobj
= SWIG_Py_Void();
13358 SWIGINTERN PyObject
*_wrap_VScrolledWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13359 PyObject
*resultobj
= 0;
13360 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13361 wxWindow
*arg2
= (wxWindow
*) 0 ;
13362 int arg3
= (int) wxID_ANY
;
13363 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13364 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13365 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13366 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13367 long arg6
= (long) 0 ;
13368 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
13369 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
13381 bool temp7
= false ;
13382 PyObject
* obj0
= 0 ;
13383 PyObject
* obj1
= 0 ;
13384 PyObject
* obj2
= 0 ;
13385 PyObject
* obj3
= 0 ;
13386 PyObject
* obj4
= 0 ;
13387 PyObject
* obj5
= 0 ;
13388 PyObject
* obj6
= 0 ;
13389 char * kwnames
[] = {
13390 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
13393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
13394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13395 if (!SWIG_IsOK(res1
)) {
13396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_Create" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13398 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13399 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13400 if (!SWIG_IsOK(res2
)) {
13401 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VScrolledWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
13403 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13405 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13406 if (!SWIG_IsOK(ecode3
)) {
13407 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_Create" "', expected argument " "3"" of type '" "int""'");
13409 arg3
= static_cast< int >(val3
);
13414 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13420 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13424 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
13425 if (!SWIG_IsOK(ecode6
)) {
13426 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "VScrolledWindow_Create" "', expected argument " "6"" of type '" "long""'");
13428 arg6
= static_cast< long >(val6
);
13432 arg7
= wxString_in_helper(obj6
);
13433 if (arg7
== NULL
) SWIG_fail
;
13438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13439 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
13440 wxPyEndAllowThreads(__tstate
);
13441 if (PyErr_Occurred()) SWIG_fail
;
13444 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13460 SWIGINTERN PyObject
*_wrap_VScrolledWindow_SetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13461 PyObject
*resultobj
= 0;
13462 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13468 PyObject
* obj0
= 0 ;
13469 PyObject
* obj1
= 0 ;
13470 char * kwnames
[] = {
13471 (char *) "self",(char *) "count", NULL
13474 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_SetLineCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13475 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13476 if (!SWIG_IsOK(res1
)) {
13477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_SetLineCount" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13479 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13480 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13481 if (!SWIG_IsOK(ecode2
)) {
13482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_SetLineCount" "', expected argument " "2"" of type '" "size_t""'");
13484 arg2
= static_cast< size_t >(val2
);
13486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13487 (arg1
)->SetLineCount(arg2
);
13488 wxPyEndAllowThreads(__tstate
);
13489 if (PyErr_Occurred()) SWIG_fail
;
13491 resultobj
= SWIG_Py_Void();
13498 SWIGINTERN PyObject
*_wrap_VScrolledWindow_ScrollToLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13499 PyObject
*resultobj
= 0;
13500 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13507 PyObject
* obj0
= 0 ;
13508 PyObject
* obj1
= 0 ;
13509 char * kwnames
[] = {
13510 (char *) "self",(char *) "line", NULL
13513 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13514 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13515 if (!SWIG_IsOK(res1
)) {
13516 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_ScrollToLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13518 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13519 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13520 if (!SWIG_IsOK(ecode2
)) {
13521 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_ScrollToLine" "', expected argument " "2"" of type '" "size_t""'");
13523 arg2
= static_cast< size_t >(val2
);
13525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13526 result
= (bool)(arg1
)->ScrollToLine(arg2
);
13527 wxPyEndAllowThreads(__tstate
);
13528 if (PyErr_Occurred()) SWIG_fail
;
13531 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13539 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13540 PyObject
*resultobj
= 0;
13541 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13547 PyObject
* obj0
= 0 ;
13548 PyObject
* obj1
= 0 ;
13549 char * kwnames
[] = {
13550 (char *) "self",(char *) "line", NULL
13553 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_RefreshLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13554 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13555 if (!SWIG_IsOK(res1
)) {
13556 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13558 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13559 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13560 if (!SWIG_IsOK(ecode2
)) {
13561 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_RefreshLine" "', expected argument " "2"" of type '" "size_t""'");
13563 arg2
= static_cast< size_t >(val2
);
13565 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13566 (arg1
)->RefreshLine(arg2
);
13567 wxPyEndAllowThreads(__tstate
);
13568 if (PyErr_Occurred()) SWIG_fail
;
13570 resultobj
= SWIG_Py_Void();
13577 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13578 PyObject
*resultobj
= 0;
13579 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13588 PyObject
* obj0
= 0 ;
13589 PyObject
* obj1
= 0 ;
13590 PyObject
* obj2
= 0 ;
13591 char * kwnames
[] = {
13592 (char *) "self",(char *) "_from",(char *) "to", NULL
13595 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_RefreshLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13596 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13597 if (!SWIG_IsOK(res1
)) {
13598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13600 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13601 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13602 if (!SWIG_IsOK(ecode2
)) {
13603 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "2"" of type '" "size_t""'");
13605 arg2
= static_cast< size_t >(val2
);
13606 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
13607 if (!SWIG_IsOK(ecode3
)) {
13608 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "3"" of type '" "size_t""'");
13610 arg3
= static_cast< size_t >(val3
);
13612 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13613 (arg1
)->RefreshLines(arg2
,arg3
);
13614 wxPyEndAllowThreads(__tstate
);
13615 if (PyErr_Occurred()) SWIG_fail
;
13617 resultobj
= SWIG_Py_Void();
13624 SWIGINTERN PyObject
*_wrap_VScrolledWindow_HitTestXY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13625 PyObject
*resultobj
= 0;
13626 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13636 PyObject
* obj0
= 0 ;
13637 PyObject
* obj1
= 0 ;
13638 PyObject
* obj2
= 0 ;
13639 char * kwnames
[] = {
13640 (char *) "self",(char *) "x",(char *) "y", NULL
13643 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_HitTestXY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13644 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13645 if (!SWIG_IsOK(res1
)) {
13646 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13648 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13649 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13650 if (!SWIG_IsOK(ecode2
)) {
13651 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "2"" of type '" "int""'");
13653 arg2
= static_cast< int >(val2
);
13654 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13655 if (!SWIG_IsOK(ecode3
)) {
13656 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "3"" of type '" "int""'");
13658 arg3
= static_cast< int >(val3
);
13660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13661 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->HitTest(arg2
,arg3
);
13662 wxPyEndAllowThreads(__tstate
);
13663 if (PyErr_Occurred()) SWIG_fail
;
13665 resultobj
= SWIG_From_int(static_cast< int >(result
));
13672 SWIGINTERN PyObject
*_wrap_VScrolledWindow_HitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13673 PyObject
*resultobj
= 0;
13674 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13675 wxPoint
*arg2
= 0 ;
13680 PyObject
* obj0
= 0 ;
13681 PyObject
* obj1
= 0 ;
13682 char * kwnames
[] = {
13683 (char *) "self",(char *) "pt", NULL
13686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_HitTest",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13688 if (!SWIG_IsOK(res1
)) {
13689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_HitTest" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13691 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13694 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
13697 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13698 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->HitTest((wxPoint
const &)*arg2
);
13699 wxPyEndAllowThreads(__tstate
);
13700 if (PyErr_Occurred()) SWIG_fail
;
13702 resultobj
= SWIG_From_int(static_cast< int >(result
));
13709 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13710 PyObject
*resultobj
= 0;
13711 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13714 PyObject
*swig_obj
[1] ;
13716 if (!args
) SWIG_fail
;
13717 swig_obj
[0] = args
;
13718 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13719 if (!SWIG_IsOK(res1
)) {
13720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshAll" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13722 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13725 (arg1
)->RefreshAll();
13726 wxPyEndAllowThreads(__tstate
);
13727 if (PyErr_Occurred()) SWIG_fail
;
13729 resultobj
= SWIG_Py_Void();
13736 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13737 PyObject
*resultobj
= 0;
13738 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13742 PyObject
*swig_obj
[1] ;
13744 if (!args
) SWIG_fail
;
13745 swig_obj
[0] = args
;
13746 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13747 if (!SWIG_IsOK(res1
)) {
13748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLineCount" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13750 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13753 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetLineCount();
13754 wxPyEndAllowThreads(__tstate
);
13755 if (PyErr_Occurred()) SWIG_fail
;
13757 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13764 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetVisibleBegin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13765 PyObject
*resultobj
= 0;
13766 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13770 PyObject
*swig_obj
[1] ;
13772 if (!args
) SWIG_fail
;
13773 swig_obj
[0] = args
;
13774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13775 if (!SWIG_IsOK(res1
)) {
13776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetVisibleBegin" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13778 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13781 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetVisibleBegin();
13782 wxPyEndAllowThreads(__tstate
);
13783 if (PyErr_Occurred()) SWIG_fail
;
13785 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13792 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetVisibleEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13793 PyObject
*resultobj
= 0;
13794 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13798 PyObject
*swig_obj
[1] ;
13800 if (!args
) SWIG_fail
;
13801 swig_obj
[0] = args
;
13802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13803 if (!SWIG_IsOK(res1
)) {
13804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetVisibleEnd" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13806 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13809 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetVisibleEnd();
13810 wxPyEndAllowThreads(__tstate
);
13811 if (PyErr_Occurred()) SWIG_fail
;
13813 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13820 SWIGINTERN PyObject
*_wrap_VScrolledWindow_IsVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13821 PyObject
*resultobj
= 0;
13822 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13829 PyObject
* obj0
= 0 ;
13830 PyObject
* obj1
= 0 ;
13831 char * kwnames
[] = {
13832 (char *) "self",(char *) "line", NULL
13835 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_IsVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13836 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13837 if (!SWIG_IsOK(res1
)) {
13838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_IsVisible" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13840 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13841 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13842 if (!SWIG_IsOK(ecode2
)) {
13843 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_IsVisible" "', expected argument " "2"" of type '" "size_t""'");
13845 arg2
= static_cast< size_t >(val2
);
13847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13848 result
= (bool)((wxPyVScrolledWindow
const *)arg1
)->IsVisible(arg2
);
13849 wxPyEndAllowThreads(__tstate
);
13850 if (PyErr_Occurred()) SWIG_fail
;
13853 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13861 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetFirstVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13862 PyObject
*resultobj
= 0;
13863 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13867 PyObject
*swig_obj
[1] ;
13869 if (!args
) SWIG_fail
;
13870 swig_obj
[0] = args
;
13871 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13872 if (!SWIG_IsOK(res1
)) {
13873 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13875 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13877 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13878 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetFirstVisibleLine();
13879 wxPyEndAllowThreads(__tstate
);
13880 if (PyErr_Occurred()) SWIG_fail
;
13882 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13889 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLastVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13890 PyObject
*resultobj
= 0;
13891 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13895 PyObject
*swig_obj
[1] ;
13897 if (!args
) SWIG_fail
;
13898 swig_obj
[0] = args
;
13899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13900 if (!SWIG_IsOK(res1
)) {
13901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLastVisibleLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13903 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13906 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetLastVisibleLine();
13907 wxPyEndAllowThreads(__tstate
);
13908 if (PyErr_Occurred()) SWIG_fail
;
13910 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13917 SWIGINTERN PyObject
*_wrap_VScrolledWindow_FindFirstFromBottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13918 PyObject
*resultobj
= 0;
13919 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13921 bool arg3
= (bool) false ;
13929 PyObject
* obj0
= 0 ;
13930 PyObject
* obj1
= 0 ;
13931 PyObject
* obj2
= 0 ;
13932 char * kwnames
[] = {
13933 (char *) "self",(char *) "lineLast",(char *) "fullyVisible", NULL
13936 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:VScrolledWindow_FindFirstFromBottom",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13937 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13938 if (!SWIG_IsOK(res1
)) {
13939 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13941 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13942 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13943 if (!SWIG_IsOK(ecode2
)) {
13944 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "2"" of type '" "size_t""'");
13946 arg2
= static_cast< size_t >(val2
);
13948 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
13949 if (!SWIG_IsOK(ecode3
)) {
13950 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "3"" of type '" "bool""'");
13952 arg3
= static_cast< bool >(val3
);
13955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13956 result
= (size_t)(arg1
)->FindFirstFromBottom(arg2
,arg3
);
13957 wxPyEndAllowThreads(__tstate
);
13958 if (PyErr_Occurred()) SWIG_fail
;
13960 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13967 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLinesHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13968 PyObject
*resultobj
= 0;
13969 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13979 PyObject
* obj0
= 0 ;
13980 PyObject
* obj1
= 0 ;
13981 PyObject
* obj2
= 0 ;
13982 char * kwnames
[] = {
13983 (char *) "self",(char *) "lineMin",(char *) "lineMax", NULL
13986 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_GetLinesHeight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13987 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13988 if (!SWIG_IsOK(res1
)) {
13989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13991 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13992 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13993 if (!SWIG_IsOK(ecode2
)) {
13994 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "2"" of type '" "size_t""'");
13996 arg2
= static_cast< size_t >(val2
);
13997 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
13998 if (!SWIG_IsOK(ecode3
)) {
13999 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "3"" of type '" "size_t""'");
14001 arg3
= static_cast< size_t >(val3
);
14003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14004 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->GetLinesHeight(arg2
,arg3
);
14005 wxPyEndAllowThreads(__tstate
);
14006 if (PyErr_Occurred()) SWIG_fail
;
14008 resultobj
= SWIG_From_int(static_cast< int >(result
));
14015 SWIGINTERN PyObject
*VScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14017 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14018 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_NewClientData(obj
));
14019 return SWIG_Py_Void();
14022 SWIGINTERN PyObject
*VScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14023 return SWIG_Python_InitShadowInstance(args
);
14026 SWIGINTERN
int VListBoxNameStr_set(PyObject
*) {
14027 SWIG_Error(SWIG_AttributeError
,"Variable VListBoxNameStr is read-only.");
14032 SWIGINTERN PyObject
*VListBoxNameStr_get(void) {
14033 PyObject
*pyobj
= 0;
14037 pyobj
= PyUnicode_FromWideChar((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len());
14039 pyobj
= PyString_FromStringAndSize((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len());
14046 SWIGINTERN PyObject
*_wrap_new_VListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14047 PyObject
*resultobj
= 0;
14048 wxWindow
*arg1
= (wxWindow
*) 0 ;
14049 int arg2
= (int) wxID_ANY
;
14050 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14051 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14052 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14053 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14054 long arg5
= (long) 0 ;
14055 wxString
const &arg6_defvalue
= wxPyVListBoxNameStr
;
14056 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
14057 wxPyVListBox
*result
= 0 ;
14066 bool temp6
= false ;
14067 PyObject
* obj0
= 0 ;
14068 PyObject
* obj1
= 0 ;
14069 PyObject
* obj2
= 0 ;
14070 PyObject
* obj3
= 0 ;
14071 PyObject
* obj4
= 0 ;
14072 PyObject
* obj5
= 0 ;
14073 char * kwnames
[] = {
14074 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
14077 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
14078 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14079 if (!SWIG_IsOK(res1
)) {
14080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_VListBox" "', expected argument " "1"" of type '" "wxWindow *""'");
14082 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14084 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14085 if (!SWIG_IsOK(ecode2
)) {
14086 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_VListBox" "', expected argument " "2"" of type '" "int""'");
14088 arg2
= static_cast< int >(val2
);
14093 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14099 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14103 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14104 if (!SWIG_IsOK(ecode5
)) {
14105 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_VListBox" "', expected argument " "5"" of type '" "long""'");
14107 arg5
= static_cast< long >(val5
);
14111 arg6
= wxString_in_helper(obj5
);
14112 if (arg6
== NULL
) SWIG_fail
;
14117 if (!wxPyCheckForApp()) SWIG_fail
;
14118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14119 result
= (wxPyVListBox
*)new wxPyVListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
14120 wxPyEndAllowThreads(__tstate
);
14121 if (PyErr_Occurred()) SWIG_fail
;
14123 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_NEW
| 0 );
14138 SWIGINTERN PyObject
*_wrap_new_PreVListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14139 PyObject
*resultobj
= 0;
14140 wxPyVListBox
*result
= 0 ;
14142 if (!SWIG_Python_UnpackTuple(args
,"new_PreVListBox",0,0,0)) SWIG_fail
;
14144 if (!wxPyCheckForApp()) SWIG_fail
;
14145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14146 result
= (wxPyVListBox
*)new wxPyVListBox();
14147 wxPyEndAllowThreads(__tstate
);
14148 if (PyErr_Occurred()) SWIG_fail
;
14150 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_OWN
| 0 );
14157 SWIGINTERN PyObject
*_wrap_VListBox__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14158 PyObject
*resultobj
= 0;
14159 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14160 PyObject
*arg2
= (PyObject
*) 0 ;
14161 PyObject
*arg3
= (PyObject
*) 0 ;
14164 PyObject
* obj0
= 0 ;
14165 PyObject
* obj1
= 0 ;
14166 PyObject
* obj2
= 0 ;
14167 char * kwnames
[] = {
14168 (char *) "self",(char *) "self",(char *) "_class", NULL
14171 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14172 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14173 if (!SWIG_IsOK(res1
)) {
14174 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14176 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14180 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14181 (arg1
)->_setCallbackInfo(arg2
,arg3
);
14182 wxPyEndAllowThreads(__tstate
);
14183 if (PyErr_Occurred()) SWIG_fail
;
14185 resultobj
= SWIG_Py_Void();
14192 SWIGINTERN PyObject
*_wrap_VListBox_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14193 PyObject
*resultobj
= 0;
14194 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14195 wxWindow
*arg2
= (wxWindow
*) 0 ;
14196 int arg3
= (int) wxID_ANY
;
14197 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
14198 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
14199 wxSize
const &arg5_defvalue
= wxDefaultSize
;
14200 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
14201 long arg6
= (long) 0 ;
14202 wxString
const &arg7_defvalue
= wxPyVListBoxNameStr
;
14203 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
14215 bool temp7
= false ;
14216 PyObject
* obj0
= 0 ;
14217 PyObject
* obj1
= 0 ;
14218 PyObject
* obj2
= 0 ;
14219 PyObject
* obj3
= 0 ;
14220 PyObject
* obj4
= 0 ;
14221 PyObject
* obj5
= 0 ;
14222 PyObject
* obj6
= 0 ;
14223 char * kwnames
[] = {
14224 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
14227 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
14228 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14229 if (!SWIG_IsOK(res1
)) {
14230 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Create" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14232 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14233 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14234 if (!SWIG_IsOK(res2
)) {
14235 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
14237 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14239 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14240 if (!SWIG_IsOK(ecode3
)) {
14241 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_Create" "', expected argument " "3"" of type '" "int""'");
14243 arg3
= static_cast< int >(val3
);
14248 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
14254 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
14258 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
14259 if (!SWIG_IsOK(ecode6
)) {
14260 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "VListBox_Create" "', expected argument " "6"" of type '" "long""'");
14262 arg6
= static_cast< long >(val6
);
14266 arg7
= wxString_in_helper(obj6
);
14267 if (arg7
== NULL
) SWIG_fail
;
14272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14273 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
14274 wxPyEndAllowThreads(__tstate
);
14275 if (PyErr_Occurred()) SWIG_fail
;
14278 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14294 SWIGINTERN PyObject
*_wrap_VListBox_GetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14295 PyObject
*resultobj
= 0;
14296 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14300 PyObject
*swig_obj
[1] ;
14302 if (!args
) SWIG_fail
;
14303 swig_obj
[0] = args
;
14304 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14305 if (!SWIG_IsOK(res1
)) {
14306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetItemCount" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14308 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14311 result
= (size_t)((wxPyVListBox
const *)arg1
)->GetItemCount();
14312 wxPyEndAllowThreads(__tstate
);
14313 if (PyErr_Occurred()) SWIG_fail
;
14315 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14322 SWIGINTERN PyObject
*_wrap_VListBox_HasMultipleSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14323 PyObject
*resultobj
= 0;
14324 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14328 PyObject
*swig_obj
[1] ;
14330 if (!args
) SWIG_fail
;
14331 swig_obj
[0] = args
;
14332 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14333 if (!SWIG_IsOK(res1
)) {
14334 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_HasMultipleSelection" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14336 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14339 result
= (bool)((wxPyVListBox
const *)arg1
)->HasMultipleSelection();
14340 wxPyEndAllowThreads(__tstate
);
14341 if (PyErr_Occurred()) SWIG_fail
;
14344 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14352 SWIGINTERN PyObject
*_wrap_VListBox_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14353 PyObject
*resultobj
= 0;
14354 wxPyVListBox
*arg1
= (wxPyVListBox
*) 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_wxPyVListBox
, 0 | 0 );
14363 if (!SWIG_IsOK(res1
)) {
14364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelection" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14366 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14369 result
= (int)((wxPyVListBox
const *)arg1
)->GetSelection();
14370 wxPyEndAllowThreads(__tstate
);
14371 if (PyErr_Occurred()) SWIG_fail
;
14373 resultobj
= SWIG_From_int(static_cast< int >(result
));
14380 SWIGINTERN PyObject
*_wrap_VListBox_IsCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14381 PyObject
*resultobj
= 0;
14382 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14389 PyObject
* obj0
= 0 ;
14390 PyObject
* obj1
= 0 ;
14391 char * kwnames
[] = {
14392 (char *) "self",(char *) "item", NULL
14395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsCurrent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14397 if (!SWIG_IsOK(res1
)) {
14398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_IsCurrent" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14400 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14401 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14402 if (!SWIG_IsOK(ecode2
)) {
14403 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_IsCurrent" "', expected argument " "2"" of type '" "size_t""'");
14405 arg2
= static_cast< size_t >(val2
);
14407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14408 result
= (bool)((wxPyVListBox
const *)arg1
)->IsCurrent(arg2
);
14409 wxPyEndAllowThreads(__tstate
);
14410 if (PyErr_Occurred()) SWIG_fail
;
14413 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14421 SWIGINTERN PyObject
*_wrap_VListBox_IsSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14422 PyObject
*resultobj
= 0;
14423 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14430 PyObject
* obj0
= 0 ;
14431 PyObject
* obj1
= 0 ;
14432 char * kwnames
[] = {
14433 (char *) "self",(char *) "item", NULL
14436 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsSelected",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14437 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14438 if (!SWIG_IsOK(res1
)) {
14439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_IsSelected" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14441 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14442 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14443 if (!SWIG_IsOK(ecode2
)) {
14444 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_IsSelected" "', expected argument " "2"" of type '" "size_t""'");
14446 arg2
= static_cast< size_t >(val2
);
14448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14449 result
= (bool)((wxPyVListBox
const *)arg1
)->IsSelected(arg2
);
14450 wxPyEndAllowThreads(__tstate
);
14451 if (PyErr_Occurred()) SWIG_fail
;
14454 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14462 SWIGINTERN PyObject
*_wrap_VListBox_GetSelectedCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14463 PyObject
*resultobj
= 0;
14464 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14468 PyObject
*swig_obj
[1] ;
14470 if (!args
) SWIG_fail
;
14471 swig_obj
[0] = args
;
14472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14473 if (!SWIG_IsOK(res1
)) {
14474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelectedCount" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14476 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14479 result
= (size_t)((wxPyVListBox
const *)arg1
)->GetSelectedCount();
14480 wxPyEndAllowThreads(__tstate
);
14481 if (PyErr_Occurred()) SWIG_fail
;
14483 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14490 SWIGINTERN PyObject
*_wrap_VListBox_GetFirstSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14491 PyObject
*resultobj
= 0;
14492 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14493 PyObject
*result
= 0 ;
14496 PyObject
*swig_obj
[1] ;
14498 if (!args
) SWIG_fail
;
14499 swig_obj
[0] = args
;
14500 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14501 if (!SWIG_IsOK(res1
)) {
14502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetFirstSelected" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14504 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14507 result
= (PyObject
*)wxPyVListBox_GetFirstSelected(arg1
);
14508 wxPyEndAllowThreads(__tstate
);
14509 if (PyErr_Occurred()) SWIG_fail
;
14511 resultobj
= result
;
14518 SWIGINTERN PyObject
*_wrap_VListBox_GetNextSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14519 PyObject
*resultobj
= 0;
14520 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14521 unsigned long arg2
;
14522 PyObject
*result
= 0 ;
14525 unsigned long val2
;
14527 PyObject
* obj0
= 0 ;
14528 PyObject
* obj1
= 0 ;
14529 char * kwnames
[] = {
14530 (char *) "self",(char *) "cookie", NULL
14533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_GetNextSelected",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14535 if (!SWIG_IsOK(res1
)) {
14536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetNextSelected" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14538 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14539 ecode2
= SWIG_AsVal_unsigned_SS_long(obj1
, &val2
);
14540 if (!SWIG_IsOK(ecode2
)) {
14541 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_GetNextSelected" "', expected argument " "2"" of type '" "unsigned long""'");
14543 arg2
= static_cast< unsigned long >(val2
);
14545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14546 result
= (PyObject
*)wxPyVListBox_GetNextSelected(arg1
,arg2
);
14547 wxPyEndAllowThreads(__tstate
);
14548 if (PyErr_Occurred()) SWIG_fail
;
14550 resultobj
= result
;
14557 SWIGINTERN PyObject
*_wrap_VListBox_GetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14558 PyObject
*resultobj
= 0;
14559 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14563 PyObject
*swig_obj
[1] ;
14565 if (!args
) SWIG_fail
;
14566 swig_obj
[0] = args
;
14567 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14568 if (!SWIG_IsOK(res1
)) {
14569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetMargins" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14571 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14574 result
= ((wxPyVListBox
const *)arg1
)->GetMargins();
14575 wxPyEndAllowThreads(__tstate
);
14576 if (PyErr_Occurred()) SWIG_fail
;
14578 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
14585 SWIGINTERN PyObject
*_wrap_VListBox_GetSelectionBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14586 PyObject
*resultobj
= 0;
14587 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14588 wxColour
*result
= 0 ;
14591 PyObject
*swig_obj
[1] ;
14593 if (!args
) SWIG_fail
;
14594 swig_obj
[0] = args
;
14595 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14596 if (!SWIG_IsOK(res1
)) {
14597 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelectionBackground" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14599 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14603 wxColour
const &_result_ref
= ((wxPyVListBox
const *)arg1
)->GetSelectionBackground();
14604 result
= (wxColour
*) &_result_ref
;
14606 wxPyEndAllowThreads(__tstate
);
14607 if (PyErr_Occurred()) SWIG_fail
;
14609 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
14616 SWIGINTERN PyObject
*_wrap_VListBox_SetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14617 PyObject
*resultobj
= 0;
14618 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14624 PyObject
* obj0
= 0 ;
14625 PyObject
* obj1
= 0 ;
14626 char * kwnames
[] = {
14627 (char *) "self",(char *) "count", NULL
14630 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14631 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14632 if (!SWIG_IsOK(res1
)) {
14633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetItemCount" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14635 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14636 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14637 if (!SWIG_IsOK(ecode2
)) {
14638 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetItemCount" "', expected argument " "2"" of type '" "size_t""'");
14640 arg2
= static_cast< size_t >(val2
);
14642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14643 (arg1
)->SetItemCount(arg2
);
14644 wxPyEndAllowThreads(__tstate
);
14645 if (PyErr_Occurred()) SWIG_fail
;
14647 resultobj
= SWIG_Py_Void();
14654 SWIGINTERN PyObject
*_wrap_VListBox_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14655 PyObject
*resultobj
= 0;
14656 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14659 PyObject
*swig_obj
[1] ;
14661 if (!args
) SWIG_fail
;
14662 swig_obj
[0] = args
;
14663 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14664 if (!SWIG_IsOK(res1
)) {
14665 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Clear" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14667 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14671 wxPyEndAllowThreads(__tstate
);
14672 if (PyErr_Occurred()) SWIG_fail
;
14674 resultobj
= SWIG_Py_Void();
14681 SWIGINTERN PyObject
*_wrap_VListBox_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14682 PyObject
*resultobj
= 0;
14683 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14689 PyObject
* obj0
= 0 ;
14690 PyObject
* obj1
= 0 ;
14691 char * kwnames
[] = {
14692 (char *) "self",(char *) "selection", NULL
14695 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14696 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14697 if (!SWIG_IsOK(res1
)) {
14698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetSelection" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14700 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14701 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14702 if (!SWIG_IsOK(ecode2
)) {
14703 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetSelection" "', expected argument " "2"" of type '" "int""'");
14705 arg2
= static_cast< int >(val2
);
14707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14708 (arg1
)->SetSelection(arg2
);
14709 wxPyEndAllowThreads(__tstate
);
14710 if (PyErr_Occurred()) SWIG_fail
;
14712 resultobj
= SWIG_Py_Void();
14719 SWIGINTERN PyObject
*_wrap_VListBox_Select(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14720 PyObject
*resultobj
= 0;
14721 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14723 bool arg3
= (bool) true ;
14731 PyObject
* obj0
= 0 ;
14732 PyObject
* obj1
= 0 ;
14733 PyObject
* obj2
= 0 ;
14734 char * kwnames
[] = {
14735 (char *) "self",(char *) "item",(char *) "select", NULL
14738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:VListBox_Select",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14740 if (!SWIG_IsOK(res1
)) {
14741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Select" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14743 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14744 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14745 if (!SWIG_IsOK(ecode2
)) {
14746 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_Select" "', expected argument " "2"" of type '" "size_t""'");
14748 arg2
= static_cast< size_t >(val2
);
14750 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
14751 if (!SWIG_IsOK(ecode3
)) {
14752 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_Select" "', expected argument " "3"" of type '" "bool""'");
14754 arg3
= static_cast< bool >(val3
);
14757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14758 result
= (bool)(arg1
)->Select(arg2
,arg3
);
14759 wxPyEndAllowThreads(__tstate
);
14760 if (PyErr_Occurred()) SWIG_fail
;
14763 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14771 SWIGINTERN PyObject
*_wrap_VListBox_SelectRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14772 PyObject
*resultobj
= 0;
14773 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14783 PyObject
* obj0
= 0 ;
14784 PyObject
* obj1
= 0 ;
14785 PyObject
* obj2
= 0 ;
14786 char * kwnames
[] = {
14787 (char *) "self",(char *) "_from",(char *) "to", NULL
14790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SelectRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14792 if (!SWIG_IsOK(res1
)) {
14793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SelectRange" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14795 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14796 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14797 if (!SWIG_IsOK(ecode2
)) {
14798 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SelectRange" "', expected argument " "2"" of type '" "size_t""'");
14800 arg2
= static_cast< size_t >(val2
);
14801 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
14802 if (!SWIG_IsOK(ecode3
)) {
14803 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_SelectRange" "', expected argument " "3"" of type '" "size_t""'");
14805 arg3
= static_cast< size_t >(val3
);
14807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14808 result
= (bool)(arg1
)->SelectRange(arg2
,arg3
);
14809 wxPyEndAllowThreads(__tstate
);
14810 if (PyErr_Occurred()) SWIG_fail
;
14813 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14821 SWIGINTERN PyObject
*_wrap_VListBox_Toggle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14822 PyObject
*resultobj
= 0;
14823 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14829 PyObject
* obj0
= 0 ;
14830 PyObject
* obj1
= 0 ;
14831 char * kwnames
[] = {
14832 (char *) "self",(char *) "item", NULL
14835 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_Toggle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14836 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14837 if (!SWIG_IsOK(res1
)) {
14838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Toggle" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14840 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14841 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14842 if (!SWIG_IsOK(ecode2
)) {
14843 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_Toggle" "', expected argument " "2"" of type '" "size_t""'");
14845 arg2
= static_cast< size_t >(val2
);
14847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14848 (arg1
)->Toggle(arg2
);
14849 wxPyEndAllowThreads(__tstate
);
14850 if (PyErr_Occurred()) SWIG_fail
;
14852 resultobj
= SWIG_Py_Void();
14859 SWIGINTERN PyObject
*_wrap_VListBox_SelectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14860 PyObject
*resultobj
= 0;
14861 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14865 PyObject
*swig_obj
[1] ;
14867 if (!args
) SWIG_fail
;
14868 swig_obj
[0] = args
;
14869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14870 if (!SWIG_IsOK(res1
)) {
14871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SelectAll" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14873 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14876 result
= (bool)(arg1
)->SelectAll();
14877 wxPyEndAllowThreads(__tstate
);
14878 if (PyErr_Occurred()) SWIG_fail
;
14881 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14889 SWIGINTERN PyObject
*_wrap_VListBox_DeselectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14890 PyObject
*resultobj
= 0;
14891 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14895 PyObject
*swig_obj
[1] ;
14897 if (!args
) SWIG_fail
;
14898 swig_obj
[0] = args
;
14899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14900 if (!SWIG_IsOK(res1
)) {
14901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_DeselectAll" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14903 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14906 result
= (bool)(arg1
)->DeselectAll();
14907 wxPyEndAllowThreads(__tstate
);
14908 if (PyErr_Occurred()) SWIG_fail
;
14911 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14919 SWIGINTERN PyObject
*_wrap_VListBox_SetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14920 PyObject
*resultobj
= 0;
14921 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14922 wxPoint
*arg2
= 0 ;
14926 PyObject
* obj0
= 0 ;
14927 PyObject
* obj1
= 0 ;
14928 char * kwnames
[] = {
14929 (char *) "self",(char *) "pt", NULL
14932 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14933 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14934 if (!SWIG_IsOK(res1
)) {
14935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetMargins" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14937 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14940 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
14943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14944 (arg1
)->SetMargins((wxPoint
const &)*arg2
);
14945 wxPyEndAllowThreads(__tstate
);
14946 if (PyErr_Occurred()) SWIG_fail
;
14948 resultobj
= SWIG_Py_Void();
14955 SWIGINTERN PyObject
*_wrap_VListBox_SetMarginsXY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14956 PyObject
*resultobj
= 0;
14957 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14966 PyObject
* obj0
= 0 ;
14967 PyObject
* obj1
= 0 ;
14968 PyObject
* obj2
= 0 ;
14969 char * kwnames
[] = {
14970 (char *) "self",(char *) "x",(char *) "y", NULL
14973 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SetMarginsXY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14974 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14975 if (!SWIG_IsOK(res1
)) {
14976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14978 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14979 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14980 if (!SWIG_IsOK(ecode2
)) {
14981 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "2"" of type '" "int""'");
14983 arg2
= static_cast< int >(val2
);
14984 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14985 if (!SWIG_IsOK(ecode3
)) {
14986 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "3"" of type '" "int""'");
14988 arg3
= static_cast< int >(val3
);
14990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14991 (arg1
)->SetMargins(arg2
,arg3
);
14992 wxPyEndAllowThreads(__tstate
);
14993 if (PyErr_Occurred()) SWIG_fail
;
14995 resultobj
= SWIG_Py_Void();
15002 SWIGINTERN PyObject
*_wrap_VListBox_SetSelectionBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15003 PyObject
*resultobj
= 0;
15004 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15005 wxColour
*arg2
= 0 ;
15009 PyObject
* obj0
= 0 ;
15010 PyObject
* obj1
= 0 ;
15011 char * kwnames
[] = {
15012 (char *) "self",(char *) "col", NULL
15015 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelectionBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15016 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15017 if (!SWIG_IsOK(res1
)) {
15018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetSelectionBackground" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15020 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15023 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
15026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15027 (arg1
)->SetSelectionBackground((wxColour
const &)*arg2
);
15028 wxPyEndAllowThreads(__tstate
);
15029 if (PyErr_Occurred()) SWIG_fail
;
15031 resultobj
= SWIG_Py_Void();
15038 SWIGINTERN PyObject
*_wrap_VListBox_OnDrawSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15039 PyObject
*resultobj
= 0;
15040 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15051 PyObject
* obj0
= 0 ;
15052 PyObject
* obj1
= 0 ;
15053 PyObject
* obj2
= 0 ;
15054 PyObject
* obj3
= 0 ;
15055 char * kwnames
[] = {
15056 (char *) "self",(char *) "dc",(char *) "rect",(char *) "n", NULL
15059 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:VListBox_OnDrawSeparator",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15060 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15061 if (!SWIG_IsOK(res1
)) {
15062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
15064 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15065 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
15066 if (!SWIG_IsOK(res2
)) {
15067 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "2"" of type '" "wxDC &""'");
15070 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "VListBox_OnDrawSeparator" "', expected argument " "2"" of type '" "wxDC &""'");
15072 arg2
= reinterpret_cast< wxDC
* >(argp2
);
15075 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
15077 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
15078 if (!SWIG_IsOK(ecode4
)) {
15079 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "4"" of type '" "size_t""'");
15081 arg4
= static_cast< size_t >(val4
);
15083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15084 ((wxPyVListBox
const *)arg1
)->OnDrawSeparator(*arg2
,*arg3
,arg4
);
15085 wxPyEndAllowThreads(__tstate
);
15086 if (PyErr_Occurred()) SWIG_fail
;
15088 resultobj
= SWIG_Py_Void();
15095 SWIGINTERN PyObject
*_wrap_VListBox_OnDrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15096 PyObject
*resultobj
= 0;
15097 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15108 PyObject
* obj0
= 0 ;
15109 PyObject
* obj1
= 0 ;
15110 PyObject
* obj2
= 0 ;
15111 PyObject
* obj3
= 0 ;
15112 char * kwnames
[] = {
15113 (char *) "self",(char *) "dc",(char *) "rect",(char *) "n", NULL
15116 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:VListBox_OnDrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15117 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15118 if (!SWIG_IsOK(res1
)) {
15119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
15121 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15122 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
15123 if (!SWIG_IsOK(res2
)) {
15124 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
15127 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "VListBox_OnDrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
15129 arg2
= reinterpret_cast< wxDC
* >(argp2
);
15132 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
15134 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
15135 if (!SWIG_IsOK(ecode4
)) {
15136 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "4"" of type '" "size_t""'");
15138 arg4
= static_cast< size_t >(val4
);
15140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15141 ((wxPyVListBox
const *)arg1
)->OnDrawBackground(*arg2
,(wxRect
const &)*arg3
,arg4
);
15142 wxPyEndAllowThreads(__tstate
);
15143 if (PyErr_Occurred()) SWIG_fail
;
15145 resultobj
= SWIG_Py_Void();
15152 SWIGINTERN PyObject
*VListBox_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15154 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15155 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyVListBox
, SWIG_NewClientData(obj
));
15156 return SWIG_Py_Void();
15159 SWIGINTERN PyObject
*VListBox_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15160 return SWIG_Python_InitShadowInstance(args
);
15163 SWIGINTERN PyObject
*_wrap_new_HtmlListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15164 PyObject
*resultobj
= 0;
15165 wxWindow
*arg1
= (wxWindow
*) 0 ;
15166 int arg2
= (int) wxID_ANY
;
15167 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
15168 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
15169 wxSize
const &arg4_defvalue
= wxDefaultSize
;
15170 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
15171 long arg5
= (long) 0 ;
15172 wxString
const &arg6_defvalue
= wxPyVListBoxNameStr
;
15173 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
15174 wxPyHtmlListBox
*result
= 0 ;
15183 bool temp6
= false ;
15184 PyObject
* obj0
= 0 ;
15185 PyObject
* obj1
= 0 ;
15186 PyObject
* obj2
= 0 ;
15187 PyObject
* obj3
= 0 ;
15188 PyObject
* obj4
= 0 ;
15189 PyObject
* obj5
= 0 ;
15190 char * kwnames
[] = {
15191 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15194 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15195 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15196 if (!SWIG_IsOK(res1
)) {
15197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_HtmlListBox" "', expected argument " "1"" of type '" "wxWindow *""'");
15199 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
15201 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15202 if (!SWIG_IsOK(ecode2
)) {
15203 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_HtmlListBox" "', expected argument " "2"" of type '" "int""'");
15205 arg2
= static_cast< int >(val2
);
15210 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
15216 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
15220 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
15221 if (!SWIG_IsOK(ecode5
)) {
15222 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_HtmlListBox" "', expected argument " "5"" of type '" "long""'");
15224 arg5
= static_cast< long >(val5
);
15228 arg6
= wxString_in_helper(obj5
);
15229 if (arg6
== NULL
) SWIG_fail
;
15234 if (!wxPyCheckForApp()) SWIG_fail
;
15235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15236 result
= (wxPyHtmlListBox
*)new wxPyHtmlListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
15237 wxPyEndAllowThreads(__tstate
);
15238 if (PyErr_Occurred()) SWIG_fail
;
15240 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_NEW
| 0 );
15255 SWIGINTERN PyObject
*_wrap_new_PreHtmlListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15256 PyObject
*resultobj
= 0;
15257 wxPyHtmlListBox
*result
= 0 ;
15259 if (!SWIG_Python_UnpackTuple(args
,"new_PreHtmlListBox",0,0,0)) SWIG_fail
;
15261 if (!wxPyCheckForApp()) SWIG_fail
;
15262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15263 result
= (wxPyHtmlListBox
*)new wxPyHtmlListBox();
15264 wxPyEndAllowThreads(__tstate
);
15265 if (PyErr_Occurred()) SWIG_fail
;
15267 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_OWN
| 0 );
15274 SWIGINTERN PyObject
*_wrap_HtmlListBox__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15275 PyObject
*resultobj
= 0;
15276 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15277 PyObject
*arg2
= (PyObject
*) 0 ;
15278 PyObject
*arg3
= (PyObject
*) 0 ;
15281 PyObject
* obj0
= 0 ;
15282 PyObject
* obj1
= 0 ;
15283 PyObject
* obj2
= 0 ;
15284 char * kwnames
[] = {
15285 (char *) "self",(char *) "self",(char *) "_class", NULL
15288 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15289 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15290 if (!SWIG_IsOK(res1
)) {
15291 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15293 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15297 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15298 (arg1
)->_setCallbackInfo(arg2
,arg3
);
15299 wxPyEndAllowThreads(__tstate
);
15300 if (PyErr_Occurred()) SWIG_fail
;
15302 resultobj
= SWIG_Py_Void();
15309 SWIGINTERN PyObject
*_wrap_HtmlListBox_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15310 PyObject
*resultobj
= 0;
15311 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15312 wxWindow
*arg2
= (wxWindow
*) 0 ;
15313 int arg3
= (int) wxID_ANY
;
15314 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15315 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15316 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15317 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15318 long arg6
= (long) 0 ;
15319 wxString
const &arg7_defvalue
= wxPyVListBoxNameStr
;
15320 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
15332 bool temp7
= false ;
15333 PyObject
* obj0
= 0 ;
15334 PyObject
* obj1
= 0 ;
15335 PyObject
* obj2
= 0 ;
15336 PyObject
* obj3
= 0 ;
15337 PyObject
* obj4
= 0 ;
15338 PyObject
* obj5
= 0 ;
15339 PyObject
* obj6
= 0 ;
15340 char * kwnames
[] = {
15341 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
15345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15346 if (!SWIG_IsOK(res1
)) {
15347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_Create" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15349 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15350 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15351 if (!SWIG_IsOK(res2
)) {
15352 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "HtmlListBox_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
15354 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15356 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15357 if (!SWIG_IsOK(ecode3
)) {
15358 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "HtmlListBox_Create" "', expected argument " "3"" of type '" "int""'");
15360 arg3
= static_cast< int >(val3
);
15365 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15371 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15375 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
15376 if (!SWIG_IsOK(ecode6
)) {
15377 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "HtmlListBox_Create" "', expected argument " "6"" of type '" "long""'");
15379 arg6
= static_cast< long >(val6
);
15383 arg7
= wxString_in_helper(obj6
);
15384 if (arg7
== NULL
) SWIG_fail
;
15389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15390 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
15391 wxPyEndAllowThreads(__tstate
);
15392 if (PyErr_Occurred()) SWIG_fail
;
15395 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15411 SWIGINTERN PyObject
*_wrap_HtmlListBox_SetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15412 PyObject
*resultobj
= 0;
15413 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15419 PyObject
* obj0
= 0 ;
15420 PyObject
* obj1
= 0 ;
15421 char * kwnames
[] = {
15422 (char *) "self",(char *) "count", NULL
15425 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15426 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15427 if (!SWIG_IsOK(res1
)) {
15428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_SetItemCount" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15430 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15431 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15432 if (!SWIG_IsOK(ecode2
)) {
15433 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "HtmlListBox_SetItemCount" "', expected argument " "2"" of type '" "size_t""'");
15435 arg2
= static_cast< size_t >(val2
);
15437 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15438 (arg1
)->SetItemCount(arg2
);
15439 wxPyEndAllowThreads(__tstate
);
15440 if (PyErr_Occurred()) SWIG_fail
;
15442 resultobj
= SWIG_Py_Void();
15449 SWIGINTERN PyObject
*_wrap_HtmlListBox_GetFileSystem(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15450 PyObject
*resultobj
= 0;
15451 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15452 wxFileSystem
*result
= 0 ;
15455 PyObject
*swig_obj
[1] ;
15457 if (!args
) SWIG_fail
;
15458 swig_obj
[0] = args
;
15459 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15460 if (!SWIG_IsOK(res1
)) {
15461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_GetFileSystem" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15463 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15465 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15467 wxFileSystem
&_result_ref
= (arg1
)->GetFileSystem();
15468 result
= (wxFileSystem
*) &_result_ref
;
15470 wxPyEndAllowThreads(__tstate
);
15471 if (PyErr_Occurred()) SWIG_fail
;
15473 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileSystem
, 0 | 0 );
15480 SWIGINTERN PyObject
*_wrap_HtmlListBox_OnLinkClicked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15481 PyObject
*resultobj
= 0;
15482 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15484 wxHtmlLinkInfo
*arg3
= 0 ;
15491 PyObject
* obj0
= 0 ;
15492 PyObject
* obj1
= 0 ;
15493 PyObject
* obj2
= 0 ;
15494 char * kwnames
[] = {
15495 (char *) "self",(char *) "n",(char *) "link", NULL
15498 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlListBox_OnLinkClicked",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15499 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15500 if (!SWIG_IsOK(res1
)) {
15501 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15503 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15504 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15505 if (!SWIG_IsOK(ecode2
)) {
15506 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "2"" of type '" "size_t""'");
15508 arg2
= static_cast< size_t >(val2
);
15509 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxHtmlLinkInfo
, 0 | 0);
15510 if (!SWIG_IsOK(res3
)) {
15511 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "3"" of type '" "wxHtmlLinkInfo const &""'");
15514 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "3"" of type '" "wxHtmlLinkInfo const &""'");
15516 arg3
= reinterpret_cast< wxHtmlLinkInfo
* >(argp3
);
15518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15519 (arg1
)->OnLinkClicked(arg2
,(wxHtmlLinkInfo
const &)*arg3
);
15520 wxPyEndAllowThreads(__tstate
);
15521 if (PyErr_Occurred()) SWIG_fail
;
15523 resultobj
= SWIG_Py_Void();
15530 SWIGINTERN PyObject
*HtmlListBox_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15532 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15533 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyHtmlListBox
, SWIG_NewClientData(obj
));
15534 return SWIG_Py_Void();
15537 SWIGINTERN PyObject
*HtmlListBox_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15538 return SWIG_Python_InitShadowInstance(args
);
15541 SWIGINTERN PyObject
*_wrap_new_TaskBarIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15542 PyObject
*resultobj
= 0;
15543 wxPyTaskBarIcon
*result
= 0 ;
15545 if (!SWIG_Python_UnpackTuple(args
,"new_TaskBarIcon",0,0,0)) SWIG_fail
;
15547 if (!wxPyCheckForApp()) SWIG_fail
;
15548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15549 result
= (wxPyTaskBarIcon
*)new wxPyTaskBarIcon();
15550 wxPyEndAllowThreads(__tstate
);
15551 if (PyErr_Occurred()) SWIG_fail
;
15553 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_NEW
| 0 );
15560 SWIGINTERN PyObject
*_wrap_delete_TaskBarIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15561 PyObject
*resultobj
= 0;
15562 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15565 PyObject
*swig_obj
[1] ;
15567 if (!args
) SWIG_fail
;
15568 swig_obj
[0] = args
;
15569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_DISOWN
| 0 );
15570 if (!SWIG_IsOK(res1
)) {
15571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TaskBarIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15573 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15578 wxPyEndAllowThreads(__tstate
);
15579 if (PyErr_Occurred()) SWIG_fail
;
15581 resultobj
= SWIG_Py_Void();
15588 SWIGINTERN PyObject
*_wrap_TaskBarIcon__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15589 PyObject
*resultobj
= 0;
15590 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15591 PyObject
*arg2
= (PyObject
*) 0 ;
15592 PyObject
*arg3
= (PyObject
*) 0 ;
15598 PyObject
* obj0
= 0 ;
15599 PyObject
* obj1
= 0 ;
15600 PyObject
* obj2
= 0 ;
15601 PyObject
* obj3
= 0 ;
15602 char * kwnames
[] = {
15603 (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL
15606 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TaskBarIcon__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15607 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15608 if (!SWIG_IsOK(res1
)) {
15609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15611 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15614 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
15615 if (!SWIG_IsOK(ecode4
)) {
15616 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TaskBarIcon__setCallbackInfo" "', expected argument " "4"" of type '" "int""'");
15618 arg4
= static_cast< int >(val4
);
15620 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15621 (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
);
15622 wxPyEndAllowThreads(__tstate
);
15623 if (PyErr_Occurred()) SWIG_fail
;
15625 resultobj
= SWIG_Py_Void();
15632 SWIGINTERN PyObject
*_wrap_TaskBarIcon_Destroy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15633 PyObject
*resultobj
= 0;
15634 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15637 PyObject
*swig_obj
[1] ;
15639 if (!args
) SWIG_fail
;
15640 swig_obj
[0] = args
;
15641 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15642 if (!SWIG_IsOK(res1
)) {
15643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_Destroy" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15645 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15648 wxPyTaskBarIcon_Destroy(arg1
);
15649 wxPyEndAllowThreads(__tstate
);
15650 if (PyErr_Occurred()) SWIG_fail
;
15652 resultobj
= SWIG_Py_Void();
15659 SWIGINTERN PyObject
*_wrap_TaskBarIcon_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15660 PyObject
*resultobj
= 0;
15661 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15665 PyObject
*swig_obj
[1] ;
15667 if (!args
) SWIG_fail
;
15668 swig_obj
[0] = args
;
15669 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15670 if (!SWIG_IsOK(res1
)) {
15671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_IsOk" "', expected argument " "1"" of type '" "wxPyTaskBarIcon const *""'");
15673 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15676 result
= (bool)((wxPyTaskBarIcon
const *)arg1
)->IsOk();
15677 wxPyEndAllowThreads(__tstate
);
15678 if (PyErr_Occurred()) SWIG_fail
;
15681 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15689 SWIGINTERN PyObject
*_wrap_TaskBarIcon_IsIconInstalled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15690 PyObject
*resultobj
= 0;
15691 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15695 PyObject
*swig_obj
[1] ;
15697 if (!args
) SWIG_fail
;
15698 swig_obj
[0] = args
;
15699 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15700 if (!SWIG_IsOK(res1
)) {
15701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_IsIconInstalled" "', expected argument " "1"" of type '" "wxPyTaskBarIcon const *""'");
15703 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15706 result
= (bool)((wxPyTaskBarIcon
const *)arg1
)->IsIconInstalled();
15707 wxPyEndAllowThreads(__tstate
);
15708 if (PyErr_Occurred()) SWIG_fail
;
15711 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15719 SWIGINTERN PyObject
*_wrap_TaskBarIcon_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15720 PyObject
*resultobj
= 0;
15721 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15723 wxString
const &arg3_defvalue
= wxPyEmptyString
;
15724 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
15730 bool temp3
= false ;
15731 PyObject
* obj0
= 0 ;
15732 PyObject
* obj1
= 0 ;
15733 PyObject
* obj2
= 0 ;
15734 char * kwnames
[] = {
15735 (char *) "self",(char *) "icon",(char *) "tooltip", NULL
15738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TaskBarIcon_SetIcon",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15740 if (!SWIG_IsOK(res1
)) {
15741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_SetIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15743 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15744 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
15745 if (!SWIG_IsOK(res2
)) {
15746 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TaskBarIcon_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
15749 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TaskBarIcon_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
15751 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
15754 arg3
= wxString_in_helper(obj2
);
15755 if (arg3
== NULL
) SWIG_fail
;
15760 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15761 result
= (bool)(arg1
)->SetIcon((wxIcon
const &)*arg2
,(wxString
const &)*arg3
);
15762 wxPyEndAllowThreads(__tstate
);
15763 if (PyErr_Occurred()) SWIG_fail
;
15766 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15782 SWIGINTERN PyObject
*_wrap_TaskBarIcon_RemoveIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15783 PyObject
*resultobj
= 0;
15784 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15788 PyObject
*swig_obj
[1] ;
15790 if (!args
) SWIG_fail
;
15791 swig_obj
[0] = args
;
15792 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15793 if (!SWIG_IsOK(res1
)) {
15794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_RemoveIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15796 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15799 result
= (bool)(arg1
)->RemoveIcon();
15800 wxPyEndAllowThreads(__tstate
);
15801 if (PyErr_Occurred()) SWIG_fail
;
15804 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15812 SWIGINTERN PyObject
*_wrap_TaskBarIcon_PopupMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15813 PyObject
*resultobj
= 0;
15814 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15815 wxMenu
*arg2
= (wxMenu
*) 0 ;
15821 PyObject
* obj0
= 0 ;
15822 PyObject
* obj1
= 0 ;
15823 char * kwnames
[] = {
15824 (char *) "self",(char *) "menu", NULL
15827 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TaskBarIcon_PopupMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15828 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15829 if (!SWIG_IsOK(res1
)) {
15830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_PopupMenu" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15832 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15833 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
15834 if (!SWIG_IsOK(res2
)) {
15835 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TaskBarIcon_PopupMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
15837 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
15839 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15840 result
= (bool)(arg1
)->PopupMenu(arg2
);
15841 wxPyEndAllowThreads(__tstate
);
15842 if (PyErr_Occurred()) SWIG_fail
;
15845 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15853 SWIGINTERN PyObject
*TaskBarIcon_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15855 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15856 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_NewClientData(obj
));
15857 return SWIG_Py_Void();
15860 SWIGINTERN PyObject
*TaskBarIcon_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15861 return SWIG_Python_InitShadowInstance(args
);
15864 SWIGINTERN PyObject
*_wrap_new_TaskBarIconEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15865 PyObject
*resultobj
= 0;
15867 wxTaskBarIcon
*arg2
= (wxTaskBarIcon
*) 0 ;
15868 wxTaskBarIconEvent
*result
= 0 ;
15873 PyObject
* obj0
= 0 ;
15874 PyObject
* obj1
= 0 ;
15875 char * kwnames
[] = {
15876 (char *) "evtType",(char *) "tbIcon", NULL
15879 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_TaskBarIconEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15880 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
15881 if (!SWIG_IsOK(ecode1
)) {
15882 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_TaskBarIconEvent" "', expected argument " "1"" of type '" "wxEventType""'");
15884 arg1
= static_cast< wxEventType
>(val1
);
15885 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTaskBarIcon
, 0 | 0 );
15886 if (!SWIG_IsOK(res2
)) {
15887 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_TaskBarIconEvent" "', expected argument " "2"" of type '" "wxTaskBarIcon *""'");
15889 arg2
= reinterpret_cast< wxTaskBarIcon
* >(argp2
);
15891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15892 result
= (wxTaskBarIconEvent
*)new wxTaskBarIconEvent(arg1
,arg2
);
15893 wxPyEndAllowThreads(__tstate
);
15894 if (PyErr_Occurred()) SWIG_fail
;
15896 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTaskBarIconEvent
, SWIG_POINTER_NEW
| 0 );
15903 SWIGINTERN PyObject
*TaskBarIconEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15905 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15906 SWIG_TypeNewClientData(SWIGTYPE_p_wxTaskBarIconEvent
, SWIG_NewClientData(obj
));
15907 return SWIG_Py_Void();
15910 SWIGINTERN PyObject
*TaskBarIconEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15911 return SWIG_Python_InitShadowInstance(args
);
15914 SWIGINTERN
int FileSelectorPromptStr_set(PyObject
*) {
15915 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorPromptStr is read-only.");
15920 SWIGINTERN PyObject
*FileSelectorPromptStr_get(void) {
15921 PyObject
*pyobj
= 0;
15925 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
15927 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
15934 SWIGINTERN
int DirSelectorPromptStr_set(PyObject
*) {
15935 SWIG_Error(SWIG_AttributeError
,"Variable DirSelectorPromptStr is read-only.");
15940 SWIGINTERN PyObject
*DirSelectorPromptStr_get(void) {
15941 PyObject
*pyobj
= 0;
15945 pyobj
= PyUnicode_FromWideChar((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
15947 pyobj
= PyString_FromStringAndSize((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
15954 SWIGINTERN
int DirDialogNameStr_set(PyObject
*) {
15955 SWIG_Error(SWIG_AttributeError
,"Variable DirDialogNameStr is read-only.");
15960 SWIGINTERN PyObject
*DirDialogNameStr_get(void) {
15961 PyObject
*pyobj
= 0;
15965 pyobj
= PyUnicode_FromWideChar((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len());
15967 pyobj
= PyString_FromStringAndSize((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len());
15974 SWIGINTERN
int FileSelectorDefaultWildcardStr_set(PyObject
*) {
15975 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorDefaultWildcardStr is read-only.");
15980 SWIGINTERN PyObject
*FileSelectorDefaultWildcardStr_get(void) {
15981 PyObject
*pyobj
= 0;
15985 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
15987 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
15994 SWIGINTERN
int GetTextFromUserPromptStr_set(PyObject
*) {
15995 SWIG_Error(SWIG_AttributeError
,"Variable GetTextFromUserPromptStr is read-only.");
16000 SWIGINTERN PyObject
*GetTextFromUserPromptStr_get(void) {
16001 PyObject
*pyobj
= 0;
16005 pyobj
= PyUnicode_FromWideChar((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len());
16007 pyobj
= PyString_FromStringAndSize((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len());
16014 SWIGINTERN
int MessageBoxCaptionStr_set(PyObject
*) {
16015 SWIG_Error(SWIG_AttributeError
,"Variable MessageBoxCaptionStr is read-only.");
16020 SWIGINTERN PyObject
*MessageBoxCaptionStr_get(void) {
16021 PyObject
*pyobj
= 0;
16025 pyobj
= PyUnicode_FromWideChar((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len());
16027 pyobj
= PyString_FromStringAndSize((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len());
16034 SWIGINTERN PyObject
*_wrap_new_ColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16035 PyObject
*resultobj
= 0;
16036 wxColourData
*result
= 0 ;
16038 if (!SWIG_Python_UnpackTuple(args
,"new_ColourData",0,0,0)) SWIG_fail
;
16040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16041 result
= (wxColourData
*)new wxColourData();
16042 wxPyEndAllowThreads(__tstate
);
16043 if (PyErr_Occurred()) SWIG_fail
;
16045 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourData
, SWIG_POINTER_NEW
| 0 );
16052 SWIGINTERN PyObject
*_wrap_delete_ColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16053 PyObject
*resultobj
= 0;
16054 wxColourData
*arg1
= (wxColourData
*) 0 ;
16057 PyObject
*swig_obj
[1] ;
16059 if (!args
) SWIG_fail
;
16060 swig_obj
[0] = args
;
16061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, SWIG_POINTER_DISOWN
| 0 );
16062 if (!SWIG_IsOK(res1
)) {
16063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ColourData" "', expected argument " "1"" of type '" "wxColourData *""'");
16065 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16070 wxPyEndAllowThreads(__tstate
);
16071 if (PyErr_Occurred()) SWIG_fail
;
16073 resultobj
= SWIG_Py_Void();
16080 SWIGINTERN PyObject
*_wrap_ColourData_GetChooseFull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16081 PyObject
*resultobj
= 0;
16082 wxColourData
*arg1
= (wxColourData
*) 0 ;
16086 PyObject
*swig_obj
[1] ;
16088 if (!args
) SWIG_fail
;
16089 swig_obj
[0] = args
;
16090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16091 if (!SWIG_IsOK(res1
)) {
16092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetChooseFull" "', expected argument " "1"" of type '" "wxColourData *""'");
16094 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16097 result
= (bool)(arg1
)->GetChooseFull();
16098 wxPyEndAllowThreads(__tstate
);
16099 if (PyErr_Occurred()) SWIG_fail
;
16102 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16110 SWIGINTERN PyObject
*_wrap_ColourData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16111 PyObject
*resultobj
= 0;
16112 wxColourData
*arg1
= (wxColourData
*) 0 ;
16116 PyObject
*swig_obj
[1] ;
16118 if (!args
) SWIG_fail
;
16119 swig_obj
[0] = args
;
16120 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16121 if (!SWIG_IsOK(res1
)) {
16122 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16124 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16127 result
= (arg1
)->GetColour();
16128 wxPyEndAllowThreads(__tstate
);
16129 if (PyErr_Occurred()) SWIG_fail
;
16131 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16138 SWIGINTERN PyObject
*_wrap_ColourData_GetCustomColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16139 PyObject
*resultobj
= 0;
16140 wxColourData
*arg1
= (wxColourData
*) 0 ;
16147 PyObject
* obj0
= 0 ;
16148 PyObject
* obj1
= 0 ;
16149 char * kwnames
[] = {
16150 (char *) "self",(char *) "i", NULL
16153 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_GetCustomColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16154 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16155 if (!SWIG_IsOK(res1
)) {
16156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetCustomColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16158 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16159 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16160 if (!SWIG_IsOK(ecode2
)) {
16161 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_GetCustomColour" "', expected argument " "2"" of type '" "int""'");
16163 arg2
= static_cast< int >(val2
);
16165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16166 result
= (arg1
)->GetCustomColour(arg2
);
16167 wxPyEndAllowThreads(__tstate
);
16168 if (PyErr_Occurred()) SWIG_fail
;
16170 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16177 SWIGINTERN PyObject
*_wrap_ColourData_SetChooseFull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16178 PyObject
*resultobj
= 0;
16179 wxColourData
*arg1
= (wxColourData
*) 0 ;
16185 PyObject
* obj0
= 0 ;
16186 PyObject
* obj1
= 0 ;
16187 char * kwnames
[] = {
16188 (char *) "self",(char *) "flag", NULL
16191 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetChooseFull",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16192 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16193 if (!SWIG_IsOK(res1
)) {
16194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetChooseFull" "', expected argument " "1"" of type '" "wxColourData *""'");
16196 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16197 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16198 if (!SWIG_IsOK(ecode2
)) {
16199 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_SetChooseFull" "', expected argument " "2"" of type '" "int""'");
16201 arg2
= static_cast< int >(val2
);
16203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16204 (arg1
)->SetChooseFull(arg2
);
16205 wxPyEndAllowThreads(__tstate
);
16206 if (PyErr_Occurred()) SWIG_fail
;
16208 resultobj
= SWIG_Py_Void();
16215 SWIGINTERN PyObject
*_wrap_ColourData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16216 PyObject
*resultobj
= 0;
16217 wxColourData
*arg1
= (wxColourData
*) 0 ;
16218 wxColour
*arg2
= 0 ;
16222 PyObject
* obj0
= 0 ;
16223 PyObject
* obj1
= 0 ;
16224 char * kwnames
[] = {
16225 (char *) "self",(char *) "colour", NULL
16228 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16229 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16230 if (!SWIG_IsOK(res1
)) {
16231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16233 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16236 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
16239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16240 (arg1
)->SetColour((wxColour
const &)*arg2
);
16241 wxPyEndAllowThreads(__tstate
);
16242 if (PyErr_Occurred()) SWIG_fail
;
16244 resultobj
= SWIG_Py_Void();
16251 SWIGINTERN PyObject
*_wrap_ColourData_SetCustomColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16252 PyObject
*resultobj
= 0;
16253 wxColourData
*arg1
= (wxColourData
*) 0 ;
16255 wxColour
*arg3
= 0 ;
16261 PyObject
* obj0
= 0 ;
16262 PyObject
* obj1
= 0 ;
16263 PyObject
* obj2
= 0 ;
16264 char * kwnames
[] = {
16265 (char *) "self",(char *) "i",(char *) "colour", NULL
16268 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ColourData_SetCustomColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16269 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16270 if (!SWIG_IsOK(res1
)) {
16271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetCustomColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16273 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16274 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16275 if (!SWIG_IsOK(ecode2
)) {
16276 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_SetCustomColour" "', expected argument " "2"" of type '" "int""'");
16278 arg2
= static_cast< int >(val2
);
16281 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16285 (arg1
)->SetCustomColour(arg2
,(wxColour
const &)*arg3
);
16286 wxPyEndAllowThreads(__tstate
);
16287 if (PyErr_Occurred()) SWIG_fail
;
16289 resultobj
= SWIG_Py_Void();
16296 SWIGINTERN PyObject
*ColourData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16298 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16299 SWIG_TypeNewClientData(SWIGTYPE_p_wxColourData
, SWIG_NewClientData(obj
));
16300 return SWIG_Py_Void();
16303 SWIGINTERN PyObject
*ColourData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16304 return SWIG_Python_InitShadowInstance(args
);
16307 SWIGINTERN PyObject
*_wrap_new_ColourDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16308 PyObject
*resultobj
= 0;
16309 wxWindow
*arg1
= (wxWindow
*) 0 ;
16310 wxColourData
*arg2
= (wxColourData
*) NULL
;
16311 wxColourDialog
*result
= 0 ;
16316 PyObject
* obj0
= 0 ;
16317 PyObject
* obj1
= 0 ;
16318 char * kwnames
[] = {
16319 (char *) "parent",(char *) "data", NULL
16322 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_ColourDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16323 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16324 if (!SWIG_IsOK(res1
)) {
16325 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ColourDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
16327 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16329 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16330 if (!SWIG_IsOK(res2
)) {
16331 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_ColourDialog" "', expected argument " "2"" of type '" "wxColourData *""'");
16333 arg2
= reinterpret_cast< wxColourData
* >(argp2
);
16336 if (!wxPyCheckForApp()) SWIG_fail
;
16337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16338 result
= (wxColourDialog
*)new wxColourDialog(arg1
,arg2
);
16339 wxPyEndAllowThreads(__tstate
);
16340 if (PyErr_Occurred()) SWIG_fail
;
16342 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourDialog
, SWIG_POINTER_NEW
| 0 );
16349 SWIGINTERN PyObject
*_wrap_ColourDialog_GetColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16350 PyObject
*resultobj
= 0;
16351 wxColourDialog
*arg1
= (wxColourDialog
*) 0 ;
16352 wxColourData
*result
= 0 ;
16355 PyObject
*swig_obj
[1] ;
16357 if (!args
) SWIG_fail
;
16358 swig_obj
[0] = args
;
16359 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourDialog
, 0 | 0 );
16360 if (!SWIG_IsOK(res1
)) {
16361 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDialog_GetColourData" "', expected argument " "1"" of type '" "wxColourDialog *""'");
16363 arg1
= reinterpret_cast< wxColourDialog
* >(argp1
);
16365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16367 wxColourData
&_result_ref
= (arg1
)->GetColourData();
16368 result
= (wxColourData
*) &_result_ref
;
16370 wxPyEndAllowThreads(__tstate
);
16371 if (PyErr_Occurred()) SWIG_fail
;
16373 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourData
, 0 | 0 );
16380 SWIGINTERN PyObject
*ColourDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16382 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16383 SWIG_TypeNewClientData(SWIGTYPE_p_wxColourDialog
, SWIG_NewClientData(obj
));
16384 return SWIG_Py_Void();
16387 SWIGINTERN PyObject
*ColourDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16388 return SWIG_Python_InitShadowInstance(args
);
16391 SWIGINTERN PyObject
*_wrap_GetColourFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16392 PyObject
*resultobj
= 0;
16393 wxWindow
*arg1
= (wxWindow
*) (wxWindow
*) NULL
;
16394 wxColour
const &arg2_defvalue
= wxNullColour
;
16395 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
16396 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16397 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16402 bool temp3
= false ;
16403 PyObject
* obj0
= 0 ;
16404 PyObject
* obj1
= 0 ;
16405 PyObject
* obj2
= 0 ;
16406 char * kwnames
[] = {
16407 (char *) "parent",(char *) "colInit",(char *) "caption", NULL
16410 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:GetColourFromUser",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16412 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16413 if (!SWIG_IsOK(res1
)) {
16414 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GetColourFromUser" "', expected argument " "1"" of type '" "wxWindow *""'");
16416 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16421 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
16426 arg3
= wxString_in_helper(obj2
);
16427 if (arg3
== NULL
) SWIG_fail
;
16432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16433 result
= wxGetColourFromUser(arg1
,(wxColour
const &)*arg2
,(wxString
const &)*arg3
);
16434 wxPyEndAllowThreads(__tstate
);
16435 if (PyErr_Occurred()) SWIG_fail
;
16437 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16452 SWIGINTERN PyObject
*_wrap_new_DirDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16453 PyObject
*resultobj
= 0;
16454 wxWindow
*arg1
= (wxWindow
*) 0 ;
16455 wxString
const &arg2_defvalue
= wxPyDirSelectorPromptStr
;
16456 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
16457 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16458 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16459 long arg4
= (long) 0 ;
16460 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16461 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16462 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16463 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16464 wxString
const &arg7_defvalue
= wxPyDirDialogNameStr
;
16465 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
16466 wxDirDialog
*result
= 0 ;
16469 bool temp2
= false ;
16470 bool temp3
= false ;
16475 bool temp7
= false ;
16476 PyObject
* obj0
= 0 ;
16477 PyObject
* obj1
= 0 ;
16478 PyObject
* obj2
= 0 ;
16479 PyObject
* obj3
= 0 ;
16480 PyObject
* obj4
= 0 ;
16481 PyObject
* obj5
= 0 ;
16482 PyObject
* obj6
= 0 ;
16483 char * kwnames
[] = {
16484 (char *) "parent",(char *) "message",(char *) "defaultPath",(char *) "style",(char *) "pos",(char *) "size",(char *) "name", NULL
16487 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_DirDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
16488 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16489 if (!SWIG_IsOK(res1
)) {
16490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DirDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
16492 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16495 arg2
= wxString_in_helper(obj1
);
16496 if (arg2
== NULL
) SWIG_fail
;
16502 arg3
= wxString_in_helper(obj2
);
16503 if (arg3
== NULL
) SWIG_fail
;
16508 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
16509 if (!SWIG_IsOK(ecode4
)) {
16510 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DirDialog" "', expected argument " "4"" of type '" "long""'");
16512 arg4
= static_cast< long >(val4
);
16517 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
16523 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
16528 arg7
= wxString_in_helper(obj6
);
16529 if (arg7
== NULL
) SWIG_fail
;
16534 if (!wxPyCheckForApp()) SWIG_fail
;
16535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16536 result
= (wxDirDialog
*)new wxDirDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,(wxString
const &)*arg7
);
16537 wxPyEndAllowThreads(__tstate
);
16538 if (PyErr_Occurred()) SWIG_fail
;
16540 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_NEW
| 0 );
16571 SWIGINTERN PyObject
*_wrap_DirDialog_GetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16572 PyObject
*resultobj
= 0;
16573 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16577 PyObject
*swig_obj
[1] ;
16579 if (!args
) SWIG_fail
;
16580 swig_obj
[0] = args
;
16581 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16582 if (!SWIG_IsOK(res1
)) {
16583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_GetPath" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16585 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16587 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16588 result
= (arg1
)->GetPath();
16589 wxPyEndAllowThreads(__tstate
);
16590 if (PyErr_Occurred()) SWIG_fail
;
16594 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16596 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16605 SWIGINTERN PyObject
*_wrap_DirDialog_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16606 PyObject
*resultobj
= 0;
16607 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16611 PyObject
*swig_obj
[1] ;
16613 if (!args
) SWIG_fail
;
16614 swig_obj
[0] = args
;
16615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16616 if (!SWIG_IsOK(res1
)) {
16617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_GetMessage" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16619 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16622 result
= (arg1
)->GetMessage();
16623 wxPyEndAllowThreads(__tstate
);
16624 if (PyErr_Occurred()) SWIG_fail
;
16628 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16630 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16639 SWIGINTERN PyObject
*_wrap_DirDialog_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16640 PyObject
*resultobj
= 0;
16641 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16645 PyObject
*swig_obj
[1] ;
16647 if (!args
) SWIG_fail
;
16648 swig_obj
[0] = args
;
16649 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16650 if (!SWIG_IsOK(res1
)) {
16651 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_GetStyle" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16653 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16656 result
= (long)(arg1
)->GetStyle();
16657 wxPyEndAllowThreads(__tstate
);
16658 if (PyErr_Occurred()) SWIG_fail
;
16660 resultobj
= SWIG_From_long(static_cast< long >(result
));
16667 SWIGINTERN PyObject
*_wrap_DirDialog_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16668 PyObject
*resultobj
= 0;
16669 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16670 wxString
*arg2
= 0 ;
16673 bool temp2
= false ;
16674 PyObject
* obj0
= 0 ;
16675 PyObject
* obj1
= 0 ;
16676 char * kwnames
[] = {
16677 (char *) "self",(char *) "message", NULL
16680 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16681 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16682 if (!SWIG_IsOK(res1
)) {
16683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_SetMessage" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16685 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16687 arg2
= wxString_in_helper(obj1
);
16688 if (arg2
== NULL
) SWIG_fail
;
16692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16693 (arg1
)->SetMessage((wxString
const &)*arg2
);
16694 wxPyEndAllowThreads(__tstate
);
16695 if (PyErr_Occurred()) SWIG_fail
;
16697 resultobj
= SWIG_Py_Void();
16712 SWIGINTERN PyObject
*_wrap_DirDialog_SetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16713 PyObject
*resultobj
= 0;
16714 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16715 wxString
*arg2
= 0 ;
16718 bool temp2
= false ;
16719 PyObject
* obj0
= 0 ;
16720 PyObject
* obj1
= 0 ;
16721 char * kwnames
[] = {
16722 (char *) "self",(char *) "path", NULL
16725 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16726 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16727 if (!SWIG_IsOK(res1
)) {
16728 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_SetPath" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16730 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16732 arg2
= wxString_in_helper(obj1
);
16733 if (arg2
== NULL
) SWIG_fail
;
16737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16738 (arg1
)->SetPath((wxString
const &)*arg2
);
16739 wxPyEndAllowThreads(__tstate
);
16740 if (PyErr_Occurred()) SWIG_fail
;
16742 resultobj
= SWIG_Py_Void();
16757 SWIGINTERN PyObject
*DirDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16759 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16760 SWIG_TypeNewClientData(SWIGTYPE_p_wxDirDialog
, SWIG_NewClientData(obj
));
16761 return SWIG_Py_Void();
16764 SWIGINTERN PyObject
*DirDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16765 return SWIG_Python_InitShadowInstance(args
);
16768 SWIGINTERN PyObject
*_wrap_new_FileDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16769 PyObject
*resultobj
= 0;
16770 wxWindow
*arg1
= (wxWindow
*) 0 ;
16771 wxString
const &arg2_defvalue
= wxPyFileSelectorPromptStr
;
16772 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
16773 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16774 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16775 wxString
const &arg4_defvalue
= wxPyEmptyString
;
16776 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
16777 wxString
const &arg5_defvalue
= wxPyFileSelectorDefaultWildcardStr
;
16778 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
16779 long arg6
= (long) 0 ;
16780 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
16781 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
16782 wxFileDialog
*result
= 0 ;
16785 bool temp2
= false ;
16786 bool temp3
= false ;
16787 bool temp4
= false ;
16788 bool temp5
= false ;
16792 PyObject
* obj0
= 0 ;
16793 PyObject
* obj1
= 0 ;
16794 PyObject
* obj2
= 0 ;
16795 PyObject
* obj3
= 0 ;
16796 PyObject
* obj4
= 0 ;
16797 PyObject
* obj5
= 0 ;
16798 PyObject
* obj6
= 0 ;
16799 char * kwnames
[] = {
16800 (char *) "parent",(char *) "message",(char *) "defaultDir",(char *) "defaultFile",(char *) "wildcard",(char *) "style",(char *) "pos", NULL
16803 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_FileDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
16804 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16805 if (!SWIG_IsOK(res1
)) {
16806 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FileDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
16808 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16811 arg2
= wxString_in_helper(obj1
);
16812 if (arg2
== NULL
) SWIG_fail
;
16818 arg3
= wxString_in_helper(obj2
);
16819 if (arg3
== NULL
) SWIG_fail
;
16825 arg4
= wxString_in_helper(obj3
);
16826 if (arg4
== NULL
) SWIG_fail
;
16832 arg5
= wxString_in_helper(obj4
);
16833 if (arg5
== NULL
) SWIG_fail
;
16838 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
16839 if (!SWIG_IsOK(ecode6
)) {
16840 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_FileDialog" "', expected argument " "6"" of type '" "long""'");
16842 arg6
= static_cast< long >(val6
);
16847 if ( ! wxPoint_helper(obj6
, &arg7
)) SWIG_fail
;
16851 if (!wxPyCheckForApp()) SWIG_fail
;
16852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16853 result
= (wxFileDialog
*)new wxFileDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,(wxString
const &)*arg5
,arg6
,(wxPoint
const &)*arg7
);
16854 wxPyEndAllowThreads(__tstate
);
16855 if (PyErr_Occurred()) SWIG_fail
;
16857 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_NEW
| 0 );
16896 SWIGINTERN PyObject
*_wrap_FileDialog_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16897 PyObject
*resultobj
= 0;
16898 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
16899 wxString
*arg2
= 0 ;
16902 bool temp2
= false ;
16903 PyObject
* obj0
= 0 ;
16904 PyObject
* obj1
= 0 ;
16905 char * kwnames
[] = {
16906 (char *) "self",(char *) "message", NULL
16909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
16911 if (!SWIG_IsOK(res1
)) {
16912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetMessage" "', expected argument " "1"" of type '" "wxFileDialog *""'");
16914 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
16916 arg2
= wxString_in_helper(obj1
);
16917 if (arg2
== NULL
) SWIG_fail
;
16921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16922 (arg1
)->SetMessage((wxString
const &)*arg2
);
16923 wxPyEndAllowThreads(__tstate
);
16924 if (PyErr_Occurred()) SWIG_fail
;
16926 resultobj
= SWIG_Py_Void();
16941 SWIGINTERN PyObject
*_wrap_FileDialog_SetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16942 PyObject
*resultobj
= 0;
16943 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
16944 wxString
*arg2
= 0 ;
16947 bool temp2
= false ;
16948 PyObject
* obj0
= 0 ;
16949 PyObject
* obj1
= 0 ;
16950 char * kwnames
[] = {
16951 (char *) "self",(char *) "path", NULL
16954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
16956 if (!SWIG_IsOK(res1
)) {
16957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetPath" "', expected argument " "1"" of type '" "wxFileDialog *""'");
16959 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
16961 arg2
= wxString_in_helper(obj1
);
16962 if (arg2
== NULL
) SWIG_fail
;
16966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16967 (arg1
)->SetPath((wxString
const &)*arg2
);
16968 wxPyEndAllowThreads(__tstate
);
16969 if (PyErr_Occurred()) SWIG_fail
;
16971 resultobj
= SWIG_Py_Void();
16986 SWIGINTERN PyObject
*_wrap_FileDialog_SetDirectory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16987 PyObject
*resultobj
= 0;
16988 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
16989 wxString
*arg2
= 0 ;
16992 bool temp2
= false ;
16993 PyObject
* obj0
= 0 ;
16994 PyObject
* obj1
= 0 ;
16995 char * kwnames
[] = {
16996 (char *) "self",(char *) "dir", NULL
16999 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetDirectory",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17000 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17001 if (!SWIG_IsOK(res1
)) {
17002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetDirectory" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17004 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17006 arg2
= wxString_in_helper(obj1
);
17007 if (arg2
== NULL
) SWIG_fail
;
17011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17012 (arg1
)->SetDirectory((wxString
const &)*arg2
);
17013 wxPyEndAllowThreads(__tstate
);
17014 if (PyErr_Occurred()) SWIG_fail
;
17016 resultobj
= SWIG_Py_Void();
17031 SWIGINTERN PyObject
*_wrap_FileDialog_SetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17032 PyObject
*resultobj
= 0;
17033 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17034 wxString
*arg2
= 0 ;
17037 bool temp2
= false ;
17038 PyObject
* obj0
= 0 ;
17039 PyObject
* obj1
= 0 ;
17040 char * kwnames
[] = {
17041 (char *) "self",(char *) "name", NULL
17044 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilename",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17045 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17046 if (!SWIG_IsOK(res1
)) {
17047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetFilename" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17049 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17051 arg2
= wxString_in_helper(obj1
);
17052 if (arg2
== NULL
) SWIG_fail
;
17056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17057 (arg1
)->SetFilename((wxString
const &)*arg2
);
17058 wxPyEndAllowThreads(__tstate
);
17059 if (PyErr_Occurred()) SWIG_fail
;
17061 resultobj
= SWIG_Py_Void();
17076 SWIGINTERN PyObject
*_wrap_FileDialog_SetWildcard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17077 PyObject
*resultobj
= 0;
17078 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17079 wxString
*arg2
= 0 ;
17082 bool temp2
= false ;
17083 PyObject
* obj0
= 0 ;
17084 PyObject
* obj1
= 0 ;
17085 char * kwnames
[] = {
17086 (char *) "self",(char *) "wildCard", NULL
17089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetWildcard",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17091 if (!SWIG_IsOK(res1
)) {
17092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetWildcard" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17094 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17096 arg2
= wxString_in_helper(obj1
);
17097 if (arg2
== NULL
) SWIG_fail
;
17101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17102 (arg1
)->SetWildcard((wxString
const &)*arg2
);
17103 wxPyEndAllowThreads(__tstate
);
17104 if (PyErr_Occurred()) SWIG_fail
;
17106 resultobj
= SWIG_Py_Void();
17121 SWIGINTERN PyObject
*_wrap_FileDialog_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17122 PyObject
*resultobj
= 0;
17123 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17129 PyObject
* obj0
= 0 ;
17130 PyObject
* obj1
= 0 ;
17131 char * kwnames
[] = {
17132 (char *) "self",(char *) "style", NULL
17135 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17136 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17137 if (!SWIG_IsOK(res1
)) {
17138 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetStyle" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17140 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17141 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
17142 if (!SWIG_IsOK(ecode2
)) {
17143 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDialog_SetStyle" "', expected argument " "2"" of type '" "long""'");
17145 arg2
= static_cast< long >(val2
);
17147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17148 (arg1
)->SetStyle(arg2
);
17149 wxPyEndAllowThreads(__tstate
);
17150 if (PyErr_Occurred()) SWIG_fail
;
17152 resultobj
= SWIG_Py_Void();
17159 SWIGINTERN PyObject
*_wrap_FileDialog_SetFilterIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17160 PyObject
*resultobj
= 0;
17161 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17167 PyObject
* obj0
= 0 ;
17168 PyObject
* obj1
= 0 ;
17169 char * kwnames
[] = {
17170 (char *) "self",(char *) "filterIndex", NULL
17173 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilterIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17174 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17175 if (!SWIG_IsOK(res1
)) {
17176 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetFilterIndex" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17178 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17179 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17180 if (!SWIG_IsOK(ecode2
)) {
17181 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDialog_SetFilterIndex" "', expected argument " "2"" of type '" "int""'");
17183 arg2
= static_cast< int >(val2
);
17185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17186 (arg1
)->SetFilterIndex(arg2
);
17187 wxPyEndAllowThreads(__tstate
);
17188 if (PyErr_Occurred()) SWIG_fail
;
17190 resultobj
= SWIG_Py_Void();
17197 SWIGINTERN PyObject
*_wrap_FileDialog_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17198 PyObject
*resultobj
= 0;
17199 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17203 PyObject
*swig_obj
[1] ;
17205 if (!args
) SWIG_fail
;
17206 swig_obj
[0] = args
;
17207 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17208 if (!SWIG_IsOK(res1
)) {
17209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetMessage" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17211 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17213 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17214 result
= ((wxFileDialog
const *)arg1
)->GetMessage();
17215 wxPyEndAllowThreads(__tstate
);
17216 if (PyErr_Occurred()) SWIG_fail
;
17220 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17222 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17231 SWIGINTERN PyObject
*_wrap_FileDialog_GetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17232 PyObject
*resultobj
= 0;
17233 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17237 PyObject
*swig_obj
[1] ;
17239 if (!args
) SWIG_fail
;
17240 swig_obj
[0] = args
;
17241 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17242 if (!SWIG_IsOK(res1
)) {
17243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetPath" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17245 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17248 result
= ((wxFileDialog
const *)arg1
)->GetPath();
17249 wxPyEndAllowThreads(__tstate
);
17250 if (PyErr_Occurred()) SWIG_fail
;
17254 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17256 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17265 SWIGINTERN PyObject
*_wrap_FileDialog_GetDirectory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17266 PyObject
*resultobj
= 0;
17267 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17271 PyObject
*swig_obj
[1] ;
17273 if (!args
) SWIG_fail
;
17274 swig_obj
[0] = args
;
17275 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17276 if (!SWIG_IsOK(res1
)) {
17277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetDirectory" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17279 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17282 result
= ((wxFileDialog
const *)arg1
)->GetDirectory();
17283 wxPyEndAllowThreads(__tstate
);
17284 if (PyErr_Occurred()) SWIG_fail
;
17288 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17290 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17299 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17300 PyObject
*resultobj
= 0;
17301 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17305 PyObject
*swig_obj
[1] ;
17307 if (!args
) SWIG_fail
;
17308 swig_obj
[0] = args
;
17309 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17310 if (!SWIG_IsOK(res1
)) {
17311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilename" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17313 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17316 result
= ((wxFileDialog
const *)arg1
)->GetFilename();
17317 wxPyEndAllowThreads(__tstate
);
17318 if (PyErr_Occurred()) SWIG_fail
;
17322 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17324 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17333 SWIGINTERN PyObject
*_wrap_FileDialog_GetWildcard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17334 PyObject
*resultobj
= 0;
17335 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17339 PyObject
*swig_obj
[1] ;
17341 if (!args
) SWIG_fail
;
17342 swig_obj
[0] = args
;
17343 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17344 if (!SWIG_IsOK(res1
)) {
17345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetWildcard" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17347 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17350 result
= ((wxFileDialog
const *)arg1
)->GetWildcard();
17351 wxPyEndAllowThreads(__tstate
);
17352 if (PyErr_Occurred()) SWIG_fail
;
17356 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17358 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17367 SWIGINTERN PyObject
*_wrap_FileDialog_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17368 PyObject
*resultobj
= 0;
17369 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17373 PyObject
*swig_obj
[1] ;
17375 if (!args
) SWIG_fail
;
17376 swig_obj
[0] = args
;
17377 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17378 if (!SWIG_IsOK(res1
)) {
17379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetStyle" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17381 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17384 result
= (long)((wxFileDialog
const *)arg1
)->GetStyle();
17385 wxPyEndAllowThreads(__tstate
);
17386 if (PyErr_Occurred()) SWIG_fail
;
17388 resultobj
= SWIG_From_long(static_cast< long >(result
));
17395 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilterIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17396 PyObject
*resultobj
= 0;
17397 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17401 PyObject
*swig_obj
[1] ;
17403 if (!args
) SWIG_fail
;
17404 swig_obj
[0] = args
;
17405 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17406 if (!SWIG_IsOK(res1
)) {
17407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilterIndex" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17409 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17412 result
= (int)((wxFileDialog
const *)arg1
)->GetFilterIndex();
17413 wxPyEndAllowThreads(__tstate
);
17414 if (PyErr_Occurred()) SWIG_fail
;
17416 resultobj
= SWIG_From_int(static_cast< int >(result
));
17423 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilenames(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17424 PyObject
*resultobj
= 0;
17425 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17426 PyObject
*result
= 0 ;
17429 PyObject
*swig_obj
[1] ;
17431 if (!args
) SWIG_fail
;
17432 swig_obj
[0] = args
;
17433 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17434 if (!SWIG_IsOK(res1
)) {
17435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilenames" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17437 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17440 result
= (PyObject
*)wxFileDialog_GetFilenames(arg1
);
17441 wxPyEndAllowThreads(__tstate
);
17442 if (PyErr_Occurred()) SWIG_fail
;
17444 resultobj
= result
;
17451 SWIGINTERN PyObject
*_wrap_FileDialog_GetPaths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17452 PyObject
*resultobj
= 0;
17453 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17454 PyObject
*result
= 0 ;
17457 PyObject
*swig_obj
[1] ;
17459 if (!args
) SWIG_fail
;
17460 swig_obj
[0] = args
;
17461 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17462 if (!SWIG_IsOK(res1
)) {
17463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetPaths" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17465 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17468 result
= (PyObject
*)wxFileDialog_GetPaths(arg1
);
17469 wxPyEndAllowThreads(__tstate
);
17470 if (PyErr_Occurred()) SWIG_fail
;
17472 resultobj
= result
;
17479 SWIGINTERN PyObject
*FileDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17481 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17482 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileDialog
, SWIG_NewClientData(obj
));
17483 return SWIG_Py_Void();
17486 SWIGINTERN PyObject
*FileDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17487 return SWIG_Python_InitShadowInstance(args
);
17490 SWIGINTERN PyObject
*_wrap_new_MultiChoiceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17491 PyObject
*resultobj
= 0;
17492 wxWindow
*arg1
= (wxWindow
*) 0 ;
17493 wxString
*arg2
= 0 ;
17494 wxString
*arg3
= 0 ;
17495 int arg4
= (int) 0 ;
17496 wxString
*arg5
= (wxString
*) NULL
;
17497 long arg6
= (long) wxCHOICEDLG_STYLE
;
17498 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
17499 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
17500 wxMultiChoiceDialog
*result
= 0 ;
17503 bool temp2
= false ;
17504 bool temp3
= false ;
17508 PyObject
* obj0
= 0 ;
17509 PyObject
* obj1
= 0 ;
17510 PyObject
* obj2
= 0 ;
17511 PyObject
* obj3
= 0 ;
17512 PyObject
* obj4
= 0 ;
17513 PyObject
* obj5
= 0 ;
17514 char * kwnames
[] = {
17515 (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL
17518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_MultiChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
17519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
17520 if (!SWIG_IsOK(res1
)) {
17521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MultiChoiceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
17523 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
17525 arg2
= wxString_in_helper(obj1
);
17526 if (arg2
== NULL
) SWIG_fail
;
17530 arg3
= wxString_in_helper(obj2
);
17531 if (arg3
== NULL
) SWIG_fail
;
17536 arg4
= PyList_Size(obj3
);
17537 arg5
= wxString_LIST_helper(obj3
);
17538 if (arg5
== NULL
) SWIG_fail
;
17542 ecode6
= SWIG_AsVal_long(obj4
, &val6
);
17543 if (!SWIG_IsOK(ecode6
)) {
17544 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MultiChoiceDialog" "', expected argument " "6"" of type '" "long""'");
17546 arg6
= static_cast< long >(val6
);
17551 if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
;
17555 if (!wxPyCheckForApp()) SWIG_fail
;
17556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17557 result
= (wxMultiChoiceDialog
*)new wxMultiChoiceDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
);
17558 wxPyEndAllowThreads(__tstate
);
17559 if (PyErr_Occurred()) SWIG_fail
;
17561 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_POINTER_NEW
| 0 );
17571 if (arg5
) delete [] arg5
;
17584 if (arg5
) delete [] arg5
;
17590 SWIGINTERN PyObject
*_wrap_MultiChoiceDialog_SetSelections(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17591 PyObject
*resultobj
= 0;
17592 wxMultiChoiceDialog
*arg1
= (wxMultiChoiceDialog
*) 0 ;
17593 wxArrayInt
*arg2
= 0 ;
17596 bool temp2
= false ;
17597 PyObject
* obj0
= 0 ;
17598 PyObject
* obj1
= 0 ;
17599 char * kwnames
[] = {
17600 (char *) "self",(char *) "selections", NULL
17603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MultiChoiceDialog_SetSelections",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMultiChoiceDialog
, 0 | 0 );
17605 if (!SWIG_IsOK(res1
)) {
17606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MultiChoiceDialog_SetSelections" "', expected argument " "1"" of type '" "wxMultiChoiceDialog *""'");
17608 arg1
= reinterpret_cast< wxMultiChoiceDialog
* >(argp1
);
17610 if (! PySequence_Check(obj1
)) {
17611 PyErr_SetString(PyExc_TypeError
, "Sequence of integers expected.");
17614 arg2
= new wxArrayInt
;
17616 int i
, len
=PySequence_Length(obj1
);
17617 for (i
=0; i
<len
; i
++) {
17618 PyObject
* item
= PySequence_GetItem(obj1
, i
);
17619 PyObject
* number
= PyNumber_Int(item
);
17620 arg2
->Add(PyInt_AS_LONG(number
));
17626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17627 (arg1
)->SetSelections((wxArrayInt
const &)*arg2
);
17628 wxPyEndAllowThreads(__tstate
);
17629 if (PyErr_Occurred()) SWIG_fail
;
17631 resultobj
= SWIG_Py_Void();
17633 if (temp2
) delete arg2
;
17638 if (temp2
) delete arg2
;
17644 SWIGINTERN PyObject
*_wrap_MultiChoiceDialog_GetSelections(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17645 PyObject
*resultobj
= 0;
17646 wxMultiChoiceDialog
*arg1
= (wxMultiChoiceDialog
*) 0 ;
17647 PyObject
*result
= 0 ;
17650 PyObject
*swig_obj
[1] ;
17652 if (!args
) SWIG_fail
;
17653 swig_obj
[0] = args
;
17654 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMultiChoiceDialog
, 0 | 0 );
17655 if (!SWIG_IsOK(res1
)) {
17656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MultiChoiceDialog_GetSelections" "', expected argument " "1"" of type '" "wxMultiChoiceDialog *""'");
17658 arg1
= reinterpret_cast< wxMultiChoiceDialog
* >(argp1
);
17660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17661 result
= (PyObject
*)wxMultiChoiceDialog_GetSelections(arg1
);
17662 wxPyEndAllowThreads(__tstate
);
17663 if (PyErr_Occurred()) SWIG_fail
;
17665 resultobj
= result
;
17672 SWIGINTERN PyObject
*MultiChoiceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17674 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17675 SWIG_TypeNewClientData(SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_NewClientData(obj
));
17676 return SWIG_Py_Void();
17679 SWIGINTERN PyObject
*MultiChoiceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17680 return SWIG_Python_InitShadowInstance(args
);
17683 SWIGINTERN PyObject
*_wrap_new_SingleChoiceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17684 PyObject
*resultobj
= 0;
17685 wxWindow
*arg1
= (wxWindow
*) 0 ;
17686 wxString
*arg2
= 0 ;
17687 wxString
*arg3
= 0 ;
17689 wxString
*arg5
= (wxString
*) 0 ;
17690 long arg6
= (long) wxCHOICEDLG_STYLE
;
17691 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
17692 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
17693 wxSingleChoiceDialog
*result
= 0 ;
17696 bool temp2
= false ;
17697 bool temp3
= false ;
17701 PyObject
* obj0
= 0 ;
17702 PyObject
* obj1
= 0 ;
17703 PyObject
* obj2
= 0 ;
17704 PyObject
* obj3
= 0 ;
17705 PyObject
* obj4
= 0 ;
17706 PyObject
* obj5
= 0 ;
17707 char * kwnames
[] = {
17708 (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL
17711 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:new_SingleChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
17712 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
17713 if (!SWIG_IsOK(res1
)) {
17714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SingleChoiceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
17716 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
17718 arg2
= wxString_in_helper(obj1
);
17719 if (arg2
== NULL
) SWIG_fail
;
17723 arg3
= wxString_in_helper(obj2
);
17724 if (arg3
== NULL
) SWIG_fail
;
17728 arg4
= PyList_Size(obj3
);
17729 arg5
= wxString_LIST_helper(obj3
);
17730 if (arg5
== NULL
) SWIG_fail
;
17733 ecode6
= SWIG_AsVal_long(obj4
, &val6
);
17734 if (!SWIG_IsOK(ecode6
)) {
17735 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_SingleChoiceDialog" "', expected argument " "6"" of type '" "long""'");
17737 arg6
= static_cast< long >(val6
);
17742 if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
;
17746 if (!wxPyCheckForApp()) SWIG_fail
;
17747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17748 result
= (wxSingleChoiceDialog
*)new_wxSingleChoiceDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
);
17749 wxPyEndAllowThreads(__tstate
);
17750 if (PyErr_Occurred()) SWIG_fail
;
17752 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_POINTER_NEW
| 0 );
17762 if (arg5
) delete [] arg5
;
17775 if (arg5
) delete [] arg5
;
17781 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17782 PyObject
*resultobj
= 0;
17783 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
17787 PyObject
*swig_obj
[1] ;
17789 if (!args
) SWIG_fail
;
17790 swig_obj
[0] = args
;
17791 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
17792 if (!SWIG_IsOK(res1
)) {
17793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_GetSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
17795 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
17797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17798 result
= (int)(arg1
)->GetSelection();
17799 wxPyEndAllowThreads(__tstate
);
17800 if (PyErr_Occurred()) SWIG_fail
;
17802 resultobj
= SWIG_From_int(static_cast< int >(result
));
17809 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_GetStringSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17810 PyObject
*resultobj
= 0;
17811 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
17815 PyObject
*swig_obj
[1] ;
17817 if (!args
) SWIG_fail
;
17818 swig_obj
[0] = args
;
17819 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
17820 if (!SWIG_IsOK(res1
)) {
17821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_GetStringSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
17823 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
17825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17826 result
= (arg1
)->GetStringSelection();
17827 wxPyEndAllowThreads(__tstate
);
17828 if (PyErr_Occurred()) SWIG_fail
;
17832 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17834 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17843 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17844 PyObject
*resultobj
= 0;
17845 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
17851 PyObject
* obj0
= 0 ;
17852 PyObject
* obj1
= 0 ;
17853 char * kwnames
[] = {
17854 (char *) "self",(char *) "sel", NULL
17857 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SingleChoiceDialog_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17858 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
17859 if (!SWIG_IsOK(res1
)) {
17860 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_SetSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
17862 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
17863 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17864 if (!SWIG_IsOK(ecode2
)) {
17865 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SingleChoiceDialog_SetSelection" "', expected argument " "2"" of type '" "int""'");
17867 arg2
= static_cast< int >(val2
);
17869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17870 (arg1
)->SetSelection(arg2
);
17871 wxPyEndAllowThreads(__tstate
);
17872 if (PyErr_Occurred()) SWIG_fail
;
17874 resultobj
= SWIG_Py_Void();
17881 SWIGINTERN PyObject
*SingleChoiceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17883 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17884 SWIG_TypeNewClientData(SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_NewClientData(obj
));
17885 return SWIG_Py_Void();
17888 SWIGINTERN PyObject
*SingleChoiceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17889 return SWIG_Python_InitShadowInstance(args
);
17892 SWIGINTERN PyObject
*_wrap_new_TextEntryDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17893 PyObject
*resultobj
= 0;
17894 wxWindow
*arg1
= (wxWindow
*) 0 ;
17895 wxString
*arg2
= 0 ;
17896 wxString
const &arg3_defvalue
= wxPyGetTextFromUserPromptStr
;
17897 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17898 wxString
const &arg4_defvalue
= wxPyEmptyString
;
17899 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
17900 long arg5
= (long) wxTextEntryDialogStyle
;
17901 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
17902 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
17903 wxTextEntryDialog
*result
= 0 ;
17906 bool temp2
= false ;
17907 bool temp3
= false ;
17908 bool temp4
= false ;
17912 PyObject
* obj0
= 0 ;
17913 PyObject
* obj1
= 0 ;
17914 PyObject
* obj2
= 0 ;
17915 PyObject
* obj3
= 0 ;
17916 PyObject
* obj4
= 0 ;
17917 PyObject
* obj5
= 0 ;
17918 char * kwnames
[] = {
17919 (char *) "parent",(char *) "message",(char *) "caption",(char *) "defaultValue",(char *) "style",(char *) "pos", NULL
17922 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_TextEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
17923 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
17924 if (!SWIG_IsOK(res1
)) {
17925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TextEntryDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
17927 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
17929 arg2
= wxString_in_helper(obj1
);
17930 if (arg2
== NULL
) SWIG_fail
;
17935 arg3
= wxString_in_helper(obj2
);
17936 if (arg3
== NULL
) SWIG_fail
;
17942 arg4
= wxString_in_helper(obj3
);
17943 if (arg4
== NULL
) SWIG_fail
;
17948 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
17949 if (!SWIG_IsOK(ecode5
)) {
17950 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_TextEntryDialog" "', expected argument " "5"" of type '" "long""'");
17952 arg5
= static_cast< long >(val5
);
17957 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
17961 if (!wxPyCheckForApp()) SWIG_fail
;
17962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17963 result
= (wxTextEntryDialog
*)new wxTextEntryDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,(wxPoint
const &)*arg6
);
17964 wxPyEndAllowThreads(__tstate
);
17965 if (PyErr_Occurred()) SWIG_fail
;
17967 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTextEntryDialog
, SWIG_POINTER_NEW
| 0 );
17998 SWIGINTERN PyObject
*_wrap_TextEntryDialog_GetValue(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17999 PyObject
*resultobj
= 0;
18000 wxTextEntryDialog
*arg1
= (wxTextEntryDialog
*) 0 ;
18004 PyObject
*swig_obj
[1] ;
18006 if (!args
) SWIG_fail
;
18007 swig_obj
[0] = args
;
18008 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTextEntryDialog
, 0 | 0 );
18009 if (!SWIG_IsOK(res1
)) {
18010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextEntryDialog_GetValue" "', expected argument " "1"" of type '" "wxTextEntryDialog *""'");
18012 arg1
= reinterpret_cast< wxTextEntryDialog
* >(argp1
);
18014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18015 result
= (arg1
)->GetValue();
18016 wxPyEndAllowThreads(__tstate
);
18017 if (PyErr_Occurred()) SWIG_fail
;
18021 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18023 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18032 SWIGINTERN PyObject
*_wrap_TextEntryDialog_SetValue(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18033 PyObject
*resultobj
= 0;
18034 wxTextEntryDialog
*arg1
= (wxTextEntryDialog
*) 0 ;
18035 wxString
*arg2
= 0 ;
18038 bool temp2
= false ;
18039 PyObject
* obj0
= 0 ;
18040 PyObject
* obj1
= 0 ;
18041 char * kwnames
[] = {
18042 (char *) "self",(char *) "value", NULL
18045 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextEntryDialog_SetValue",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18046 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTextEntryDialog
, 0 | 0 );
18047 if (!SWIG_IsOK(res1
)) {
18048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextEntryDialog_SetValue" "', expected argument " "1"" of type '" "wxTextEntryDialog *""'");
18050 arg1
= reinterpret_cast< wxTextEntryDialog
* >(argp1
);
18052 arg2
= wxString_in_helper(obj1
);
18053 if (arg2
== NULL
) SWIG_fail
;
18057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18058 (arg1
)->SetValue((wxString
const &)*arg2
);
18059 wxPyEndAllowThreads(__tstate
);
18060 if (PyErr_Occurred()) SWIG_fail
;
18062 resultobj
= SWIG_Py_Void();
18077 SWIGINTERN PyObject
*TextEntryDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18079 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18080 SWIG_TypeNewClientData(SWIGTYPE_p_wxTextEntryDialog
, SWIG_NewClientData(obj
));
18081 return SWIG_Py_Void();
18084 SWIGINTERN PyObject
*TextEntryDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18085 return SWIG_Python_InitShadowInstance(args
);
18088 SWIGINTERN
int GetPasswordFromUserPromptStr_set(PyObject
*) {
18089 SWIG_Error(SWIG_AttributeError
,"Variable GetPasswordFromUserPromptStr is read-only.");
18094 SWIGINTERN PyObject
*GetPasswordFromUserPromptStr_get(void) {
18095 PyObject
*pyobj
= 0;
18099 pyobj
= PyUnicode_FromWideChar((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len());
18101 pyobj
= PyString_FromStringAndSize((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len());
18108 SWIGINTERN PyObject
*_wrap_new_PasswordEntryDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18109 PyObject
*resultobj
= 0;
18110 wxWindow
*arg1
= (wxWindow
*) 0 ;
18111 wxString
*arg2
= 0 ;
18112 wxString
const &arg3_defvalue
= wxPyGetPasswordFromUserPromptStr
;
18113 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
18114 wxString
const &arg4_defvalue
= wxPyEmptyString
;
18115 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
18116 long arg5
= (long) wxTextEntryDialogStyle
;
18117 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
18118 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
18119 wxPasswordEntryDialog
*result
= 0 ;
18122 bool temp2
= false ;
18123 bool temp3
= false ;
18124 bool temp4
= false ;
18128 PyObject
* obj0
= 0 ;
18129 PyObject
* obj1
= 0 ;
18130 PyObject
* obj2
= 0 ;
18131 PyObject
* obj3
= 0 ;
18132 PyObject
* obj4
= 0 ;
18133 PyObject
* obj5
= 0 ;
18134 char * kwnames
[] = {
18135 (char *) "parent",(char *) "message",(char *) "caption",(char *) "value",(char *) "style",(char *) "pos", NULL
18138 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PasswordEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
18139 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18140 if (!SWIG_IsOK(res1
)) {
18141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PasswordEntryDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18143 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18145 arg2
= wxString_in_helper(obj1
);
18146 if (arg2
== NULL
) SWIG_fail
;
18151 arg3
= wxString_in_helper(obj2
);
18152 if (arg3
== NULL
) SWIG_fail
;
18158 arg4
= wxString_in_helper(obj3
);
18159 if (arg4
== NULL
) SWIG_fail
;
18164 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
18165 if (!SWIG_IsOK(ecode5
)) {
18166 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PasswordEntryDialog" "', expected argument " "5"" of type '" "long""'");
18168 arg5
= static_cast< long >(val5
);
18173 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
18177 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18178 result
= (wxPasswordEntryDialog
*)new wxPasswordEntryDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,(wxPoint
const &)*arg6
);
18179 wxPyEndAllowThreads(__tstate
);
18180 if (PyErr_Occurred()) SWIG_fail
;
18182 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPasswordEntryDialog
, SWIG_POINTER_NEW
| 0 );
18213 SWIGINTERN PyObject
*PasswordEntryDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18215 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18216 SWIG_TypeNewClientData(SWIGTYPE_p_wxPasswordEntryDialog
, SWIG_NewClientData(obj
));
18217 return SWIG_Py_Void();
18220 SWIGINTERN PyObject
*PasswordEntryDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18221 return SWIG_Python_InitShadowInstance(args
);
18224 SWIGINTERN PyObject
*_wrap_new_FontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18225 PyObject
*resultobj
= 0;
18226 wxFontData
*result
= 0 ;
18228 if (!SWIG_Python_UnpackTuple(args
,"new_FontData",0,0,0)) SWIG_fail
;
18230 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18231 result
= (wxFontData
*)new wxFontData();
18232 wxPyEndAllowThreads(__tstate
);
18233 if (PyErr_Occurred()) SWIG_fail
;
18235 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontData
, SWIG_POINTER_NEW
| 0 );
18242 SWIGINTERN PyObject
*_wrap_delete_FontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18243 PyObject
*resultobj
= 0;
18244 wxFontData
*arg1
= (wxFontData
*) 0 ;
18247 PyObject
*swig_obj
[1] ;
18249 if (!args
) SWIG_fail
;
18250 swig_obj
[0] = args
;
18251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, SWIG_POINTER_DISOWN
| 0 );
18252 if (!SWIG_IsOK(res1
)) {
18253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FontData" "', expected argument " "1"" of type '" "wxFontData *""'");
18255 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18260 wxPyEndAllowThreads(__tstate
);
18261 if (PyErr_Occurred()) SWIG_fail
;
18263 resultobj
= SWIG_Py_Void();
18270 SWIGINTERN PyObject
*_wrap_FontData_EnableEffects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18271 PyObject
*resultobj
= 0;
18272 wxFontData
*arg1
= (wxFontData
*) 0 ;
18278 PyObject
* obj0
= 0 ;
18279 PyObject
* obj1
= 0 ;
18280 char * kwnames
[] = {
18281 (char *) "self",(char *) "enable", NULL
18284 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_EnableEffects",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18285 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18286 if (!SWIG_IsOK(res1
)) {
18287 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_EnableEffects" "', expected argument " "1"" of type '" "wxFontData *""'");
18289 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18290 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18291 if (!SWIG_IsOK(ecode2
)) {
18292 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_EnableEffects" "', expected argument " "2"" of type '" "bool""'");
18294 arg2
= static_cast< bool >(val2
);
18296 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18297 (arg1
)->EnableEffects(arg2
);
18298 wxPyEndAllowThreads(__tstate
);
18299 if (PyErr_Occurred()) SWIG_fail
;
18301 resultobj
= SWIG_Py_Void();
18308 SWIGINTERN PyObject
*_wrap_FontData_GetAllowSymbols(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18309 PyObject
*resultobj
= 0;
18310 wxFontData
*arg1
= (wxFontData
*) 0 ;
18314 PyObject
*swig_obj
[1] ;
18316 if (!args
) SWIG_fail
;
18317 swig_obj
[0] = args
;
18318 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18319 if (!SWIG_IsOK(res1
)) {
18320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetAllowSymbols" "', expected argument " "1"" of type '" "wxFontData *""'");
18322 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18325 result
= (bool)(arg1
)->GetAllowSymbols();
18326 wxPyEndAllowThreads(__tstate
);
18327 if (PyErr_Occurred()) SWIG_fail
;
18330 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18338 SWIGINTERN PyObject
*_wrap_FontData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18339 PyObject
*resultobj
= 0;
18340 wxFontData
*arg1
= (wxFontData
*) 0 ;
18344 PyObject
*swig_obj
[1] ;
18346 if (!args
) SWIG_fail
;
18347 swig_obj
[0] = args
;
18348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18349 if (!SWIG_IsOK(res1
)) {
18350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetColour" "', expected argument " "1"" of type '" "wxFontData *""'");
18352 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18355 result
= (arg1
)->GetColour();
18356 wxPyEndAllowThreads(__tstate
);
18357 if (PyErr_Occurred()) SWIG_fail
;
18359 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
18366 SWIGINTERN PyObject
*_wrap_FontData_GetChosenFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18367 PyObject
*resultobj
= 0;
18368 wxFontData
*arg1
= (wxFontData
*) 0 ;
18372 PyObject
*swig_obj
[1] ;
18374 if (!args
) SWIG_fail
;
18375 swig_obj
[0] = args
;
18376 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18377 if (!SWIG_IsOK(res1
)) {
18378 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetChosenFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18380 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18383 result
= (arg1
)->GetChosenFont();
18384 wxPyEndAllowThreads(__tstate
);
18385 if (PyErr_Occurred()) SWIG_fail
;
18387 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
18394 SWIGINTERN PyObject
*_wrap_FontData_GetEnableEffects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18395 PyObject
*resultobj
= 0;
18396 wxFontData
*arg1
= (wxFontData
*) 0 ;
18400 PyObject
*swig_obj
[1] ;
18402 if (!args
) SWIG_fail
;
18403 swig_obj
[0] = args
;
18404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18405 if (!SWIG_IsOK(res1
)) {
18406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetEnableEffects" "', expected argument " "1"" of type '" "wxFontData *""'");
18408 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18411 result
= (bool)(arg1
)->GetEnableEffects();
18412 wxPyEndAllowThreads(__tstate
);
18413 if (PyErr_Occurred()) SWIG_fail
;
18416 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18424 SWIGINTERN PyObject
*_wrap_FontData_GetInitialFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18425 PyObject
*resultobj
= 0;
18426 wxFontData
*arg1
= (wxFontData
*) 0 ;
18430 PyObject
*swig_obj
[1] ;
18432 if (!args
) SWIG_fail
;
18433 swig_obj
[0] = args
;
18434 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18435 if (!SWIG_IsOK(res1
)) {
18436 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetInitialFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18438 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18441 result
= (arg1
)->GetInitialFont();
18442 wxPyEndAllowThreads(__tstate
);
18443 if (PyErr_Occurred()) SWIG_fail
;
18445 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
18452 SWIGINTERN PyObject
*_wrap_FontData_GetShowHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18453 PyObject
*resultobj
= 0;
18454 wxFontData
*arg1
= (wxFontData
*) 0 ;
18458 PyObject
*swig_obj
[1] ;
18460 if (!args
) SWIG_fail
;
18461 swig_obj
[0] = args
;
18462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18463 if (!SWIG_IsOK(res1
)) {
18464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetShowHelp" "', expected argument " "1"" of type '" "wxFontData *""'");
18466 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18469 result
= (bool)(arg1
)->GetShowHelp();
18470 wxPyEndAllowThreads(__tstate
);
18471 if (PyErr_Occurred()) SWIG_fail
;
18474 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18482 SWIGINTERN PyObject
*_wrap_FontData_SetAllowSymbols(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18483 PyObject
*resultobj
= 0;
18484 wxFontData
*arg1
= (wxFontData
*) 0 ;
18490 PyObject
* obj0
= 0 ;
18491 PyObject
* obj1
= 0 ;
18492 char * kwnames
[] = {
18493 (char *) "self",(char *) "allowSymbols", NULL
18496 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetAllowSymbols",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18497 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18498 if (!SWIG_IsOK(res1
)) {
18499 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetAllowSymbols" "', expected argument " "1"" of type '" "wxFontData *""'");
18501 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18502 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18503 if (!SWIG_IsOK(ecode2
)) {
18504 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetAllowSymbols" "', expected argument " "2"" of type '" "bool""'");
18506 arg2
= static_cast< bool >(val2
);
18508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18509 (arg1
)->SetAllowSymbols(arg2
);
18510 wxPyEndAllowThreads(__tstate
);
18511 if (PyErr_Occurred()) SWIG_fail
;
18513 resultobj
= SWIG_Py_Void();
18520 SWIGINTERN PyObject
*_wrap_FontData_SetChosenFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18521 PyObject
*resultobj
= 0;
18522 wxFontData
*arg1
= (wxFontData
*) 0 ;
18528 PyObject
* obj0
= 0 ;
18529 PyObject
* obj1
= 0 ;
18530 char * kwnames
[] = {
18531 (char *) "self",(char *) "font", NULL
18534 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetChosenFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18535 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18536 if (!SWIG_IsOK(res1
)) {
18537 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetChosenFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18539 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18540 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
18541 if (!SWIG_IsOK(res2
)) {
18542 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontData_SetChosenFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18545 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FontData_SetChosenFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18547 arg2
= reinterpret_cast< wxFont
* >(argp2
);
18549 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18550 (arg1
)->SetChosenFont((wxFont
const &)*arg2
);
18551 wxPyEndAllowThreads(__tstate
);
18552 if (PyErr_Occurred()) SWIG_fail
;
18554 resultobj
= SWIG_Py_Void();
18561 SWIGINTERN PyObject
*_wrap_FontData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18562 PyObject
*resultobj
= 0;
18563 wxFontData
*arg1
= (wxFontData
*) 0 ;
18564 wxColour
*arg2
= 0 ;
18568 PyObject
* obj0
= 0 ;
18569 PyObject
* obj1
= 0 ;
18570 char * kwnames
[] = {
18571 (char *) "self",(char *) "colour", NULL
18574 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18576 if (!SWIG_IsOK(res1
)) {
18577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetColour" "', expected argument " "1"" of type '" "wxFontData *""'");
18579 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18582 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
18585 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18586 (arg1
)->SetColour((wxColour
const &)*arg2
);
18587 wxPyEndAllowThreads(__tstate
);
18588 if (PyErr_Occurred()) SWIG_fail
;
18590 resultobj
= SWIG_Py_Void();
18597 SWIGINTERN PyObject
*_wrap_FontData_SetInitialFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18598 PyObject
*resultobj
= 0;
18599 wxFontData
*arg1
= (wxFontData
*) 0 ;
18605 PyObject
* obj0
= 0 ;
18606 PyObject
* obj1
= 0 ;
18607 char * kwnames
[] = {
18608 (char *) "self",(char *) "font", NULL
18611 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetInitialFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18612 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18613 if (!SWIG_IsOK(res1
)) {
18614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetInitialFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18616 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18617 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
18618 if (!SWIG_IsOK(res2
)) {
18619 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontData_SetInitialFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18622 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FontData_SetInitialFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18624 arg2
= reinterpret_cast< wxFont
* >(argp2
);
18626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18627 (arg1
)->SetInitialFont((wxFont
const &)*arg2
);
18628 wxPyEndAllowThreads(__tstate
);
18629 if (PyErr_Occurred()) SWIG_fail
;
18631 resultobj
= SWIG_Py_Void();
18638 SWIGINTERN PyObject
*_wrap_FontData_SetRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18639 PyObject
*resultobj
= 0;
18640 wxFontData
*arg1
= (wxFontData
*) 0 ;
18649 PyObject
* obj0
= 0 ;
18650 PyObject
* obj1
= 0 ;
18651 PyObject
* obj2
= 0 ;
18652 char * kwnames
[] = {
18653 (char *) "self",(char *) "min",(char *) "max", NULL
18656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FontData_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18658 if (!SWIG_IsOK(res1
)) {
18659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetRange" "', expected argument " "1"" of type '" "wxFontData *""'");
18661 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18663 if (!SWIG_IsOK(ecode2
)) {
18664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetRange" "', expected argument " "2"" of type '" "int""'");
18666 arg2
= static_cast< int >(val2
);
18667 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18668 if (!SWIG_IsOK(ecode3
)) {
18669 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FontData_SetRange" "', expected argument " "3"" of type '" "int""'");
18671 arg3
= static_cast< int >(val3
);
18673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18674 (arg1
)->SetRange(arg2
,arg3
);
18675 wxPyEndAllowThreads(__tstate
);
18676 if (PyErr_Occurred()) SWIG_fail
;
18678 resultobj
= SWIG_Py_Void();
18685 SWIGINTERN PyObject
*_wrap_FontData_SetShowHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18686 PyObject
*resultobj
= 0;
18687 wxFontData
*arg1
= (wxFontData
*) 0 ;
18693 PyObject
* obj0
= 0 ;
18694 PyObject
* obj1
= 0 ;
18695 char * kwnames
[] = {
18696 (char *) "self",(char *) "showHelp", NULL
18699 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetShowHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18700 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18701 if (!SWIG_IsOK(res1
)) {
18702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetShowHelp" "', expected argument " "1"" of type '" "wxFontData *""'");
18704 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18705 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18706 if (!SWIG_IsOK(ecode2
)) {
18707 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetShowHelp" "', expected argument " "2"" of type '" "bool""'");
18709 arg2
= static_cast< bool >(val2
);
18711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18712 (arg1
)->SetShowHelp(arg2
);
18713 wxPyEndAllowThreads(__tstate
);
18714 if (PyErr_Occurred()) SWIG_fail
;
18716 resultobj
= SWIG_Py_Void();
18723 SWIGINTERN PyObject
*FontData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18725 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18726 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontData
, SWIG_NewClientData(obj
));
18727 return SWIG_Py_Void();
18730 SWIGINTERN PyObject
*FontData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18731 return SWIG_Python_InitShadowInstance(args
);
18734 SWIGINTERN PyObject
*_wrap_new_FontDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18735 PyObject
*resultobj
= 0;
18736 wxWindow
*arg1
= (wxWindow
*) 0 ;
18737 wxFontData
*arg2
= 0 ;
18738 wxFontDialog
*result
= 0 ;
18743 PyObject
* obj0
= 0 ;
18744 PyObject
* obj1
= 0 ;
18745 char * kwnames
[] = {
18746 (char *) "parent",(char *) "data", NULL
18749 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_FontDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18750 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18751 if (!SWIG_IsOK(res1
)) {
18752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FontDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18754 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18755 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFontData
, 0 | 0);
18756 if (!SWIG_IsOK(res2
)) {
18757 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FontDialog" "', expected argument " "2"" of type '" "wxFontData const &""'");
18760 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FontDialog" "', expected argument " "2"" of type '" "wxFontData const &""'");
18762 arg2
= reinterpret_cast< wxFontData
* >(argp2
);
18764 if (!wxPyCheckForApp()) SWIG_fail
;
18765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18766 result
= (wxFontDialog
*)new wxFontDialog(arg1
,(wxFontData
const &)*arg2
);
18767 wxPyEndAllowThreads(__tstate
);
18768 if (PyErr_Occurred()) SWIG_fail
;
18770 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontDialog
, SWIG_POINTER_NEW
| 0 );
18777 SWIGINTERN PyObject
*_wrap_FontDialog_GetFontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18778 PyObject
*resultobj
= 0;
18779 wxFontDialog
*arg1
= (wxFontDialog
*) 0 ;
18780 wxFontData
*result
= 0 ;
18783 PyObject
*swig_obj
[1] ;
18785 if (!args
) SWIG_fail
;
18786 swig_obj
[0] = args
;
18787 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontDialog
, 0 | 0 );
18788 if (!SWIG_IsOK(res1
)) {
18789 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontDialog_GetFontData" "', expected argument " "1"" of type '" "wxFontDialog *""'");
18791 arg1
= reinterpret_cast< wxFontDialog
* >(argp1
);
18793 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18795 wxFontData
&_result_ref
= (arg1
)->GetFontData();
18796 result
= (wxFontData
*) &_result_ref
;
18798 wxPyEndAllowThreads(__tstate
);
18799 if (PyErr_Occurred()) SWIG_fail
;
18801 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontData
, 0 | 0 );
18808 SWIGINTERN PyObject
*FontDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18810 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18811 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontDialog
, SWIG_NewClientData(obj
));
18812 return SWIG_Py_Void();
18815 SWIGINTERN PyObject
*FontDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18816 return SWIG_Python_InitShadowInstance(args
);
18819 SWIGINTERN PyObject
*_wrap_GetFontFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18820 PyObject
*resultobj
= 0;
18821 wxWindow
*arg1
= (wxWindow
*) NULL
;
18822 wxFont
const &arg2_defvalue
= wxNullFont
;
18823 wxFont
*arg2
= (wxFont
*) &arg2_defvalue
;
18824 wxString
const &arg3_defvalue
= wxPyEmptyString
;
18825 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
18831 bool temp3
= false ;
18832 PyObject
* obj0
= 0 ;
18833 PyObject
* obj1
= 0 ;
18834 PyObject
* obj2
= 0 ;
18835 char * kwnames
[] = {
18836 (char *) "parent",(char *) "fontInit",(char *) "caption", NULL
18839 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:GetFontFromUser",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18842 if (!SWIG_IsOK(res1
)) {
18843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GetFontFromUser" "', expected argument " "1"" of type '" "wxWindow *""'");
18845 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18848 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
18849 if (!SWIG_IsOK(res2
)) {
18850 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GetFontFromUser" "', expected argument " "2"" of type '" "wxFont const &""'");
18853 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GetFontFromUser" "', expected argument " "2"" of type '" "wxFont const &""'");
18855 arg2
= reinterpret_cast< wxFont
* >(argp2
);
18859 arg3
= wxString_in_helper(obj2
);
18860 if (arg3
== NULL
) SWIG_fail
;
18865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18866 result
= wxGetFontFromUser(arg1
,(wxFont
const &)*arg2
,(wxString
const &)*arg3
);
18867 wxPyEndAllowThreads(__tstate
);
18868 if (PyErr_Occurred()) SWIG_fail
;
18870 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
18885 SWIGINTERN PyObject
*_wrap_new_MessageDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18886 PyObject
*resultobj
= 0;
18887 wxWindow
*arg1
= (wxWindow
*) 0 ;
18888 wxString
*arg2
= 0 ;
18889 wxString
const &arg3_defvalue
= wxPyMessageBoxCaptionStr
;
18890 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
18891 long arg4
= (long) wxOK
|wxCANCEL
|wxCENTRE
;
18892 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
18893 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
18894 wxMessageDialog
*result
= 0 ;
18897 bool temp2
= false ;
18898 bool temp3
= false ;
18902 PyObject
* obj0
= 0 ;
18903 PyObject
* obj1
= 0 ;
18904 PyObject
* obj2
= 0 ;
18905 PyObject
* obj3
= 0 ;
18906 PyObject
* obj4
= 0 ;
18907 char * kwnames
[] = {
18908 (char *) "parent",(char *) "message",(char *) "caption",(char *) "style",(char *) "pos", NULL
18911 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_MessageDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
18912 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18913 if (!SWIG_IsOK(res1
)) {
18914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MessageDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18916 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18918 arg2
= wxString_in_helper(obj1
);
18919 if (arg2
== NULL
) SWIG_fail
;
18924 arg3
= wxString_in_helper(obj2
);
18925 if (arg3
== NULL
) SWIG_fail
;
18930 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
18931 if (!SWIG_IsOK(ecode4
)) {
18932 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_MessageDialog" "', expected argument " "4"" of type '" "long""'");
18934 arg4
= static_cast< long >(val4
);
18939 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
18943 if (!wxPyCheckForApp()) SWIG_fail
;
18944 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18945 result
= (wxMessageDialog
*)new wxMessageDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,(wxPoint
const &)*arg5
);
18946 wxPyEndAllowThreads(__tstate
);
18947 if (PyErr_Occurred()) SWIG_fail
;
18949 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMessageDialog
, SWIG_POINTER_NEW
| 0 );
18972 SWIGINTERN PyObject
*MessageDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18974 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18975 SWIG_TypeNewClientData(SWIGTYPE_p_wxMessageDialog
, SWIG_NewClientData(obj
));
18976 return SWIG_Py_Void();
18979 SWIGINTERN PyObject
*MessageDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18980 return SWIG_Python_InitShadowInstance(args
);
18983 SWIGINTERN PyObject
*_wrap_new_ProgressDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18984 PyObject
*resultobj
= 0;
18985 wxString
*arg1
= 0 ;
18986 wxString
*arg2
= 0 ;
18987 int arg3
= (int) 100 ;
18988 wxWindow
*arg4
= (wxWindow
*) NULL
;
18989 int arg5
= (int) wxPD_AUTO_HIDE
|wxPD_APP_MODAL
;
18990 wxProgressDialog
*result
= 0 ;
18991 bool temp1
= false ;
18992 bool temp2
= false ;
18999 PyObject
* obj0
= 0 ;
19000 PyObject
* obj1
= 0 ;
19001 PyObject
* obj2
= 0 ;
19002 PyObject
* obj3
= 0 ;
19003 PyObject
* obj4
= 0 ;
19004 char * kwnames
[] = {
19005 (char *) "title",(char *) "message",(char *) "maximum",(char *) "parent",(char *) "style", NULL
19008 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_ProgressDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19010 arg1
= wxString_in_helper(obj0
);
19011 if (arg1
== NULL
) SWIG_fail
;
19015 arg2
= wxString_in_helper(obj1
);
19016 if (arg2
== NULL
) SWIG_fail
;
19020 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19021 if (!SWIG_IsOK(ecode3
)) {
19022 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_ProgressDialog" "', expected argument " "3"" of type '" "int""'");
19024 arg3
= static_cast< int >(val3
);
19027 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19028 if (!SWIG_IsOK(res4
)) {
19029 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_ProgressDialog" "', expected argument " "4"" of type '" "wxWindow *""'");
19031 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
19034 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19035 if (!SWIG_IsOK(ecode5
)) {
19036 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_ProgressDialog" "', expected argument " "5"" of type '" "int""'");
19038 arg5
= static_cast< int >(val5
);
19041 if (!wxPyCheckForApp()) SWIG_fail
;
19042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19043 result
= (wxProgressDialog
*)new wxProgressDialog((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
);
19044 wxPyEndAllowThreads(__tstate
);
19045 if (PyErr_Occurred()) SWIG_fail
;
19047 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxProgressDialog
, SWIG_POINTER_NEW
| 0 );
19070 SWIGINTERN PyObject
*_wrap_ProgressDialog_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19071 PyObject
*resultobj
= 0;
19072 wxProgressDialog
*arg1
= (wxProgressDialog
*) 0 ;
19074 wxString
const &arg3_defvalue
= wxPyEmptyString
;
19075 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
19081 bool temp3
= false ;
19082 PyObject
* obj0
= 0 ;
19083 PyObject
* obj1
= 0 ;
19084 PyObject
* obj2
= 0 ;
19085 char * kwnames
[] = {
19086 (char *) "self",(char *) "value",(char *) "newmsg", NULL
19089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ProgressDialog_Update",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxProgressDialog
, 0 | 0 );
19091 if (!SWIG_IsOK(res1
)) {
19092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProgressDialog_Update" "', expected argument " "1"" of type '" "wxProgressDialog *""'");
19094 arg1
= reinterpret_cast< wxProgressDialog
* >(argp1
);
19095 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19096 if (!SWIG_IsOK(ecode2
)) {
19097 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ProgressDialog_Update" "', expected argument " "2"" of type '" "int""'");
19099 arg2
= static_cast< int >(val2
);
19102 arg3
= wxString_in_helper(obj2
);
19103 if (arg3
== NULL
) SWIG_fail
;
19108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19109 result
= (bool)(arg1
)->Update(arg2
,(wxString
const &)*arg3
);
19110 wxPyEndAllowThreads(__tstate
);
19111 if (PyErr_Occurred()) SWIG_fail
;
19114 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19130 SWIGINTERN PyObject
*_wrap_ProgressDialog_Resume(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19131 PyObject
*resultobj
= 0;
19132 wxProgressDialog
*arg1
= (wxProgressDialog
*) 0 ;
19135 PyObject
*swig_obj
[1] ;
19137 if (!args
) SWIG_fail
;
19138 swig_obj
[0] = args
;
19139 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProgressDialog
, 0 | 0 );
19140 if (!SWIG_IsOK(res1
)) {
19141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProgressDialog_Resume" "', expected argument " "1"" of type '" "wxProgressDialog *""'");
19143 arg1
= reinterpret_cast< wxProgressDialog
* >(argp1
);
19145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19147 wxPyEndAllowThreads(__tstate
);
19148 if (PyErr_Occurred()) SWIG_fail
;
19150 resultobj
= SWIG_Py_Void();
19157 SWIGINTERN PyObject
*ProgressDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19159 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19160 SWIG_TypeNewClientData(SWIGTYPE_p_wxProgressDialog
, SWIG_NewClientData(obj
));
19161 return SWIG_Py_Void();
19164 SWIGINTERN PyObject
*ProgressDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19165 return SWIG_Python_InitShadowInstance(args
);
19168 SWIGINTERN PyObject
*_wrap_new_FindDialogEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19169 PyObject
*resultobj
= 0;
19170 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
19171 int arg2
= (int) 0 ;
19172 wxFindDialogEvent
*result
= 0 ;
19177 PyObject
* obj0
= 0 ;
19178 PyObject
* obj1
= 0 ;
19179 char * kwnames
[] = {
19180 (char *) "commandType",(char *) "id", NULL
19183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FindDialogEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19185 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19186 if (!SWIG_IsOK(ecode1
)) {
19187 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FindDialogEvent" "', expected argument " "1"" of type '" "wxEventType""'");
19189 arg1
= static_cast< wxEventType
>(val1
);
19192 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19193 if (!SWIG_IsOK(ecode2
)) {
19194 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FindDialogEvent" "', expected argument " "2"" of type '" "int""'");
19196 arg2
= static_cast< int >(val2
);
19199 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19200 result
= (wxFindDialogEvent
*)new wxFindDialogEvent(arg1
,arg2
);
19201 wxPyEndAllowThreads(__tstate
);
19202 if (PyErr_Occurred()) SWIG_fail
;
19204 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_NEW
| 0 );
19211 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19212 PyObject
*resultobj
= 0;
19213 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19217 PyObject
*swig_obj
[1] ;
19219 if (!args
) SWIG_fail
;
19220 swig_obj
[0] = args
;
19221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19222 if (!SWIG_IsOK(res1
)) {
19223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetFlags" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19225 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19228 result
= (int)(arg1
)->GetFlags();
19229 wxPyEndAllowThreads(__tstate
);
19230 if (PyErr_Occurred()) SWIG_fail
;
19232 resultobj
= SWIG_From_int(static_cast< int >(result
));
19239 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19240 PyObject
*resultobj
= 0;
19241 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19242 wxString
*result
= 0 ;
19245 PyObject
*swig_obj
[1] ;
19247 if (!args
) SWIG_fail
;
19248 swig_obj
[0] = args
;
19249 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19250 if (!SWIG_IsOK(res1
)) {
19251 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetFindString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19253 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19255 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19257 wxString
const &_result_ref
= (arg1
)->GetFindString();
19258 result
= (wxString
*) &_result_ref
;
19260 wxPyEndAllowThreads(__tstate
);
19261 if (PyErr_Occurred()) SWIG_fail
;
19265 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19267 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19276 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19277 PyObject
*resultobj
= 0;
19278 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19279 wxString
*result
= 0 ;
19282 PyObject
*swig_obj
[1] ;
19284 if (!args
) SWIG_fail
;
19285 swig_obj
[0] = args
;
19286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19287 if (!SWIG_IsOK(res1
)) {
19288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetReplaceString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19290 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19294 wxString
const &_result_ref
= (arg1
)->GetReplaceString();
19295 result
= (wxString
*) &_result_ref
;
19297 wxPyEndAllowThreads(__tstate
);
19298 if (PyErr_Occurred()) SWIG_fail
;
19302 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19304 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19313 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19314 PyObject
*resultobj
= 0;
19315 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19316 wxFindReplaceDialog
*result
= 0 ;
19319 PyObject
*swig_obj
[1] ;
19321 if (!args
) SWIG_fail
;
19322 swig_obj
[0] = args
;
19323 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19324 if (!SWIG_IsOK(res1
)) {
19325 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetDialog" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19327 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19329 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19330 result
= (wxFindReplaceDialog
*)(arg1
)->GetDialog();
19331 wxPyEndAllowThreads(__tstate
);
19332 if (PyErr_Occurred()) SWIG_fail
;
19334 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
19341 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19342 PyObject
*resultobj
= 0;
19343 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19349 PyObject
* obj0
= 0 ;
19350 PyObject
* obj1
= 0 ;
19351 char * kwnames
[] = {
19352 (char *) "self",(char *) "flags", NULL
19355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19357 if (!SWIG_IsOK(res1
)) {
19358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetFlags" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19360 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19361 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19362 if (!SWIG_IsOK(ecode2
)) {
19363 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FindDialogEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
19365 arg2
= static_cast< int >(val2
);
19367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19368 (arg1
)->SetFlags(arg2
);
19369 wxPyEndAllowThreads(__tstate
);
19370 if (PyErr_Occurred()) SWIG_fail
;
19372 resultobj
= SWIG_Py_Void();
19379 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19380 PyObject
*resultobj
= 0;
19381 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19382 wxString
*arg2
= 0 ;
19385 bool temp2
= false ;
19386 PyObject
* obj0
= 0 ;
19387 PyObject
* obj1
= 0 ;
19388 char * kwnames
[] = {
19389 (char *) "self",(char *) "str", NULL
19392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFindString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19393 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19394 if (!SWIG_IsOK(res1
)) {
19395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetFindString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19397 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19399 arg2
= wxString_in_helper(obj1
);
19400 if (arg2
== NULL
) SWIG_fail
;
19404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19405 (arg1
)->SetFindString((wxString
const &)*arg2
);
19406 wxPyEndAllowThreads(__tstate
);
19407 if (PyErr_Occurred()) SWIG_fail
;
19409 resultobj
= SWIG_Py_Void();
19424 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19425 PyObject
*resultobj
= 0;
19426 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19427 wxString
*arg2
= 0 ;
19430 bool temp2
= false ;
19431 PyObject
* obj0
= 0 ;
19432 PyObject
* obj1
= 0 ;
19433 char * kwnames
[] = {
19434 (char *) "self",(char *) "str", NULL
19437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetReplaceString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19439 if (!SWIG_IsOK(res1
)) {
19440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetReplaceString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19442 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19444 arg2
= wxString_in_helper(obj1
);
19445 if (arg2
== NULL
) SWIG_fail
;
19449 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19450 (arg1
)->SetReplaceString((wxString
const &)*arg2
);
19451 wxPyEndAllowThreads(__tstate
);
19452 if (PyErr_Occurred()) SWIG_fail
;
19454 resultobj
= SWIG_Py_Void();
19469 SWIGINTERN PyObject
*FindDialogEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19471 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19472 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindDialogEvent
, SWIG_NewClientData(obj
));
19473 return SWIG_Py_Void();
19476 SWIGINTERN PyObject
*FindDialogEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19477 return SWIG_Python_InitShadowInstance(args
);
19480 SWIGINTERN PyObject
*_wrap_new_FindReplaceData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19481 PyObject
*resultobj
= 0;
19482 int arg1
= (int) 0 ;
19483 wxFindReplaceData
*result
= 0 ;
19486 PyObject
* obj0
= 0 ;
19487 char * kwnames
[] = {
19488 (char *) "flags", NULL
19491 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FindReplaceData",kwnames
,&obj0
)) SWIG_fail
;
19493 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19494 if (!SWIG_IsOK(ecode1
)) {
19495 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FindReplaceData" "', expected argument " "1"" of type '" "int""'");
19497 arg1
= static_cast< int >(val1
);
19500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19501 result
= (wxFindReplaceData
*)new wxFindReplaceData(arg1
);
19502 wxPyEndAllowThreads(__tstate
);
19503 if (PyErr_Occurred()) SWIG_fail
;
19505 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_NEW
| 0 );
19512 SWIGINTERN PyObject
*_wrap_delete_FindReplaceData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19513 PyObject
*resultobj
= 0;
19514 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19517 PyObject
*swig_obj
[1] ;
19519 if (!args
) SWIG_fail
;
19520 swig_obj
[0] = args
;
19521 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_DISOWN
| 0 );
19522 if (!SWIG_IsOK(res1
)) {
19523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FindReplaceData" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19525 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19530 wxPyEndAllowThreads(__tstate
);
19531 if (PyErr_Occurred()) SWIG_fail
;
19533 resultobj
= SWIG_Py_Void();
19540 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19541 PyObject
*resultobj
= 0;
19542 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19543 wxString
*result
= 0 ;
19546 PyObject
*swig_obj
[1] ;
19548 if (!args
) SWIG_fail
;
19549 swig_obj
[0] = args
;
19550 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19551 if (!SWIG_IsOK(res1
)) {
19552 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetFindString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19554 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19558 wxString
const &_result_ref
= (arg1
)->GetFindString();
19559 result
= (wxString
*) &_result_ref
;
19561 wxPyEndAllowThreads(__tstate
);
19562 if (PyErr_Occurred()) SWIG_fail
;
19566 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19568 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19577 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19578 PyObject
*resultobj
= 0;
19579 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19580 wxString
*result
= 0 ;
19583 PyObject
*swig_obj
[1] ;
19585 if (!args
) SWIG_fail
;
19586 swig_obj
[0] = args
;
19587 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19588 if (!SWIG_IsOK(res1
)) {
19589 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetReplaceString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19591 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19593 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19595 wxString
const &_result_ref
= (arg1
)->GetReplaceString();
19596 result
= (wxString
*) &_result_ref
;
19598 wxPyEndAllowThreads(__tstate
);
19599 if (PyErr_Occurred()) SWIG_fail
;
19603 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19605 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19614 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19615 PyObject
*resultobj
= 0;
19616 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19620 PyObject
*swig_obj
[1] ;
19622 if (!args
) SWIG_fail
;
19623 swig_obj
[0] = args
;
19624 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19625 if (!SWIG_IsOK(res1
)) {
19626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetFlags" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19628 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19631 result
= (int)(arg1
)->GetFlags();
19632 wxPyEndAllowThreads(__tstate
);
19633 if (PyErr_Occurred()) SWIG_fail
;
19635 resultobj
= SWIG_From_int(static_cast< int >(result
));
19642 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19643 PyObject
*resultobj
= 0;
19644 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19650 PyObject
* obj0
= 0 ;
19651 PyObject
* obj1
= 0 ;
19652 char * kwnames
[] = {
19653 (char *) "self",(char *) "flags", NULL
19656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19658 if (!SWIG_IsOK(res1
)) {
19659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetFlags" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19661 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19663 if (!SWIG_IsOK(ecode2
)) {
19664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FindReplaceData_SetFlags" "', expected argument " "2"" of type '" "int""'");
19666 arg2
= static_cast< int >(val2
);
19668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19669 (arg1
)->SetFlags(arg2
);
19670 wxPyEndAllowThreads(__tstate
);
19671 if (PyErr_Occurred()) SWIG_fail
;
19673 resultobj
= SWIG_Py_Void();
19680 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19681 PyObject
*resultobj
= 0;
19682 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19683 wxString
*arg2
= 0 ;
19686 bool temp2
= false ;
19687 PyObject
* obj0
= 0 ;
19688 PyObject
* obj1
= 0 ;
19689 char * kwnames
[] = {
19690 (char *) "self",(char *) "str", NULL
19693 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFindString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19694 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19695 if (!SWIG_IsOK(res1
)) {
19696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetFindString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19698 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19700 arg2
= wxString_in_helper(obj1
);
19701 if (arg2
== NULL
) SWIG_fail
;
19705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19706 (arg1
)->SetFindString((wxString
const &)*arg2
);
19707 wxPyEndAllowThreads(__tstate
);
19708 if (PyErr_Occurred()) SWIG_fail
;
19710 resultobj
= SWIG_Py_Void();
19725 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19726 PyObject
*resultobj
= 0;
19727 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19728 wxString
*arg2
= 0 ;
19731 bool temp2
= false ;
19732 PyObject
* obj0
= 0 ;
19733 PyObject
* obj1
= 0 ;
19734 char * kwnames
[] = {
19735 (char *) "self",(char *) "str", NULL
19738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetReplaceString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19740 if (!SWIG_IsOK(res1
)) {
19741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetReplaceString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19743 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19745 arg2
= wxString_in_helper(obj1
);
19746 if (arg2
== NULL
) SWIG_fail
;
19750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19751 (arg1
)->SetReplaceString((wxString
const &)*arg2
);
19752 wxPyEndAllowThreads(__tstate
);
19753 if (PyErr_Occurred()) SWIG_fail
;
19755 resultobj
= SWIG_Py_Void();
19770 SWIGINTERN PyObject
*FindReplaceData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19772 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19773 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindReplaceData
, SWIG_NewClientData(obj
));
19774 return SWIG_Py_Void();
19777 SWIGINTERN PyObject
*FindReplaceData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19778 return SWIG_Python_InitShadowInstance(args
);
19781 SWIGINTERN PyObject
*_wrap_new_FindReplaceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19782 PyObject
*resultobj
= 0;
19783 wxWindow
*arg1
= (wxWindow
*) 0 ;
19784 wxFindReplaceData
*arg2
= (wxFindReplaceData
*) 0 ;
19785 wxString
*arg3
= 0 ;
19786 int arg4
= (int) 0 ;
19787 wxFindReplaceDialog
*result
= 0 ;
19792 bool temp3
= false ;
19795 PyObject
* obj0
= 0 ;
19796 PyObject
* obj1
= 0 ;
19797 PyObject
* obj2
= 0 ;
19798 PyObject
* obj3
= 0 ;
19799 char * kwnames
[] = {
19800 (char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL
19803 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FindReplaceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
19804 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19805 if (!SWIG_IsOK(res1
)) {
19806 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FindReplaceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
19808 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
19809 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19810 if (!SWIG_IsOK(res2
)) {
19811 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FindReplaceDialog" "', expected argument " "2"" of type '" "wxFindReplaceData *""'");
19813 arg2
= reinterpret_cast< wxFindReplaceData
* >(argp2
);
19815 arg3
= wxString_in_helper(obj2
);
19816 if (arg3
== NULL
) SWIG_fail
;
19820 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
19821 if (!SWIG_IsOK(ecode4
)) {
19822 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FindReplaceDialog" "', expected argument " "4"" of type '" "int""'");
19824 arg4
= static_cast< int >(val4
);
19827 if (!wxPyCheckForApp()) SWIG_fail
;
19828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19829 result
= (wxFindReplaceDialog
*)new wxFindReplaceDialog(arg1
,arg2
,(wxString
const &)*arg3
,arg4
);
19830 wxPyEndAllowThreads(__tstate
);
19831 if (PyErr_Occurred()) SWIG_fail
;
19833 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_NEW
| 0 );
19848 SWIGINTERN PyObject
*_wrap_new_PreFindReplaceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19849 PyObject
*resultobj
= 0;
19850 wxFindReplaceDialog
*result
= 0 ;
19852 if (!SWIG_Python_UnpackTuple(args
,"new_PreFindReplaceDialog",0,0,0)) SWIG_fail
;
19854 if (!wxPyCheckForApp()) SWIG_fail
;
19855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19856 result
= (wxFindReplaceDialog
*)new wxFindReplaceDialog();
19857 wxPyEndAllowThreads(__tstate
);
19858 if (PyErr_Occurred()) SWIG_fail
;
19860 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_OWN
| 0 );
19867 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19868 PyObject
*resultobj
= 0;
19869 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
19870 wxWindow
*arg2
= (wxWindow
*) 0 ;
19871 wxFindReplaceData
*arg3
= (wxFindReplaceData
*) 0 ;
19872 wxString
*arg4
= 0 ;
19873 int arg5
= (int) 0 ;
19881 bool temp4
= false ;
19884 PyObject
* obj0
= 0 ;
19885 PyObject
* obj1
= 0 ;
19886 PyObject
* obj2
= 0 ;
19887 PyObject
* obj3
= 0 ;
19888 PyObject
* obj4
= 0 ;
19889 char * kwnames
[] = {
19890 (char *) "self",(char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL
19893 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:FindReplaceDialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19894 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
19895 if (!SWIG_IsOK(res1
)) {
19896 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_Create" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
19898 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
19899 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19900 if (!SWIG_IsOK(res2
)) {
19901 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FindReplaceDialog_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
19903 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
19904 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19905 if (!SWIG_IsOK(res3
)) {
19906 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FindReplaceDialog_Create" "', expected argument " "3"" of type '" "wxFindReplaceData *""'");
19908 arg3
= reinterpret_cast< wxFindReplaceData
* >(argp3
);
19910 arg4
= wxString_in_helper(obj3
);
19911 if (arg4
== NULL
) SWIG_fail
;
19915 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19916 if (!SWIG_IsOK(ecode5
)) {
19917 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "FindReplaceDialog_Create" "', expected argument " "5"" of type '" "int""'");
19919 arg5
= static_cast< int >(val5
);
19922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19923 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
19924 wxPyEndAllowThreads(__tstate
);
19925 if (PyErr_Occurred()) SWIG_fail
;
19928 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19944 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_GetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19945 PyObject
*resultobj
= 0;
19946 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
19947 wxFindReplaceData
*result
= 0 ;
19950 PyObject
*swig_obj
[1] ;
19952 if (!args
) SWIG_fail
;
19953 swig_obj
[0] = args
;
19954 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
19955 if (!SWIG_IsOK(res1
)) {
19956 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_GetData" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
19958 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
19960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19961 result
= (wxFindReplaceData
*)(arg1
)->GetData();
19962 wxPyEndAllowThreads(__tstate
);
19963 if (PyErr_Occurred()) SWIG_fail
;
19965 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19972 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19973 PyObject
*resultobj
= 0;
19974 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
19975 wxFindReplaceData
*arg2
= (wxFindReplaceData
*) 0 ;
19980 PyObject
* obj0
= 0 ;
19981 PyObject
* obj1
= 0 ;
19982 char * kwnames
[] = {
19983 (char *) "self",(char *) "data", NULL
19986 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceDialog_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19987 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
19988 if (!SWIG_IsOK(res1
)) {
19989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_SetData" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
19991 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
19992 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19993 if (!SWIG_IsOK(res2
)) {
19994 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FindReplaceDialog_SetData" "', expected argument " "2"" of type '" "wxFindReplaceData *""'");
19996 arg2
= reinterpret_cast< wxFindReplaceData
* >(argp2
);
19998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19999 (arg1
)->SetData(arg2
);
20000 wxPyEndAllowThreads(__tstate
);
20001 if (PyErr_Occurred()) SWIG_fail
;
20003 resultobj
= SWIG_Py_Void();
20010 SWIGINTERN PyObject
*FindReplaceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20012 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20013 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindReplaceDialog
, SWIG_NewClientData(obj
));
20014 return SWIG_Py_Void();
20017 SWIGINTERN PyObject
*FindReplaceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20018 return SWIG_Python_InitShadowInstance(args
);
20021 SWIGINTERN PyObject
*_wrap_new_MDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20022 PyObject
*resultobj
= 0;
20023 wxWindow
*arg1
= (wxWindow
*) 0 ;
20024 int arg2
= (int) (int)-1 ;
20025 wxString
const &arg3_defvalue
= wxPyEmptyString
;
20026 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
20027 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
20028 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
20029 wxSize
const &arg5_defvalue
= wxDefaultSize
;
20030 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
20031 long arg6
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
20032 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
20033 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
20034 wxMDIParentFrame
*result
= 0 ;
20039 bool temp3
= false ;
20044 bool temp7
= false ;
20045 PyObject
* obj0
= 0 ;
20046 PyObject
* obj1
= 0 ;
20047 PyObject
* obj2
= 0 ;
20048 PyObject
* obj3
= 0 ;
20049 PyObject
* obj4
= 0 ;
20050 PyObject
* obj5
= 0 ;
20051 PyObject
* obj6
= 0 ;
20052 char * kwnames
[] = {
20053 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20056 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIParentFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
20057 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20058 if (!SWIG_IsOK(res1
)) {
20059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIParentFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
20061 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
20063 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20064 if (!SWIG_IsOK(ecode2
)) {
20065 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIParentFrame" "', expected argument " "2"" of type '" "int""'");
20067 arg2
= static_cast< int >(val2
);
20071 arg3
= wxString_in_helper(obj2
);
20072 if (arg3
== NULL
) SWIG_fail
;
20079 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
20085 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
20089 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
20090 if (!SWIG_IsOK(ecode6
)) {
20091 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MDIParentFrame" "', expected argument " "6"" of type '" "long""'");
20093 arg6
= static_cast< long >(val6
);
20097 arg7
= wxString_in_helper(obj6
);
20098 if (arg7
== NULL
) SWIG_fail
;
20103 if (!wxPyCheckForApp()) SWIG_fail
;
20104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20105 result
= (wxMDIParentFrame
*)new wxMDIParentFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
20106 wxPyEndAllowThreads(__tstate
);
20107 if (PyErr_Occurred()) SWIG_fail
;
20109 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_NEW
| 0 );
20132 SWIGINTERN PyObject
*_wrap_new_PreMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20133 PyObject
*resultobj
= 0;
20134 wxMDIParentFrame
*result
= 0 ;
20136 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIParentFrame",0,0,0)) SWIG_fail
;
20138 if (!wxPyCheckForApp()) SWIG_fail
;
20139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20140 result
= (wxMDIParentFrame
*)new wxMDIParentFrame();
20141 wxPyEndAllowThreads(__tstate
);
20142 if (PyErr_Occurred()) SWIG_fail
;
20144 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_OWN
| 0 );
20151 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20152 PyObject
*resultobj
= 0;
20153 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20154 wxWindow
*arg2
= (wxWindow
*) 0 ;
20155 int arg3
= (int) (int)-1 ;
20156 wxString
const &arg4_defvalue
= wxPyEmptyString
;
20157 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
20158 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
20159 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
20160 wxSize
const &arg6_defvalue
= wxDefaultSize
;
20161 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
20162 long arg7
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
20163 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
20164 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20172 bool temp4
= false ;
20177 bool temp8
= false ;
20178 PyObject
* obj0
= 0 ;
20179 PyObject
* obj1
= 0 ;
20180 PyObject
* obj2
= 0 ;
20181 PyObject
* obj3
= 0 ;
20182 PyObject
* obj4
= 0 ;
20183 PyObject
* obj5
= 0 ;
20184 PyObject
* obj6
= 0 ;
20185 PyObject
* obj7
= 0 ;
20186 char * kwnames
[] = {
20187 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20190 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIParentFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
20191 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20192 if (!SWIG_IsOK(res1
)) {
20193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Create" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20195 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20196 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20197 if (!SWIG_IsOK(res2
)) {
20198 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIParentFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
20200 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
20202 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
20203 if (!SWIG_IsOK(ecode3
)) {
20204 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIParentFrame_Create" "', expected argument " "3"" of type '" "int""'");
20206 arg3
= static_cast< int >(val3
);
20210 arg4
= wxString_in_helper(obj3
);
20211 if (arg4
== NULL
) SWIG_fail
;
20218 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
20224 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
20228 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
20229 if (!SWIG_IsOK(ecode7
)) {
20230 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MDIParentFrame_Create" "', expected argument " "7"" of type '" "long""'");
20232 arg7
= static_cast< long >(val7
);
20236 arg8
= wxString_in_helper(obj7
);
20237 if (arg8
== NULL
) SWIG_fail
;
20242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20243 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
20244 wxPyEndAllowThreads(__tstate
);
20245 if (PyErr_Occurred()) SWIG_fail
;
20248 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20272 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ActivateNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20273 PyObject
*resultobj
= 0;
20274 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20277 PyObject
*swig_obj
[1] ;
20279 if (!args
) SWIG_fail
;
20280 swig_obj
[0] = args
;
20281 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20282 if (!SWIG_IsOK(res1
)) {
20283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ActivateNext" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20285 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20288 (arg1
)->ActivateNext();
20289 wxPyEndAllowThreads(__tstate
);
20290 if (PyErr_Occurred()) SWIG_fail
;
20292 resultobj
= SWIG_Py_Void();
20299 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ActivatePrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20300 PyObject
*resultobj
= 0;
20301 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20304 PyObject
*swig_obj
[1] ;
20306 if (!args
) SWIG_fail
;
20307 swig_obj
[0] = args
;
20308 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20309 if (!SWIG_IsOK(res1
)) {
20310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ActivatePrevious" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20312 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20315 (arg1
)->ActivatePrevious();
20316 wxPyEndAllowThreads(__tstate
);
20317 if (PyErr_Occurred()) SWIG_fail
;
20319 resultobj
= SWIG_Py_Void();
20326 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ArrangeIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20327 PyObject
*resultobj
= 0;
20328 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20331 PyObject
*swig_obj
[1] ;
20333 if (!args
) SWIG_fail
;
20334 swig_obj
[0] = args
;
20335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20336 if (!SWIG_IsOK(res1
)) {
20337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ArrangeIcons" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20339 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20342 (arg1
)->ArrangeIcons();
20343 wxPyEndAllowThreads(__tstate
);
20344 if (PyErr_Occurred()) SWIG_fail
;
20346 resultobj
= SWIG_Py_Void();
20353 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Cascade(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20354 PyObject
*resultobj
= 0;
20355 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20358 PyObject
*swig_obj
[1] ;
20360 if (!args
) SWIG_fail
;
20361 swig_obj
[0] = args
;
20362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20363 if (!SWIG_IsOK(res1
)) {
20364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Cascade" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20366 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20370 wxPyEndAllowThreads(__tstate
);
20371 if (PyErr_Occurred()) SWIG_fail
;
20373 resultobj
= SWIG_Py_Void();
20380 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetActiveChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20381 PyObject
*resultobj
= 0;
20382 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20383 wxMDIChildFrame
*result
= 0 ;
20386 PyObject
*swig_obj
[1] ;
20388 if (!args
) SWIG_fail
;
20389 swig_obj
[0] = args
;
20390 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20391 if (!SWIG_IsOK(res1
)) {
20392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetActiveChild" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20394 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20397 result
= (wxMDIChildFrame
*)(arg1
)->GetActiveChild();
20398 wxPyEndAllowThreads(__tstate
);
20399 if (PyErr_Occurred()) SWIG_fail
;
20402 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20410 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20411 PyObject
*resultobj
= 0;
20412 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20413 wxMDIClientWindow
*result
= 0 ;
20416 PyObject
*swig_obj
[1] ;
20418 if (!args
) SWIG_fail
;
20419 swig_obj
[0] = args
;
20420 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20421 if (!SWIG_IsOK(res1
)) {
20422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetClientWindow" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20424 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20427 result
= (wxMDIClientWindow
*)(arg1
)->GetClientWindow();
20428 wxPyEndAllowThreads(__tstate
);
20429 if (PyErr_Occurred()) SWIG_fail
;
20432 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20440 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20441 PyObject
*resultobj
= 0;
20442 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20443 wxWindow
*result
= 0 ;
20446 PyObject
*swig_obj
[1] ;
20448 if (!args
) SWIG_fail
;
20449 swig_obj
[0] = args
;
20450 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20451 if (!SWIG_IsOK(res1
)) {
20452 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetToolBar" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20454 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20457 result
= (wxWindow
*)(arg1
)->GetToolBar();
20458 wxPyEndAllowThreads(__tstate
);
20459 if (PyErr_Occurred()) SWIG_fail
;
20462 resultobj
= wxPyMake_wxObject(result
, 0);
20470 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Tile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20471 PyObject
*resultobj
= 0;
20472 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20473 wxOrientation arg2
= (wxOrientation
) wxHORIZONTAL
;
20478 PyObject
* obj0
= 0 ;
20479 PyObject
* obj1
= 0 ;
20480 char * kwnames
[] = {
20481 (char *) "self",(char *) "orient", NULL
20484 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:MDIParentFrame_Tile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20485 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20486 if (!SWIG_IsOK(res1
)) {
20487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Tile" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20489 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20491 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20492 if (!SWIG_IsOK(ecode2
)) {
20493 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MDIParentFrame_Tile" "', expected argument " "2"" of type '" "wxOrientation""'");
20495 arg2
= static_cast< wxOrientation
>(val2
);
20498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20499 (arg1
)->Tile(arg2
);
20500 wxPyEndAllowThreads(__tstate
);
20501 if (PyErr_Occurred()) SWIG_fail
;
20503 resultobj
= SWIG_Py_Void();
20510 SWIGINTERN PyObject
*MDIParentFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20512 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20513 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIParentFrame
, SWIG_NewClientData(obj
));
20514 return SWIG_Py_Void();
20517 SWIGINTERN PyObject
*MDIParentFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20518 return SWIG_Python_InitShadowInstance(args
);
20521 SWIGINTERN PyObject
*_wrap_new_MDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20522 PyObject
*resultobj
= 0;
20523 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20524 int arg2
= (int) (int)-1 ;
20525 wxString
const &arg3_defvalue
= wxPyEmptyString
;
20526 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
20527 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
20528 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
20529 wxSize
const &arg5_defvalue
= wxDefaultSize
;
20530 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
20531 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
20532 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
20533 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
20534 wxMDIChildFrame
*result
= 0 ;
20539 bool temp3
= false ;
20544 bool temp7
= false ;
20545 PyObject
* obj0
= 0 ;
20546 PyObject
* obj1
= 0 ;
20547 PyObject
* obj2
= 0 ;
20548 PyObject
* obj3
= 0 ;
20549 PyObject
* obj4
= 0 ;
20550 PyObject
* obj5
= 0 ;
20551 PyObject
* obj6
= 0 ;
20552 char * kwnames
[] = {
20553 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIChildFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
20557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20558 if (!SWIG_IsOK(res1
)) {
20559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIChildFrame" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20561 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20563 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20564 if (!SWIG_IsOK(ecode2
)) {
20565 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIChildFrame" "', expected argument " "2"" of type '" "int""'");
20567 arg2
= static_cast< int >(val2
);
20571 arg3
= wxString_in_helper(obj2
);
20572 if (arg3
== NULL
) SWIG_fail
;
20579 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
20585 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
20589 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
20590 if (!SWIG_IsOK(ecode6
)) {
20591 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MDIChildFrame" "', expected argument " "6"" of type '" "long""'");
20593 arg6
= static_cast< long >(val6
);
20597 arg7
= wxString_in_helper(obj6
);
20598 if (arg7
== NULL
) SWIG_fail
;
20603 if (!wxPyCheckForApp()) SWIG_fail
;
20604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20605 result
= (wxMDIChildFrame
*)new wxMDIChildFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
20606 wxPyEndAllowThreads(__tstate
);
20607 if (PyErr_Occurred()) SWIG_fail
;
20609 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_NEW
| 0 );
20632 SWIGINTERN PyObject
*_wrap_new_PreMDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20633 PyObject
*resultobj
= 0;
20634 wxMDIChildFrame
*result
= 0 ;
20636 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIChildFrame",0,0,0)) SWIG_fail
;
20638 if (!wxPyCheckForApp()) SWIG_fail
;
20639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20640 result
= (wxMDIChildFrame
*)new wxMDIChildFrame();
20641 wxPyEndAllowThreads(__tstate
);
20642 if (PyErr_Occurred()) SWIG_fail
;
20644 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_OWN
| 0 );
20651 SWIGINTERN PyObject
*_wrap_MDIChildFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20652 PyObject
*resultobj
= 0;
20653 wxMDIChildFrame
*arg1
= (wxMDIChildFrame
*) 0 ;
20654 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
20655 int arg3
= (int) (int)-1 ;
20656 wxString
const &arg4_defvalue
= wxPyEmptyString
;
20657 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
20658 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
20659 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
20660 wxSize
const &arg6_defvalue
= wxDefaultSize
;
20661 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
20662 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
20663 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
20664 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20672 bool temp4
= false ;
20677 bool temp8
= false ;
20678 PyObject
* obj0
= 0 ;
20679 PyObject
* obj1
= 0 ;
20680 PyObject
* obj2
= 0 ;
20681 PyObject
* obj3
= 0 ;
20682 PyObject
* obj4
= 0 ;
20683 PyObject
* obj5
= 0 ;
20684 PyObject
* obj6
= 0 ;
20685 PyObject
* obj7
= 0 ;
20686 char * kwnames
[] = {
20687 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20690 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIChildFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
20691 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIChildFrame
, 0 | 0 );
20692 if (!SWIG_IsOK(res1
)) {
20693 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIChildFrame_Create" "', expected argument " "1"" of type '" "wxMDIChildFrame *""'");
20695 arg1
= reinterpret_cast< wxMDIChildFrame
* >(argp1
);
20696 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20697 if (!SWIG_IsOK(res2
)) {
20698 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIChildFrame_Create" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
20700 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
20702 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
20703 if (!SWIG_IsOK(ecode3
)) {
20704 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIChildFrame_Create" "', expected argument " "3"" of type '" "int""'");
20706 arg3
= static_cast< int >(val3
);
20710 arg4
= wxString_in_helper(obj3
);
20711 if (arg4
== NULL
) SWIG_fail
;
20718 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
20724 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
20728 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
20729 if (!SWIG_IsOK(ecode7
)) {
20730 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MDIChildFrame_Create" "', expected argument " "7"" of type '" "long""'");
20732 arg7
= static_cast< long >(val7
);
20736 arg8
= wxString_in_helper(obj7
);
20737 if (arg8
== NULL
) SWIG_fail
;
20742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20743 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
20744 wxPyEndAllowThreads(__tstate
);
20745 if (PyErr_Occurred()) SWIG_fail
;
20748 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20772 SWIGINTERN PyObject
*_wrap_MDIChildFrame_Activate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20773 PyObject
*resultobj
= 0;
20774 wxMDIChildFrame
*arg1
= (wxMDIChildFrame
*) 0 ;
20777 PyObject
*swig_obj
[1] ;
20779 if (!args
) SWIG_fail
;
20780 swig_obj
[0] = args
;
20781 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIChildFrame
, 0 | 0 );
20782 if (!SWIG_IsOK(res1
)) {
20783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIChildFrame_Activate" "', expected argument " "1"" of type '" "wxMDIChildFrame *""'");
20785 arg1
= reinterpret_cast< wxMDIChildFrame
* >(argp1
);
20787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20788 (arg1
)->Activate();
20789 wxPyEndAllowThreads(__tstate
);
20790 if (PyErr_Occurred()) SWIG_fail
;
20792 resultobj
= SWIG_Py_Void();
20799 SWIGINTERN PyObject
*MDIChildFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20801 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20802 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIChildFrame
, SWIG_NewClientData(obj
));
20803 return SWIG_Py_Void();
20806 SWIGINTERN PyObject
*MDIChildFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20807 return SWIG_Python_InitShadowInstance(args
);
20810 SWIGINTERN PyObject
*_wrap_new_MDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20811 PyObject
*resultobj
= 0;
20812 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20813 long arg2
= (long) 0 ;
20814 wxMDIClientWindow
*result
= 0 ;
20819 PyObject
* obj0
= 0 ;
20820 PyObject
* obj1
= 0 ;
20821 char * kwnames
[] = {
20822 (char *) "parent",(char *) "style", NULL
20825 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_MDIClientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20826 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20827 if (!SWIG_IsOK(res1
)) {
20828 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIClientWindow" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20830 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20832 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
20833 if (!SWIG_IsOK(ecode2
)) {
20834 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIClientWindow" "', expected argument " "2"" of type '" "long""'");
20836 arg2
= static_cast< long >(val2
);
20839 if (!wxPyCheckForApp()) SWIG_fail
;
20840 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20841 result
= (wxMDIClientWindow
*)new wxMDIClientWindow(arg1
,arg2
);
20842 wxPyEndAllowThreads(__tstate
);
20843 if (PyErr_Occurred()) SWIG_fail
;
20845 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIClientWindow
, SWIG_POINTER_NEW
| 0 );
20852 SWIGINTERN PyObject
*_wrap_new_PreMDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20853 PyObject
*resultobj
= 0;
20854 wxMDIClientWindow
*result
= 0 ;
20856 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIClientWindow",0,0,0)) SWIG_fail
;
20858 if (!wxPyCheckForApp()) SWIG_fail
;
20859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20860 result
= (wxMDIClientWindow
*)new wxMDIClientWindow();
20861 wxPyEndAllowThreads(__tstate
);
20862 if (PyErr_Occurred()) SWIG_fail
;
20864 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIClientWindow
, SWIG_POINTER_OWN
| 0 );
20871 SWIGINTERN PyObject
*_wrap_MDIClientWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20872 PyObject
*resultobj
= 0;
20873 wxMDIClientWindow
*arg1
= (wxMDIClientWindow
*) 0 ;
20874 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
20875 long arg3
= (long) 0 ;
20883 PyObject
* obj0
= 0 ;
20884 PyObject
* obj1
= 0 ;
20885 PyObject
* obj2
= 0 ;
20886 char * kwnames
[] = {
20887 (char *) "self",(char *) "parent",(char *) "style", NULL
20890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:MDIClientWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
20891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIClientWindow
, 0 | 0 );
20892 if (!SWIG_IsOK(res1
)) {
20893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIClientWindow_Create" "', expected argument " "1"" of type '" "wxMDIClientWindow *""'");
20895 arg1
= reinterpret_cast< wxMDIClientWindow
* >(argp1
);
20896 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20897 if (!SWIG_IsOK(res2
)) {
20898 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIClientWindow_Create" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
20900 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
20902 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
20903 if (!SWIG_IsOK(ecode3
)) {
20904 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIClientWindow_Create" "', expected argument " "3"" of type '" "long""'");
20906 arg3
= static_cast< long >(val3
);
20909 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20910 result
= (bool)(arg1
)->Create(arg2
,arg3
);
20911 wxPyEndAllowThreads(__tstate
);
20912 if (PyErr_Occurred()) SWIG_fail
;
20915 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20923 SWIGINTERN PyObject
*MDIClientWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20925 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20926 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIClientWindow
, SWIG_NewClientData(obj
));
20927 return SWIG_Py_Void();
20930 SWIGINTERN PyObject
*MDIClientWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20931 return SWIG_Python_InitShadowInstance(args
);
20934 SWIGINTERN PyObject
*_wrap_new_PyWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20935 PyObject
*resultobj
= 0;
20936 wxWindow
*arg1
= (wxWindow
*) 0 ;
20937 int arg2
= (int) (int)-1 ;
20938 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
20939 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
20940 wxSize
const &arg4_defvalue
= wxDefaultSize
;
20941 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
20942 long arg5
= (long) 0 ;
20943 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
20944 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
20945 wxPyWindow
*result
= 0 ;
20954 bool temp6
= false ;
20955 PyObject
* obj0
= 0 ;
20956 PyObject
* obj1
= 0 ;
20957 PyObject
* obj2
= 0 ;
20958 PyObject
* obj3
= 0 ;
20959 PyObject
* obj4
= 0 ;
20960 PyObject
* obj5
= 0 ;
20961 char * kwnames
[] = {
20962 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20965 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
20966 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20967 if (!SWIG_IsOK(res1
)) {
20968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
20970 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
20972 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20973 if (!SWIG_IsOK(ecode2
)) {
20974 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyWindow" "', expected argument " "2"" of type '" "int""'");
20976 arg2
= static_cast< int >(val2
);
20981 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
20987 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
20991 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
20992 if (!SWIG_IsOK(ecode5
)) {
20993 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyWindow" "', expected argument " "5"" of type '" "long""'");
20995 arg5
= static_cast< long >(val5
);
20999 arg6
= wxString_in_helper(obj5
);
21000 if (arg6
== NULL
) SWIG_fail
;
21005 if (!wxPyCheckForApp()) SWIG_fail
;
21006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21007 result
= (wxPyWindow
*)new wxPyWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
21008 wxPyEndAllowThreads(__tstate
);
21009 if (PyErr_Occurred()) SWIG_fail
;
21011 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_NEW
| 0 );
21026 SWIGINTERN PyObject
*_wrap_new_PrePyWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21027 PyObject
*resultobj
= 0;
21028 wxPyWindow
*result
= 0 ;
21030 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyWindow",0,0,0)) SWIG_fail
;
21032 if (!wxPyCheckForApp()) SWIG_fail
;
21033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21034 result
= (wxPyWindow
*)new wxPyWindow();
21035 wxPyEndAllowThreads(__tstate
);
21036 if (PyErr_Occurred()) SWIG_fail
;
21038 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_OWN
| 0 );
21045 SWIGINTERN PyObject
*_wrap_PyWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21046 PyObject
*resultobj
= 0;
21047 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21048 PyObject
*arg2
= (PyObject
*) 0 ;
21049 PyObject
*arg3
= (PyObject
*) 0 ;
21052 PyObject
* obj0
= 0 ;
21053 PyObject
* obj1
= 0 ;
21054 PyObject
* obj2
= 0 ;
21055 char * kwnames
[] = {
21056 (char *) "self",(char *) "self",(char *) "_class", NULL
21059 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21060 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21061 if (!SWIG_IsOK(res1
)) {
21062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21064 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21069 (arg1
)->_setCallbackInfo(arg2
,arg3
);
21070 wxPyEndAllowThreads(__tstate
);
21071 if (PyErr_Occurred()) SWIG_fail
;
21073 resultobj
= SWIG_Py_Void();
21080 SWIGINTERN PyObject
*_wrap_PyWindow_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21081 PyObject
*resultobj
= 0;
21082 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21087 PyObject
* obj0
= 0 ;
21088 PyObject
* obj1
= 0 ;
21089 char * kwnames
[] = {
21090 (char *) "self",(char *) "size", NULL
21093 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21094 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21095 if (!SWIG_IsOK(res1
)) {
21096 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_SetBestSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21098 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21101 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
21104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21105 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
21106 wxPyEndAllowThreads(__tstate
);
21107 if (PyErr_Occurred()) SWIG_fail
;
21109 resultobj
= SWIG_Py_Void();
21116 SWIGINTERN PyObject
*_wrap_PyWindow_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21117 PyObject
*resultobj
= 0;
21118 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21119 wxDC
*arg2
= (wxDC
*) 0 ;
21125 PyObject
* obj0
= 0 ;
21126 PyObject
* obj1
= 0 ;
21127 char * kwnames
[] = {
21128 (char *) "self",(char *) "dc", NULL
21131 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21132 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21133 if (!SWIG_IsOK(res1
)) {
21134 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21136 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21137 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
21138 if (!SWIG_IsOK(res2
)) {
21139 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyWindow_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
21141 arg2
= reinterpret_cast< wxDC
* >(argp2
);
21143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21144 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
21145 wxPyEndAllowThreads(__tstate
);
21146 if (PyErr_Occurred()) SWIG_fail
;
21149 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21157 SWIGINTERN PyObject
*_wrap_PyWindow_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21158 PyObject
*resultobj
= 0;
21159 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21174 PyObject
* obj0
= 0 ;
21175 PyObject
* obj1
= 0 ;
21176 PyObject
* obj2
= 0 ;
21177 PyObject
* obj3
= 0 ;
21178 PyObject
* obj4
= 0 ;
21179 char * kwnames
[] = {
21180 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
21183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyWindow_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
21184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21185 if (!SWIG_IsOK(res1
)) {
21186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21188 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21190 if (!SWIG_IsOK(ecode2
)) {
21191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
21193 arg2
= static_cast< int >(val2
);
21194 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21195 if (!SWIG_IsOK(ecode3
)) {
21196 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
21198 arg3
= static_cast< int >(val3
);
21199 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21200 if (!SWIG_IsOK(ecode4
)) {
21201 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
21203 arg4
= static_cast< int >(val4
);
21204 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21205 if (!SWIG_IsOK(ecode5
)) {
21206 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
21208 arg5
= static_cast< int >(val5
);
21210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21211 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
21212 wxPyEndAllowThreads(__tstate
);
21213 if (PyErr_Occurred()) SWIG_fail
;
21215 resultobj
= SWIG_Py_Void();
21222 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21223 PyObject
*resultobj
= 0;
21224 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21229 int arg6
= (int) wxSIZE_AUTO
;
21242 PyObject
* obj0
= 0 ;
21243 PyObject
* obj1
= 0 ;
21244 PyObject
* obj2
= 0 ;
21245 PyObject
* obj3
= 0 ;
21246 PyObject
* obj4
= 0 ;
21247 PyObject
* obj5
= 0 ;
21248 char * kwnames
[] = {
21249 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
21252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyWindow_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21254 if (!SWIG_IsOK(res1
)) {
21255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21257 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21258 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21259 if (!SWIG_IsOK(ecode2
)) {
21260 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetSize" "', expected argument " "2"" of type '" "int""'");
21262 arg2
= static_cast< int >(val2
);
21263 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21264 if (!SWIG_IsOK(ecode3
)) {
21265 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetSize" "', expected argument " "3"" of type '" "int""'");
21267 arg3
= static_cast< int >(val3
);
21268 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21269 if (!SWIG_IsOK(ecode4
)) {
21270 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyWindow_DoSetSize" "', expected argument " "4"" of type '" "int""'");
21272 arg4
= static_cast< int >(val4
);
21273 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21274 if (!SWIG_IsOK(ecode5
)) {
21275 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyWindow_DoSetSize" "', expected argument " "5"" of type '" "int""'");
21277 arg5
= static_cast< int >(val5
);
21279 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
21280 if (!SWIG_IsOK(ecode6
)) {
21281 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyWindow_DoSetSize" "', expected argument " "6"" of type '" "int""'");
21283 arg6
= static_cast< int >(val6
);
21286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21287 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
21288 wxPyEndAllowThreads(__tstate
);
21289 if (PyErr_Occurred()) SWIG_fail
;
21291 resultobj
= SWIG_Py_Void();
21298 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21299 PyObject
*resultobj
= 0;
21300 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21309 PyObject
* obj0
= 0 ;
21310 PyObject
* obj1
= 0 ;
21311 PyObject
* obj2
= 0 ;
21312 char * kwnames
[] = {
21313 (char *) "self",(char *) "width",(char *) "height", NULL
21316 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21317 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21318 if (!SWIG_IsOK(res1
)) {
21319 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21321 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21322 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21323 if (!SWIG_IsOK(ecode2
)) {
21324 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
21326 arg2
= static_cast< int >(val2
);
21327 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21328 if (!SWIG_IsOK(ecode3
)) {
21329 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
21331 arg3
= static_cast< int >(val3
);
21333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21334 (arg1
)->DoSetClientSize(arg2
,arg3
);
21335 wxPyEndAllowThreads(__tstate
);
21336 if (PyErr_Occurred()) SWIG_fail
;
21338 resultobj
= SWIG_Py_Void();
21345 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21346 PyObject
*resultobj
= 0;
21347 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21356 PyObject
* obj0
= 0 ;
21357 PyObject
* obj1
= 0 ;
21358 PyObject
* obj2
= 0 ;
21359 char * kwnames
[] = {
21360 (char *) "self",(char *) "x",(char *) "y", NULL
21363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21365 if (!SWIG_IsOK(res1
)) {
21366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21368 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21369 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21370 if (!SWIG_IsOK(ecode2
)) {
21371 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
21373 arg2
= static_cast< int >(val2
);
21374 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21375 if (!SWIG_IsOK(ecode3
)) {
21376 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
21378 arg3
= static_cast< int >(val3
);
21380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21381 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
21382 wxPyEndAllowThreads(__tstate
);
21383 if (PyErr_Occurred()) SWIG_fail
;
21385 resultobj
= SWIG_Py_Void();
21392 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21393 PyObject
*resultobj
= 0;
21394 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21395 int *arg2
= (int *) 0 ;
21396 int *arg3
= (int *) 0 ;
21400 int res2
= SWIG_TMPOBJ
;
21402 int res3
= SWIG_TMPOBJ
;
21403 PyObject
*swig_obj
[1] ;
21407 if (!args
) SWIG_fail
;
21408 swig_obj
[0] = args
;
21409 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21410 if (!SWIG_IsOK(res1
)) {
21411 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21413 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21416 ((wxPyWindow
const *)arg1
)->DoGetSize(arg2
,arg3
);
21417 wxPyEndAllowThreads(__tstate
);
21418 if (PyErr_Occurred()) SWIG_fail
;
21420 resultobj
= SWIG_Py_Void();
21421 if (SWIG_IsTmpObj(res2
)) {
21422 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21424 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21425 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21427 if (SWIG_IsTmpObj(res3
)) {
21428 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21430 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21431 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21439 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21440 PyObject
*resultobj
= 0;
21441 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21442 int *arg2
= (int *) 0 ;
21443 int *arg3
= (int *) 0 ;
21447 int res2
= SWIG_TMPOBJ
;
21449 int res3
= SWIG_TMPOBJ
;
21450 PyObject
*swig_obj
[1] ;
21454 if (!args
) SWIG_fail
;
21455 swig_obj
[0] = args
;
21456 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21457 if (!SWIG_IsOK(res1
)) {
21458 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21460 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21462 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21463 ((wxPyWindow
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
21464 wxPyEndAllowThreads(__tstate
);
21465 if (PyErr_Occurred()) SWIG_fail
;
21467 resultobj
= SWIG_Py_Void();
21468 if (SWIG_IsTmpObj(res2
)) {
21469 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21471 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21472 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21474 if (SWIG_IsTmpObj(res3
)) {
21475 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21477 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21478 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21486 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21487 PyObject
*resultobj
= 0;
21488 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21489 int *arg2
= (int *) 0 ;
21490 int *arg3
= (int *) 0 ;
21494 int res2
= SWIG_TMPOBJ
;
21496 int res3
= SWIG_TMPOBJ
;
21497 PyObject
*swig_obj
[1] ;
21501 if (!args
) SWIG_fail
;
21502 swig_obj
[0] = args
;
21503 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21504 if (!SWIG_IsOK(res1
)) {
21505 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetPosition" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21507 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21510 ((wxPyWindow
const *)arg1
)->DoGetPosition(arg2
,arg3
);
21511 wxPyEndAllowThreads(__tstate
);
21512 if (PyErr_Occurred()) SWIG_fail
;
21514 resultobj
= SWIG_Py_Void();
21515 if (SWIG_IsTmpObj(res2
)) {
21516 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21518 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21519 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21521 if (SWIG_IsTmpObj(res3
)) {
21522 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21524 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21525 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21533 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21534 PyObject
*resultobj
= 0;
21535 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21539 PyObject
*swig_obj
[1] ;
21541 if (!args
) SWIG_fail
;
21542 swig_obj
[0] = args
;
21543 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21544 if (!SWIG_IsOK(res1
)) {
21545 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21547 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21549 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21550 result
= ((wxPyWindow
const *)arg1
)->DoGetVirtualSize();
21551 wxPyEndAllowThreads(__tstate
);
21552 if (PyErr_Occurred()) SWIG_fail
;
21554 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21561 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21562 PyObject
*resultobj
= 0;
21563 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21567 PyObject
*swig_obj
[1] ;
21569 if (!args
) SWIG_fail
;
21570 swig_obj
[0] = args
;
21571 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21572 if (!SWIG_IsOK(res1
)) {
21573 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21575 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21578 result
= ((wxPyWindow
const *)arg1
)->DoGetBestSize();
21579 wxPyEndAllowThreads(__tstate
);
21580 if (PyErr_Occurred()) SWIG_fail
;
21582 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21589 SWIGINTERN PyObject
*_wrap_PyWindow_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21590 PyObject
*resultobj
= 0;
21591 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21592 SwigValueWrapper
<wxVisualAttributes
> result
;
21595 PyObject
*swig_obj
[1] ;
21597 if (!args
) SWIG_fail
;
21598 swig_obj
[0] = args
;
21599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21600 if (!SWIG_IsOK(res1
)) {
21601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21603 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21606 result
= (arg1
)->GetDefaultAttributes();
21607 wxPyEndAllowThreads(__tstate
);
21608 if (PyErr_Occurred()) SWIG_fail
;
21610 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
21617 SWIGINTERN PyObject
*_wrap_PyWindow_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21618 PyObject
*resultobj
= 0;
21619 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21622 PyObject
*swig_obj
[1] ;
21624 if (!args
) SWIG_fail
;
21625 swig_obj
[0] = args
;
21626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21627 if (!SWIG_IsOK(res1
)) {
21628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21630 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21633 (arg1
)->OnInternalIdle();
21634 wxPyEndAllowThreads(__tstate
);
21635 if (PyErr_Occurred()) SWIG_fail
;
21637 resultobj
= SWIG_Py_Void();
21644 SWIGINTERN PyObject
*PyWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21646 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21647 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyWindow
, SWIG_NewClientData(obj
));
21648 return SWIG_Py_Void();
21651 SWIGINTERN PyObject
*PyWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21652 return SWIG_Python_InitShadowInstance(args
);
21655 SWIGINTERN PyObject
*_wrap_new_PyPanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21656 PyObject
*resultobj
= 0;
21657 wxWindow
*arg1
= (wxWindow
*) 0 ;
21658 int arg2
= (int) (int)-1 ;
21659 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
21660 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
21661 wxSize
const &arg4_defvalue
= wxDefaultSize
;
21662 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
21663 long arg5
= (long) 0 ;
21664 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
21665 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
21666 wxPyPanel
*result
= 0 ;
21675 bool temp6
= false ;
21676 PyObject
* obj0
= 0 ;
21677 PyObject
* obj1
= 0 ;
21678 PyObject
* obj2
= 0 ;
21679 PyObject
* obj3
= 0 ;
21680 PyObject
* obj4
= 0 ;
21681 PyObject
* obj5
= 0 ;
21682 char * kwnames
[] = {
21683 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
21686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyPanel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
21688 if (!SWIG_IsOK(res1
)) {
21689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPanel" "', expected argument " "1"" of type '" "wxWindow *""'");
21691 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
21693 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21694 if (!SWIG_IsOK(ecode2
)) {
21695 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyPanel" "', expected argument " "2"" of type '" "int""'");
21697 arg2
= static_cast< int >(val2
);
21702 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
21708 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
21712 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
21713 if (!SWIG_IsOK(ecode5
)) {
21714 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyPanel" "', expected argument " "5"" of type '" "long""'");
21716 arg5
= static_cast< long >(val5
);
21720 arg6
= wxString_in_helper(obj5
);
21721 if (arg6
== NULL
) SWIG_fail
;
21726 if (!wxPyCheckForApp()) SWIG_fail
;
21727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21728 result
= (wxPyPanel
*)new wxPyPanel(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
21729 wxPyEndAllowThreads(__tstate
);
21730 if (PyErr_Occurred()) SWIG_fail
;
21732 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_NEW
| 0 );
21747 SWIGINTERN PyObject
*_wrap_new_PrePyPanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21748 PyObject
*resultobj
= 0;
21749 wxPyPanel
*result
= 0 ;
21751 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyPanel",0,0,0)) SWIG_fail
;
21753 if (!wxPyCheckForApp()) SWIG_fail
;
21754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21755 result
= (wxPyPanel
*)new wxPyPanel();
21756 wxPyEndAllowThreads(__tstate
);
21757 if (PyErr_Occurred()) SWIG_fail
;
21759 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_OWN
| 0 );
21766 SWIGINTERN PyObject
*_wrap_PyPanel__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21767 PyObject
*resultobj
= 0;
21768 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
21769 PyObject
*arg2
= (PyObject
*) 0 ;
21770 PyObject
*arg3
= (PyObject
*) 0 ;
21773 PyObject
* obj0
= 0 ;
21774 PyObject
* obj1
= 0 ;
21775 PyObject
* obj2
= 0 ;
21776 char * kwnames
[] = {
21777 (char *) "self",(char *) "self",(char *) "_class", NULL
21780 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21781 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
21782 if (!SWIG_IsOK(res1
)) {
21783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPanel *""'");
21785 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
21789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21790 (arg1
)->_setCallbackInfo(arg2
,arg3
);
21791 wxPyEndAllowThreads(__tstate
);
21792 if (PyErr_Occurred()) SWIG_fail
;
21794 resultobj
= SWIG_Py_Void();
21801 SWIGINTERN PyObject
*_wrap_PyPanel_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21802 PyObject
*resultobj
= 0;
21803 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
21808 PyObject
* obj0
= 0 ;
21809 PyObject
* obj1
= 0 ;
21810 char * kwnames
[] = {
21811 (char *) "self",(char *) "size", NULL
21814 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21815 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
21816 if (!SWIG_IsOK(res1
)) {
21817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_SetBestSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
21819 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
21822 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
21825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21826 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
21827 wxPyEndAllowThreads(__tstate
);
21828 if (PyErr_Occurred()) SWIG_fail
;
21830 resultobj
= SWIG_Py_Void();
21837 SWIGINTERN PyObject
*_wrap_PyPanel_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21838 PyObject
*resultobj
= 0;
21839 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
21840 wxDC
*arg2
= (wxDC
*) 0 ;
21846 PyObject
* obj0
= 0 ;
21847 PyObject
* obj1
= 0 ;
21848 char * kwnames
[] = {
21849 (char *) "self",(char *) "dc", NULL
21852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
21854 if (!SWIG_IsOK(res1
)) {
21855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyPanel *""'");
21857 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
21858 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
21859 if (!SWIG_IsOK(res2
)) {
21860 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPanel_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
21862 arg2
= reinterpret_cast< wxDC
* >(argp2
);
21864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21865 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
21866 wxPyEndAllowThreads(__tstate
);
21867 if (PyErr_Occurred()) SWIG_fail
;
21870 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21878 SWIGINTERN PyObject
*_wrap_PyPanel_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21879 PyObject
*resultobj
= 0;
21880 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
21895 PyObject
* obj0
= 0 ;
21896 PyObject
* obj1
= 0 ;
21897 PyObject
* obj2
= 0 ;
21898 PyObject
* obj3
= 0 ;
21899 PyObject
* obj4
= 0 ;
21900 char * kwnames
[] = {
21901 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
21904 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyPanel_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
21905 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
21906 if (!SWIG_IsOK(res1
)) {
21907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyPanel *""'");
21909 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
21910 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21911 if (!SWIG_IsOK(ecode2
)) {
21912 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
21914 arg2
= static_cast< int >(val2
);
21915 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21916 if (!SWIG_IsOK(ecode3
)) {
21917 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
21919 arg3
= static_cast< int >(val3
);
21920 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21921 if (!SWIG_IsOK(ecode4
)) {
21922 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
21924 arg4
= static_cast< int >(val4
);
21925 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21926 if (!SWIG_IsOK(ecode5
)) {
21927 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
21929 arg5
= static_cast< int >(val5
);
21931 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21932 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
21933 wxPyEndAllowThreads(__tstate
);
21934 if (PyErr_Occurred()) SWIG_fail
;
21936 resultobj
= SWIG_Py_Void();
21943 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21944 PyObject
*resultobj
= 0;
21945 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
21950 int arg6
= (int) wxSIZE_AUTO
;
21963 PyObject
* obj0
= 0 ;
21964 PyObject
* obj1
= 0 ;
21965 PyObject
* obj2
= 0 ;
21966 PyObject
* obj3
= 0 ;
21967 PyObject
* obj4
= 0 ;
21968 PyObject
* obj5
= 0 ;
21969 char * kwnames
[] = {
21970 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
21973 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyPanel_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21974 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
21975 if (!SWIG_IsOK(res1
)) {
21976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
21978 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
21979 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21980 if (!SWIG_IsOK(ecode2
)) {
21981 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetSize" "', expected argument " "2"" of type '" "int""'");
21983 arg2
= static_cast< int >(val2
);
21984 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21985 if (!SWIG_IsOK(ecode3
)) {
21986 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetSize" "', expected argument " "3"" of type '" "int""'");
21988 arg3
= static_cast< int >(val3
);
21989 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21990 if (!SWIG_IsOK(ecode4
)) {
21991 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyPanel_DoSetSize" "', expected argument " "4"" of type '" "int""'");
21993 arg4
= static_cast< int >(val4
);
21994 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21995 if (!SWIG_IsOK(ecode5
)) {
21996 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyPanel_DoSetSize" "', expected argument " "5"" of type '" "int""'");
21998 arg5
= static_cast< int >(val5
);
22000 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
22001 if (!SWIG_IsOK(ecode6
)) {
22002 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyPanel_DoSetSize" "', expected argument " "6"" of type '" "int""'");
22004 arg6
= static_cast< int >(val6
);
22007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22008 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
22009 wxPyEndAllowThreads(__tstate
);
22010 if (PyErr_Occurred()) SWIG_fail
;
22012 resultobj
= SWIG_Py_Void();
22019 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22020 PyObject
*resultobj
= 0;
22021 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22030 PyObject
* obj0
= 0 ;
22031 PyObject
* obj1
= 0 ;
22032 PyObject
* obj2
= 0 ;
22033 char * kwnames
[] = {
22034 (char *) "self",(char *) "width",(char *) "height", NULL
22037 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22038 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22039 if (!SWIG_IsOK(res1
)) {
22040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22042 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22043 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22044 if (!SWIG_IsOK(ecode2
)) {
22045 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
22047 arg2
= static_cast< int >(val2
);
22048 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22049 if (!SWIG_IsOK(ecode3
)) {
22050 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
22052 arg3
= static_cast< int >(val3
);
22054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22055 (arg1
)->DoSetClientSize(arg2
,arg3
);
22056 wxPyEndAllowThreads(__tstate
);
22057 if (PyErr_Occurred()) SWIG_fail
;
22059 resultobj
= SWIG_Py_Void();
22066 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22067 PyObject
*resultobj
= 0;
22068 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22077 PyObject
* obj0
= 0 ;
22078 PyObject
* obj1
= 0 ;
22079 PyObject
* obj2
= 0 ;
22080 char * kwnames
[] = {
22081 (char *) "self",(char *) "x",(char *) "y", NULL
22084 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22085 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22086 if (!SWIG_IsOK(res1
)) {
22087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22089 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22090 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22091 if (!SWIG_IsOK(ecode2
)) {
22092 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
22094 arg2
= static_cast< int >(val2
);
22095 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22096 if (!SWIG_IsOK(ecode3
)) {
22097 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
22099 arg3
= static_cast< int >(val3
);
22101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22102 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
22103 wxPyEndAllowThreads(__tstate
);
22104 if (PyErr_Occurred()) SWIG_fail
;
22106 resultobj
= SWIG_Py_Void();
22113 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22114 PyObject
*resultobj
= 0;
22115 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22116 int *arg2
= (int *) 0 ;
22117 int *arg3
= (int *) 0 ;
22121 int res2
= SWIG_TMPOBJ
;
22123 int res3
= SWIG_TMPOBJ
;
22124 PyObject
*swig_obj
[1] ;
22128 if (!args
) SWIG_fail
;
22129 swig_obj
[0] = args
;
22130 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22131 if (!SWIG_IsOK(res1
)) {
22132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22134 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22137 ((wxPyPanel
const *)arg1
)->DoGetSize(arg2
,arg3
);
22138 wxPyEndAllowThreads(__tstate
);
22139 if (PyErr_Occurred()) SWIG_fail
;
22141 resultobj
= SWIG_Py_Void();
22142 if (SWIG_IsTmpObj(res2
)) {
22143 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22145 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22146 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22148 if (SWIG_IsTmpObj(res3
)) {
22149 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22151 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22152 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22160 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22161 PyObject
*resultobj
= 0;
22162 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22163 int *arg2
= (int *) 0 ;
22164 int *arg3
= (int *) 0 ;
22168 int res2
= SWIG_TMPOBJ
;
22170 int res3
= SWIG_TMPOBJ
;
22171 PyObject
*swig_obj
[1] ;
22175 if (!args
) SWIG_fail
;
22176 swig_obj
[0] = args
;
22177 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22178 if (!SWIG_IsOK(res1
)) {
22179 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22181 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22183 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22184 ((wxPyPanel
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
22185 wxPyEndAllowThreads(__tstate
);
22186 if (PyErr_Occurred()) SWIG_fail
;
22188 resultobj
= SWIG_Py_Void();
22189 if (SWIG_IsTmpObj(res2
)) {
22190 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22192 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22193 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22195 if (SWIG_IsTmpObj(res3
)) {
22196 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22198 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22199 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22207 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22208 PyObject
*resultobj
= 0;
22209 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22210 int *arg2
= (int *) 0 ;
22211 int *arg3
= (int *) 0 ;
22215 int res2
= SWIG_TMPOBJ
;
22217 int res3
= SWIG_TMPOBJ
;
22218 PyObject
*swig_obj
[1] ;
22222 if (!args
) SWIG_fail
;
22223 swig_obj
[0] = args
;
22224 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22225 if (!SWIG_IsOK(res1
)) {
22226 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetPosition" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22228 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22230 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22231 ((wxPyPanel
const *)arg1
)->DoGetPosition(arg2
,arg3
);
22232 wxPyEndAllowThreads(__tstate
);
22233 if (PyErr_Occurred()) SWIG_fail
;
22235 resultobj
= SWIG_Py_Void();
22236 if (SWIG_IsTmpObj(res2
)) {
22237 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22239 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22240 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22242 if (SWIG_IsTmpObj(res3
)) {
22243 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22245 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22246 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22254 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22255 PyObject
*resultobj
= 0;
22256 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22260 PyObject
*swig_obj
[1] ;
22262 if (!args
) SWIG_fail
;
22263 swig_obj
[0] = args
;
22264 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22265 if (!SWIG_IsOK(res1
)) {
22266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22268 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22271 result
= ((wxPyPanel
const *)arg1
)->DoGetVirtualSize();
22272 wxPyEndAllowThreads(__tstate
);
22273 if (PyErr_Occurred()) SWIG_fail
;
22275 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
22282 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22283 PyObject
*resultobj
= 0;
22284 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22288 PyObject
*swig_obj
[1] ;
22290 if (!args
) SWIG_fail
;
22291 swig_obj
[0] = args
;
22292 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22293 if (!SWIG_IsOK(res1
)) {
22294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22296 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22299 result
= ((wxPyPanel
const *)arg1
)->DoGetBestSize();
22300 wxPyEndAllowThreads(__tstate
);
22301 if (PyErr_Occurred()) SWIG_fail
;
22303 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
22310 SWIGINTERN PyObject
*_wrap_PyPanel_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22311 PyObject
*resultobj
= 0;
22312 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22313 SwigValueWrapper
<wxVisualAttributes
> result
;
22316 PyObject
*swig_obj
[1] ;
22318 if (!args
) SWIG_fail
;
22319 swig_obj
[0] = args
;
22320 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22321 if (!SWIG_IsOK(res1
)) {
22322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22324 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22327 result
= (arg1
)->GetDefaultAttributes();
22328 wxPyEndAllowThreads(__tstate
);
22329 if (PyErr_Occurred()) SWIG_fail
;
22331 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
22338 SWIGINTERN PyObject
*_wrap_PyPanel_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22339 PyObject
*resultobj
= 0;
22340 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22343 PyObject
*swig_obj
[1] ;
22345 if (!args
) SWIG_fail
;
22346 swig_obj
[0] = args
;
22347 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22348 if (!SWIG_IsOK(res1
)) {
22349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22351 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22353 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22354 (arg1
)->OnInternalIdle();
22355 wxPyEndAllowThreads(__tstate
);
22356 if (PyErr_Occurred()) SWIG_fail
;
22358 resultobj
= SWIG_Py_Void();
22365 SWIGINTERN PyObject
*PyPanel_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22367 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
22368 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPanel
, SWIG_NewClientData(obj
));
22369 return SWIG_Py_Void();
22372 SWIGINTERN PyObject
*PyPanel_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22373 return SWIG_Python_InitShadowInstance(args
);
22376 SWIGINTERN PyObject
*_wrap_new_PyScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22377 PyObject
*resultobj
= 0;
22378 wxWindow
*arg1
= (wxWindow
*) 0 ;
22379 int arg2
= (int) (int)-1 ;
22380 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
22381 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
22382 wxSize
const &arg4_defvalue
= wxDefaultSize
;
22383 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
22384 long arg5
= (long) 0 ;
22385 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
22386 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
22387 wxPyScrolledWindow
*result
= 0 ;
22396 bool temp6
= false ;
22397 PyObject
* obj0
= 0 ;
22398 PyObject
* obj1
= 0 ;
22399 PyObject
* obj2
= 0 ;
22400 PyObject
* obj3
= 0 ;
22401 PyObject
* obj4
= 0 ;
22402 PyObject
* obj5
= 0 ;
22403 char * kwnames
[] = {
22404 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
22407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
22408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
22409 if (!SWIG_IsOK(res1
)) {
22410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
22412 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
22414 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22415 if (!SWIG_IsOK(ecode2
)) {
22416 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyScrolledWindow" "', expected argument " "2"" of type '" "int""'");
22418 arg2
= static_cast< int >(val2
);
22423 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
22429 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
22433 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
22434 if (!SWIG_IsOK(ecode5
)) {
22435 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyScrolledWindow" "', expected argument " "5"" of type '" "long""'");
22437 arg5
= static_cast< long >(val5
);
22441 arg6
= wxString_in_helper(obj5
);
22442 if (arg6
== NULL
) SWIG_fail
;
22447 if (!wxPyCheckForApp()) SWIG_fail
;
22448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22449 result
= (wxPyScrolledWindow
*)new wxPyScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
22450 wxPyEndAllowThreads(__tstate
);
22451 if (PyErr_Occurred()) SWIG_fail
;
22453 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_NEW
| 0 );
22468 SWIGINTERN PyObject
*_wrap_new_PrePyScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22469 PyObject
*resultobj
= 0;
22470 wxPyScrolledWindow
*result
= 0 ;
22472 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyScrolledWindow",0,0,0)) SWIG_fail
;
22474 if (!wxPyCheckForApp()) SWIG_fail
;
22475 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22476 result
= (wxPyScrolledWindow
*)new wxPyScrolledWindow();
22477 wxPyEndAllowThreads(__tstate
);
22478 if (PyErr_Occurred()) SWIG_fail
;
22480 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_OWN
| 0 );
22487 SWIGINTERN PyObject
*_wrap_PyScrolledWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22488 PyObject
*resultobj
= 0;
22489 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22490 PyObject
*arg2
= (PyObject
*) 0 ;
22491 PyObject
*arg3
= (PyObject
*) 0 ;
22494 PyObject
* obj0
= 0 ;
22495 PyObject
* obj1
= 0 ;
22496 PyObject
* obj2
= 0 ;
22497 char * kwnames
[] = {
22498 (char *) "self",(char *) "self",(char *) "_class", NULL
22501 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22502 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22503 if (!SWIG_IsOK(res1
)) {
22504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22506 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22511 (arg1
)->_setCallbackInfo(arg2
,arg3
);
22512 wxPyEndAllowThreads(__tstate
);
22513 if (PyErr_Occurred()) SWIG_fail
;
22515 resultobj
= SWIG_Py_Void();
22522 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22523 PyObject
*resultobj
= 0;
22524 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22529 PyObject
* obj0
= 0 ;
22530 PyObject
* obj1
= 0 ;
22531 char * kwnames
[] = {
22532 (char *) "self",(char *) "size", NULL
22535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22536 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22537 if (!SWIG_IsOK(res1
)) {
22538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_SetBestSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22540 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22543 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
22546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22547 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
22548 wxPyEndAllowThreads(__tstate
);
22549 if (PyErr_Occurred()) SWIG_fail
;
22551 resultobj
= SWIG_Py_Void();
22558 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22559 PyObject
*resultobj
= 0;
22560 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22561 wxDC
*arg2
= (wxDC
*) 0 ;
22567 PyObject
* obj0
= 0 ;
22568 PyObject
* obj1
= 0 ;
22569 char * kwnames
[] = {
22570 (char *) "self",(char *) "dc", NULL
22573 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22574 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22575 if (!SWIG_IsOK(res1
)) {
22576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22578 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22579 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
22580 if (!SWIG_IsOK(res2
)) {
22581 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyScrolledWindow_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
22583 arg2
= reinterpret_cast< wxDC
* >(argp2
);
22585 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22586 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
22587 wxPyEndAllowThreads(__tstate
);
22588 if (PyErr_Occurred()) SWIG_fail
;
22591 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22599 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22600 PyObject
*resultobj
= 0;
22601 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22616 PyObject
* obj0
= 0 ;
22617 PyObject
* obj1
= 0 ;
22618 PyObject
* obj2
= 0 ;
22619 PyObject
* obj3
= 0 ;
22620 PyObject
* obj4
= 0 ;
22621 char * kwnames
[] = {
22622 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
22625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyScrolledWindow_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
22626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22627 if (!SWIG_IsOK(res1
)) {
22628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22630 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22631 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22632 if (!SWIG_IsOK(ecode2
)) {
22633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
22635 arg2
= static_cast< int >(val2
);
22636 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22637 if (!SWIG_IsOK(ecode3
)) {
22638 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
22640 arg3
= static_cast< int >(val3
);
22641 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22642 if (!SWIG_IsOK(ecode4
)) {
22643 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
22645 arg4
= static_cast< int >(val4
);
22646 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22647 if (!SWIG_IsOK(ecode5
)) {
22648 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
22650 arg5
= static_cast< int >(val5
);
22652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22653 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
22654 wxPyEndAllowThreads(__tstate
);
22655 if (PyErr_Occurred()) SWIG_fail
;
22657 resultobj
= SWIG_Py_Void();
22664 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22665 PyObject
*resultobj
= 0;
22666 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22671 int arg6
= (int) wxSIZE_AUTO
;
22684 PyObject
* obj0
= 0 ;
22685 PyObject
* obj1
= 0 ;
22686 PyObject
* obj2
= 0 ;
22687 PyObject
* obj3
= 0 ;
22688 PyObject
* obj4
= 0 ;
22689 PyObject
* obj5
= 0 ;
22690 char * kwnames
[] = {
22691 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
22694 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyScrolledWindow_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
22695 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22696 if (!SWIG_IsOK(res1
)) {
22697 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22699 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22700 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22701 if (!SWIG_IsOK(ecode2
)) {
22702 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "2"" of type '" "int""'");
22704 arg2
= static_cast< int >(val2
);
22705 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22706 if (!SWIG_IsOK(ecode3
)) {
22707 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "3"" of type '" "int""'");
22709 arg3
= static_cast< int >(val3
);
22710 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22711 if (!SWIG_IsOK(ecode4
)) {
22712 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "4"" of type '" "int""'");
22714 arg4
= static_cast< int >(val4
);
22715 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22716 if (!SWIG_IsOK(ecode5
)) {
22717 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "5"" of type '" "int""'");
22719 arg5
= static_cast< int >(val5
);
22721 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
22722 if (!SWIG_IsOK(ecode6
)) {
22723 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "6"" of type '" "int""'");
22725 arg6
= static_cast< int >(val6
);
22728 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22729 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
22730 wxPyEndAllowThreads(__tstate
);
22731 if (PyErr_Occurred()) SWIG_fail
;
22733 resultobj
= SWIG_Py_Void();
22740 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22741 PyObject
*resultobj
= 0;
22742 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22751 PyObject
* obj0
= 0 ;
22752 PyObject
* obj1
= 0 ;
22753 PyObject
* obj2
= 0 ;
22754 char * kwnames
[] = {
22755 (char *) "self",(char *) "width",(char *) "height", NULL
22758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22760 if (!SWIG_IsOK(res1
)) {
22761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22763 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22764 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22765 if (!SWIG_IsOK(ecode2
)) {
22766 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
22768 arg2
= static_cast< int >(val2
);
22769 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22770 if (!SWIG_IsOK(ecode3
)) {
22771 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
22773 arg3
= static_cast< int >(val3
);
22775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22776 (arg1
)->DoSetClientSize(arg2
,arg3
);
22777 wxPyEndAllowThreads(__tstate
);
22778 if (PyErr_Occurred()) SWIG_fail
;
22780 resultobj
= SWIG_Py_Void();
22787 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22788 PyObject
*resultobj
= 0;
22789 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22798 PyObject
* obj0
= 0 ;
22799 PyObject
* obj1
= 0 ;
22800 PyObject
* obj2
= 0 ;
22801 char * kwnames
[] = {
22802 (char *) "self",(char *) "x",(char *) "y", NULL
22805 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22806 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22807 if (!SWIG_IsOK(res1
)) {
22808 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22810 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22811 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22812 if (!SWIG_IsOK(ecode2
)) {
22813 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
22815 arg2
= static_cast< int >(val2
);
22816 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22817 if (!SWIG_IsOK(ecode3
)) {
22818 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
22820 arg3
= static_cast< int >(val3
);
22822 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22823 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
22824 wxPyEndAllowThreads(__tstate
);
22825 if (PyErr_Occurred()) SWIG_fail
;
22827 resultobj
= SWIG_Py_Void();
22834 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22835 PyObject
*resultobj
= 0;
22836 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22837 int *arg2
= (int *) 0 ;
22838 int *arg3
= (int *) 0 ;
22842 int res2
= SWIG_TMPOBJ
;
22844 int res3
= SWIG_TMPOBJ
;
22845 PyObject
*swig_obj
[1] ;
22849 if (!args
) SWIG_fail
;
22850 swig_obj
[0] = args
;
22851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22852 if (!SWIG_IsOK(res1
)) {
22853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
22855 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22858 ((wxPyScrolledWindow
const *)arg1
)->DoGetSize(arg2
,arg3
);
22859 wxPyEndAllowThreads(__tstate
);
22860 if (PyErr_Occurred()) SWIG_fail
;
22862 resultobj
= SWIG_Py_Void();
22863 if (SWIG_IsTmpObj(res2
)) {
22864 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22866 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22867 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22869 if (SWIG_IsTmpObj(res3
)) {
22870 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22872 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22873 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22881 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22882 PyObject
*resultobj
= 0;
22883 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22884 int *arg2
= (int *) 0 ;
22885 int *arg3
= (int *) 0 ;
22889 int res2
= SWIG_TMPOBJ
;
22891 int res3
= SWIG_TMPOBJ
;
22892 PyObject
*swig_obj
[1] ;
22896 if (!args
) SWIG_fail
;
22897 swig_obj
[0] = args
;
22898 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22899 if (!SWIG_IsOK(res1
)) {
22900 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
22902 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22905 ((wxPyScrolledWindow
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
22906 wxPyEndAllowThreads(__tstate
);
22907 if (PyErr_Occurred()) SWIG_fail
;
22909 resultobj
= SWIG_Py_Void();
22910 if (SWIG_IsTmpObj(res2
)) {
22911 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22913 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22914 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22916 if (SWIG_IsTmpObj(res3
)) {
22917 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22919 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22920 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22928 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22929 PyObject
*resultobj
= 0;
22930 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22931 int *arg2
= (int *) 0 ;
22932 int *arg3
= (int *) 0 ;
22936 int res2
= SWIG_TMPOBJ
;
22938 int res3
= SWIG_TMPOBJ
;
22939 PyObject
*swig_obj
[1] ;
22943 if (!args
) SWIG_fail
;
22944 swig_obj
[0] = args
;
22945 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22946 if (!SWIG_IsOK(res1
)) {
22947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetPosition" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
22949 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22952 ((wxPyScrolledWindow
const *)arg1
)->DoGetPosition(arg2
,arg3
);
22953 wxPyEndAllowThreads(__tstate
);
22954 if (PyErr_Occurred()) SWIG_fail
;
22956 resultobj
= SWIG_Py_Void();
22957 if (SWIG_IsTmpObj(res2
)) {
22958 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22960 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22961 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22963 if (SWIG_IsTmpObj(res3
)) {
22964 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22966 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22967 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22975 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22976 PyObject
*resultobj
= 0;
22977 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22981 PyObject
*swig_obj
[1] ;
22983 if (!args
) SWIG_fail
;
22984 swig_obj
[0] = args
;
22985 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22986 if (!SWIG_IsOK(res1
)) {
22987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
22989 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22992 result
= ((wxPyScrolledWindow
const *)arg1
)->DoGetVirtualSize();
22993 wxPyEndAllowThreads(__tstate
);
22994 if (PyErr_Occurred()) SWIG_fail
;
22996 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
23003 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23004 PyObject
*resultobj
= 0;
23005 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23009 PyObject
*swig_obj
[1] ;
23011 if (!args
) SWIG_fail
;
23012 swig_obj
[0] = args
;
23013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23014 if (!SWIG_IsOK(res1
)) {
23015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23017 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23020 result
= ((wxPyScrolledWindow
const *)arg1
)->DoGetBestSize();
23021 wxPyEndAllowThreads(__tstate
);
23022 if (PyErr_Occurred()) SWIG_fail
;
23024 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
23031 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23032 PyObject
*resultobj
= 0;
23033 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23034 SwigValueWrapper
<wxVisualAttributes
> result
;
23037 PyObject
*swig_obj
[1] ;
23039 if (!args
) SWIG_fail
;
23040 swig_obj
[0] = args
;
23041 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23042 if (!SWIG_IsOK(res1
)) {
23043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23045 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23048 result
= (arg1
)->GetDefaultAttributes();
23049 wxPyEndAllowThreads(__tstate
);
23050 if (PyErr_Occurred()) SWIG_fail
;
23052 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
23059 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23060 PyObject
*resultobj
= 0;
23061 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23064 PyObject
*swig_obj
[1] ;
23066 if (!args
) SWIG_fail
;
23067 swig_obj
[0] = args
;
23068 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23069 if (!SWIG_IsOK(res1
)) {
23070 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23072 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23075 (arg1
)->OnInternalIdle();
23076 wxPyEndAllowThreads(__tstate
);
23077 if (PyErr_Occurred()) SWIG_fail
;
23079 resultobj
= SWIG_Py_Void();
23086 SWIGINTERN PyObject
*PyScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23088 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23089 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyScrolledWindow
, SWIG_NewClientData(obj
));
23090 return SWIG_Py_Void();
23093 SWIGINTERN PyObject
*PyScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23094 return SWIG_Python_InitShadowInstance(args
);
23097 SWIGINTERN
int PrintoutTitleStr_set(PyObject
*) {
23098 SWIG_Error(SWIG_AttributeError
,"Variable PrintoutTitleStr is read-only.");
23103 SWIGINTERN PyObject
*PrintoutTitleStr_get(void) {
23104 PyObject
*pyobj
= 0;
23108 pyobj
= PyUnicode_FromWideChar((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len());
23110 pyobj
= PyString_FromStringAndSize((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len());
23117 SWIGINTERN
int PreviewCanvasNameStr_set(PyObject
*) {
23118 SWIG_Error(SWIG_AttributeError
,"Variable PreviewCanvasNameStr is read-only.");
23123 SWIGINTERN PyObject
*PreviewCanvasNameStr_get(void) {
23124 PyObject
*pyobj
= 0;
23128 pyobj
= PyUnicode_FromWideChar((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len());
23130 pyobj
= PyString_FromStringAndSize((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len());
23137 SWIGINTERN PyObject
*_wrap_new_PrintData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
23138 PyObject
*resultobj
= 0;
23139 wxPrintData
*result
= 0 ;
23141 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
23143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23144 result
= (wxPrintData
*)new wxPrintData();
23145 wxPyEndAllowThreads(__tstate
);
23146 if (PyErr_Occurred()) SWIG_fail
;
23148 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, SWIG_POINTER_NEW
| 0 );
23155 SWIGINTERN PyObject
*_wrap_new_PrintData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
23156 PyObject
*resultobj
= 0;
23157 wxPrintData
*arg1
= 0 ;
23158 wxPrintData
*result
= 0 ;
23162 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
23163 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
23164 if (!SWIG_IsOK(res1
)) {
23165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23168 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23170 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23173 result
= (wxPrintData
*)new wxPrintData((wxPrintData
const &)*arg1
);
23174 wxPyEndAllowThreads(__tstate
);
23175 if (PyErr_Occurred()) SWIG_fail
;
23177 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, SWIG_POINTER_NEW
| 0 );
23184 SWIGINTERN PyObject
*_wrap_new_PrintData(PyObject
*self
, PyObject
*args
) {
23188 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintData",0,1,argv
))) SWIG_fail
;
23191 return _wrap_new_PrintData__SWIG_0(self
, argc
, argv
);
23194 return _wrap_new_PrintData__SWIG_1(self
, argc
, argv
);
23198 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintData'");
23203 SWIGINTERN PyObject
*_wrap_delete_PrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23204 PyObject
*resultobj
= 0;
23205 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23208 PyObject
*swig_obj
[1] ;
23210 if (!args
) SWIG_fail
;
23211 swig_obj
[0] = args
;
23212 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, SWIG_POINTER_DISOWN
| 0 );
23213 if (!SWIG_IsOK(res1
)) {
23214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintData" "', expected argument " "1"" of type '" "wxPrintData *""'");
23216 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23221 wxPyEndAllowThreads(__tstate
);
23222 if (PyErr_Occurred()) SWIG_fail
;
23224 resultobj
= SWIG_Py_Void();
23231 SWIGINTERN PyObject
*_wrap_PrintData_GetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23232 PyObject
*resultobj
= 0;
23233 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23237 PyObject
*swig_obj
[1] ;
23239 if (!args
) SWIG_fail
;
23240 swig_obj
[0] = args
;
23241 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23242 if (!SWIG_IsOK(res1
)) {
23243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetNoCopies" "', expected argument " "1"" of type '" "wxPrintData *""'");
23245 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23248 result
= (int)(arg1
)->GetNoCopies();
23249 wxPyEndAllowThreads(__tstate
);
23250 if (PyErr_Occurred()) SWIG_fail
;
23252 resultobj
= SWIG_From_int(static_cast< int >(result
));
23259 SWIGINTERN PyObject
*_wrap_PrintData_GetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23260 PyObject
*resultobj
= 0;
23261 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23265 PyObject
*swig_obj
[1] ;
23267 if (!args
) SWIG_fail
;
23268 swig_obj
[0] = args
;
23269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23270 if (!SWIG_IsOK(res1
)) {
23271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetCollate" "', expected argument " "1"" of type '" "wxPrintData *""'");
23273 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23276 result
= (bool)(arg1
)->GetCollate();
23277 wxPyEndAllowThreads(__tstate
);
23278 if (PyErr_Occurred()) SWIG_fail
;
23281 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23289 SWIGINTERN PyObject
*_wrap_PrintData_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23290 PyObject
*resultobj
= 0;
23291 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23295 PyObject
*swig_obj
[1] ;
23297 if (!args
) SWIG_fail
;
23298 swig_obj
[0] = args
;
23299 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23300 if (!SWIG_IsOK(res1
)) {
23301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetOrientation" "', expected argument " "1"" of type '" "wxPrintData *""'");
23303 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23306 result
= (int)(arg1
)->GetOrientation();
23307 wxPyEndAllowThreads(__tstate
);
23308 if (PyErr_Occurred()) SWIG_fail
;
23310 resultobj
= SWIG_From_int(static_cast< int >(result
));
23317 SWIGINTERN PyObject
*_wrap_PrintData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23318 PyObject
*resultobj
= 0;
23319 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23323 PyObject
*swig_obj
[1] ;
23325 if (!args
) SWIG_fail
;
23326 swig_obj
[0] = args
;
23327 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23328 if (!SWIG_IsOK(res1
)) {
23329 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_Ok" "', expected argument " "1"" of type '" "wxPrintData *""'");
23331 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23334 result
= (bool)(arg1
)->Ok();
23335 wxPyEndAllowThreads(__tstate
);
23336 if (PyErr_Occurred()) SWIG_fail
;
23339 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23347 SWIGINTERN PyObject
*_wrap_PrintData_GetPrinterName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23348 PyObject
*resultobj
= 0;
23349 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23350 wxString
*result
= 0 ;
23353 PyObject
*swig_obj
[1] ;
23355 if (!args
) SWIG_fail
;
23356 swig_obj
[0] = args
;
23357 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23358 if (!SWIG_IsOK(res1
)) {
23359 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrinterName" "', expected argument " "1"" of type '" "wxPrintData *""'");
23361 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23365 wxString
const &_result_ref
= (arg1
)->GetPrinterName();
23366 result
= (wxString
*) &_result_ref
;
23368 wxPyEndAllowThreads(__tstate
);
23369 if (PyErr_Occurred()) SWIG_fail
;
23373 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
23375 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
23384 SWIGINTERN PyObject
*_wrap_PrintData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23385 PyObject
*resultobj
= 0;
23386 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23390 PyObject
*swig_obj
[1] ;
23392 if (!args
) SWIG_fail
;
23393 swig_obj
[0] = args
;
23394 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23395 if (!SWIG_IsOK(res1
)) {
23396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetColour" "', expected argument " "1"" of type '" "wxPrintData *""'");
23398 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23401 result
= (bool)(arg1
)->GetColour();
23402 wxPyEndAllowThreads(__tstate
);
23403 if (PyErr_Occurred()) SWIG_fail
;
23406 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23414 SWIGINTERN PyObject
*_wrap_PrintData_GetDuplex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23415 PyObject
*resultobj
= 0;
23416 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23417 wxDuplexMode result
;
23420 PyObject
*swig_obj
[1] ;
23422 if (!args
) SWIG_fail
;
23423 swig_obj
[0] = args
;
23424 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23425 if (!SWIG_IsOK(res1
)) {
23426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetDuplex" "', expected argument " "1"" of type '" "wxPrintData *""'");
23428 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23430 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23431 result
= (wxDuplexMode
)(arg1
)->GetDuplex();
23432 wxPyEndAllowThreads(__tstate
);
23433 if (PyErr_Occurred()) SWIG_fail
;
23435 resultobj
= SWIG_From_int(static_cast< int >(result
));
23442 SWIGINTERN PyObject
*_wrap_PrintData_GetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23443 PyObject
*resultobj
= 0;
23444 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23445 wxPaperSize result
;
23448 PyObject
*swig_obj
[1] ;
23450 if (!args
) SWIG_fail
;
23451 swig_obj
[0] = args
;
23452 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23453 if (!SWIG_IsOK(res1
)) {
23454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPaperId" "', expected argument " "1"" of type '" "wxPrintData *""'");
23456 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23459 result
= (wxPaperSize
)(arg1
)->GetPaperId();
23460 wxPyEndAllowThreads(__tstate
);
23461 if (PyErr_Occurred()) SWIG_fail
;
23463 resultobj
= SWIG_From_int(static_cast< int >(result
));
23470 SWIGINTERN PyObject
*_wrap_PrintData_GetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23471 PyObject
*resultobj
= 0;
23472 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23473 wxSize
*result
= 0 ;
23476 PyObject
*swig_obj
[1] ;
23478 if (!args
) SWIG_fail
;
23479 swig_obj
[0] = args
;
23480 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23481 if (!SWIG_IsOK(res1
)) {
23482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPaperSize" "', expected argument " "1"" of type '" "wxPrintData *""'");
23484 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23488 wxSize
const &_result_ref
= (arg1
)->GetPaperSize();
23489 result
= (wxSize
*) &_result_ref
;
23491 wxPyEndAllowThreads(__tstate
);
23492 if (PyErr_Occurred()) SWIG_fail
;
23494 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
23501 SWIGINTERN PyObject
*_wrap_PrintData_GetQuality(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23502 PyObject
*resultobj
= 0;
23503 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23507 PyObject
*swig_obj
[1] ;
23509 if (!args
) SWIG_fail
;
23510 swig_obj
[0] = args
;
23511 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23512 if (!SWIG_IsOK(res1
)) {
23513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetQuality" "', expected argument " "1"" of type '" "wxPrintData *""'");
23515 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23518 result
= (int)(arg1
)->GetQuality();
23519 wxPyEndAllowThreads(__tstate
);
23520 if (PyErr_Occurred()) SWIG_fail
;
23522 resultobj
= SWIG_From_int(static_cast< int >(result
));
23529 SWIGINTERN PyObject
*_wrap_PrintData_GetBin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23530 PyObject
*resultobj
= 0;
23531 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23535 PyObject
*swig_obj
[1] ;
23537 if (!args
) SWIG_fail
;
23538 swig_obj
[0] = args
;
23539 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23540 if (!SWIG_IsOK(res1
)) {
23541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetBin" "', expected argument " "1"" of type '" "wxPrintData *""'");
23543 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23546 result
= (wxPrintBin
)(arg1
)->GetBin();
23547 wxPyEndAllowThreads(__tstate
);
23548 if (PyErr_Occurred()) SWIG_fail
;
23550 resultobj
= SWIG_From_int(static_cast< int >(result
));
23557 SWIGINTERN PyObject
*_wrap_PrintData_GetPrintMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23558 PyObject
*resultobj
= 0;
23559 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23560 wxPrintMode result
;
23563 PyObject
*swig_obj
[1] ;
23565 if (!args
) SWIG_fail
;
23566 swig_obj
[0] = args
;
23567 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23568 if (!SWIG_IsOK(res1
)) {
23569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrintMode" "', expected argument " "1"" of type '" "wxPrintData const *""'");
23571 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23574 result
= (wxPrintMode
)((wxPrintData
const *)arg1
)->GetPrintMode();
23575 wxPyEndAllowThreads(__tstate
);
23576 if (PyErr_Occurred()) SWIG_fail
;
23578 resultobj
= SWIG_From_int(static_cast< int >(result
));
23585 SWIGINTERN PyObject
*_wrap_PrintData_SetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23586 PyObject
*resultobj
= 0;
23587 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23593 PyObject
* obj0
= 0 ;
23594 PyObject
* obj1
= 0 ;
23595 char * kwnames
[] = {
23596 (char *) "self",(char *) "v", NULL
23599 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetNoCopies",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23600 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23601 if (!SWIG_IsOK(res1
)) {
23602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetNoCopies" "', expected argument " "1"" of type '" "wxPrintData *""'");
23604 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23605 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23606 if (!SWIG_IsOK(ecode2
)) {
23607 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetNoCopies" "', expected argument " "2"" of type '" "int""'");
23609 arg2
= static_cast< int >(val2
);
23611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23612 (arg1
)->SetNoCopies(arg2
);
23613 wxPyEndAllowThreads(__tstate
);
23614 if (PyErr_Occurred()) SWIG_fail
;
23616 resultobj
= SWIG_Py_Void();
23623 SWIGINTERN PyObject
*_wrap_PrintData_SetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23624 PyObject
*resultobj
= 0;
23625 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23631 PyObject
* obj0
= 0 ;
23632 PyObject
* obj1
= 0 ;
23633 char * kwnames
[] = {
23634 (char *) "self",(char *) "flag", NULL
23637 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetCollate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23638 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23639 if (!SWIG_IsOK(res1
)) {
23640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetCollate" "', expected argument " "1"" of type '" "wxPrintData *""'");
23642 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23643 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
23644 if (!SWIG_IsOK(ecode2
)) {
23645 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetCollate" "', expected argument " "2"" of type '" "bool""'");
23647 arg2
= static_cast< bool >(val2
);
23649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23650 (arg1
)->SetCollate(arg2
);
23651 wxPyEndAllowThreads(__tstate
);
23652 if (PyErr_Occurred()) SWIG_fail
;
23654 resultobj
= SWIG_Py_Void();
23661 SWIGINTERN PyObject
*_wrap_PrintData_SetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23662 PyObject
*resultobj
= 0;
23663 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23669 PyObject
* obj0
= 0 ;
23670 PyObject
* obj1
= 0 ;
23671 char * kwnames
[] = {
23672 (char *) "self",(char *) "orient", NULL
23675 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23676 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23677 if (!SWIG_IsOK(res1
)) {
23678 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetOrientation" "', expected argument " "1"" of type '" "wxPrintData *""'");
23680 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23681 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23682 if (!SWIG_IsOK(ecode2
)) {
23683 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetOrientation" "', expected argument " "2"" of type '" "int""'");
23685 arg2
= static_cast< int >(val2
);
23687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23688 (arg1
)->SetOrientation(arg2
);
23689 wxPyEndAllowThreads(__tstate
);
23690 if (PyErr_Occurred()) SWIG_fail
;
23692 resultobj
= SWIG_Py_Void();
23699 SWIGINTERN PyObject
*_wrap_PrintData_SetPrinterName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23700 PyObject
*resultobj
= 0;
23701 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23702 wxString
*arg2
= 0 ;
23705 bool temp2
= false ;
23706 PyObject
* obj0
= 0 ;
23707 PyObject
* obj1
= 0 ;
23708 char * kwnames
[] = {
23709 (char *) "self",(char *) "name", NULL
23712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23714 if (!SWIG_IsOK(res1
)) {
23715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrinterName" "', expected argument " "1"" of type '" "wxPrintData *""'");
23717 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23719 arg2
= wxString_in_helper(obj1
);
23720 if (arg2
== NULL
) SWIG_fail
;
23724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23725 (arg1
)->SetPrinterName((wxString
const &)*arg2
);
23726 wxPyEndAllowThreads(__tstate
);
23727 if (PyErr_Occurred()) SWIG_fail
;
23729 resultobj
= SWIG_Py_Void();
23744 SWIGINTERN PyObject
*_wrap_PrintData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23745 PyObject
*resultobj
= 0;
23746 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23752 PyObject
* obj0
= 0 ;
23753 PyObject
* obj1
= 0 ;
23754 char * kwnames
[] = {
23755 (char *) "self",(char *) "colour", NULL
23758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23760 if (!SWIG_IsOK(res1
)) {
23761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetColour" "', expected argument " "1"" of type '" "wxPrintData *""'");
23763 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23764 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
23765 if (!SWIG_IsOK(ecode2
)) {
23766 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetColour" "', expected argument " "2"" of type '" "bool""'");
23768 arg2
= static_cast< bool >(val2
);
23770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23771 (arg1
)->SetColour(arg2
);
23772 wxPyEndAllowThreads(__tstate
);
23773 if (PyErr_Occurred()) SWIG_fail
;
23775 resultobj
= SWIG_Py_Void();
23782 SWIGINTERN PyObject
*_wrap_PrintData_SetDuplex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23783 PyObject
*resultobj
= 0;
23784 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23785 wxDuplexMode arg2
;
23790 PyObject
* obj0
= 0 ;
23791 PyObject
* obj1
= 0 ;
23792 char * kwnames
[] = {
23793 (char *) "self",(char *) "duplex", NULL
23796 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetDuplex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23797 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23798 if (!SWIG_IsOK(res1
)) {
23799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetDuplex" "', expected argument " "1"" of type '" "wxPrintData *""'");
23801 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23802 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23803 if (!SWIG_IsOK(ecode2
)) {
23804 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetDuplex" "', expected argument " "2"" of type '" "wxDuplexMode""'");
23806 arg2
= static_cast< wxDuplexMode
>(val2
);
23808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23809 (arg1
)->SetDuplex(arg2
);
23810 wxPyEndAllowThreads(__tstate
);
23811 if (PyErr_Occurred()) SWIG_fail
;
23813 resultobj
= SWIG_Py_Void();
23820 SWIGINTERN PyObject
*_wrap_PrintData_SetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23821 PyObject
*resultobj
= 0;
23822 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23828 PyObject
* obj0
= 0 ;
23829 PyObject
* obj1
= 0 ;
23830 char * kwnames
[] = {
23831 (char *) "self",(char *) "sizeId", NULL
23834 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23835 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23836 if (!SWIG_IsOK(res1
)) {
23837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPaperId" "', expected argument " "1"" of type '" "wxPrintData *""'");
23839 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23840 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23841 if (!SWIG_IsOK(ecode2
)) {
23842 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetPaperId" "', expected argument " "2"" of type '" "wxPaperSize""'");
23844 arg2
= static_cast< wxPaperSize
>(val2
);
23846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23847 (arg1
)->SetPaperId(arg2
);
23848 wxPyEndAllowThreads(__tstate
);
23849 if (PyErr_Occurred()) SWIG_fail
;
23851 resultobj
= SWIG_Py_Void();
23858 SWIGINTERN PyObject
*_wrap_PrintData_SetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23859 PyObject
*resultobj
= 0;
23860 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23865 PyObject
* obj0
= 0 ;
23866 PyObject
* obj1
= 0 ;
23867 char * kwnames
[] = {
23868 (char *) "self",(char *) "sz", NULL
23871 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23872 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23873 if (!SWIG_IsOK(res1
)) {
23874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPaperSize" "', expected argument " "1"" of type '" "wxPrintData *""'");
23876 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23879 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
23882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23883 (arg1
)->SetPaperSize((wxSize
const &)*arg2
);
23884 wxPyEndAllowThreads(__tstate
);
23885 if (PyErr_Occurred()) SWIG_fail
;
23887 resultobj
= SWIG_Py_Void();
23894 SWIGINTERN PyObject
*_wrap_PrintData_SetQuality(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23895 PyObject
*resultobj
= 0;
23896 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23902 PyObject
* obj0
= 0 ;
23903 PyObject
* obj1
= 0 ;
23904 char * kwnames
[] = {
23905 (char *) "self",(char *) "quality", NULL
23908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetQuality",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23910 if (!SWIG_IsOK(res1
)) {
23911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetQuality" "', expected argument " "1"" of type '" "wxPrintData *""'");
23913 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23914 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23915 if (!SWIG_IsOK(ecode2
)) {
23916 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetQuality" "', expected argument " "2"" of type '" "int""'");
23918 arg2
= static_cast< int >(val2
);
23920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23921 (arg1
)->SetQuality(arg2
);
23922 wxPyEndAllowThreads(__tstate
);
23923 if (PyErr_Occurred()) SWIG_fail
;
23925 resultobj
= SWIG_Py_Void();
23932 SWIGINTERN PyObject
*_wrap_PrintData_SetBin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23933 PyObject
*resultobj
= 0;
23934 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23940 PyObject
* obj0
= 0 ;
23941 PyObject
* obj1
= 0 ;
23942 char * kwnames
[] = {
23943 (char *) "self",(char *) "bin", NULL
23946 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetBin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23947 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23948 if (!SWIG_IsOK(res1
)) {
23949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetBin" "', expected argument " "1"" of type '" "wxPrintData *""'");
23951 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23952 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23953 if (!SWIG_IsOK(ecode2
)) {
23954 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetBin" "', expected argument " "2"" of type '" "wxPrintBin""'");
23956 arg2
= static_cast< wxPrintBin
>(val2
);
23958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23959 (arg1
)->SetBin(arg2
);
23960 wxPyEndAllowThreads(__tstate
);
23961 if (PyErr_Occurred()) SWIG_fail
;
23963 resultobj
= SWIG_Py_Void();
23970 SWIGINTERN PyObject
*_wrap_PrintData_SetPrintMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23971 PyObject
*resultobj
= 0;
23972 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23978 PyObject
* obj0
= 0 ;
23979 PyObject
* obj1
= 0 ;
23980 char * kwnames
[] = {
23981 (char *) "self",(char *) "printMode", NULL
23984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrintMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
23985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23986 if (!SWIG_IsOK(res1
)) {
23987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrintMode" "', expected argument " "1"" of type '" "wxPrintData *""'");
23989 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23990 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23991 if (!SWIG_IsOK(ecode2
)) {
23992 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetPrintMode" "', expected argument " "2"" of type '" "wxPrintMode""'");
23994 arg2
= static_cast< wxPrintMode
>(val2
);
23996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23997 (arg1
)->SetPrintMode(arg2
);
23998 wxPyEndAllowThreads(__tstate
);
23999 if (PyErr_Occurred()) SWIG_fail
;
24001 resultobj
= SWIG_Py_Void();
24008 SWIGINTERN PyObject
*_wrap_PrintData_GetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24009 PyObject
*resultobj
= 0;
24010 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24014 PyObject
*swig_obj
[1] ;
24016 if (!args
) SWIG_fail
;
24017 swig_obj
[0] = args
;
24018 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24019 if (!SWIG_IsOK(res1
)) {
24020 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetFilename" "', expected argument " "1"" of type '" "wxPrintData const *""'");
24022 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24025 result
= ((wxPrintData
const *)arg1
)->GetFilename();
24026 wxPyEndAllowThreads(__tstate
);
24027 if (PyErr_Occurred()) SWIG_fail
;
24031 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
24033 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
24042 SWIGINTERN PyObject
*_wrap_PrintData_SetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24043 PyObject
*resultobj
= 0;
24044 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24045 wxString
*arg2
= 0 ;
24048 bool temp2
= false ;
24049 PyObject
* obj0
= 0 ;
24050 PyObject
* obj1
= 0 ;
24051 char * kwnames
[] = {
24052 (char *) "self",(char *) "filename", NULL
24055 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetFilename",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24056 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24057 if (!SWIG_IsOK(res1
)) {
24058 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetFilename" "', expected argument " "1"" of type '" "wxPrintData *""'");
24060 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24062 arg2
= wxString_in_helper(obj1
);
24063 if (arg2
== NULL
) SWIG_fail
;
24067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24068 (arg1
)->SetFilename((wxString
const &)*arg2
);
24069 wxPyEndAllowThreads(__tstate
);
24070 if (PyErr_Occurred()) SWIG_fail
;
24072 resultobj
= SWIG_Py_Void();
24087 SWIGINTERN PyObject
*_wrap_PrintData_GetPrivData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24088 PyObject
*resultobj
= 0;
24089 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24090 PyObject
*result
= 0 ;
24093 PyObject
*swig_obj
[1] ;
24095 if (!args
) SWIG_fail
;
24096 swig_obj
[0] = args
;
24097 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24098 if (!SWIG_IsOK(res1
)) {
24099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrivData" "', expected argument " "1"" of type '" "wxPrintData *""'");
24101 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24103 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24104 result
= (PyObject
*)wxPrintData_GetPrivData(arg1
);
24105 wxPyEndAllowThreads(__tstate
);
24106 if (PyErr_Occurred()) SWIG_fail
;
24108 resultobj
= result
;
24115 SWIGINTERN PyObject
*_wrap_PrintData_SetPrivData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24116 PyObject
*resultobj
= 0;
24117 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24118 PyObject
*arg2
= (PyObject
*) 0 ;
24121 PyObject
* obj0
= 0 ;
24122 PyObject
* obj1
= 0 ;
24123 char * kwnames
[] = {
24124 (char *) "self",(char *) "data", NULL
24127 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrivData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24128 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24129 if (!SWIG_IsOK(res1
)) {
24130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrivData" "', expected argument " "1"" of type '" "wxPrintData *""'");
24132 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24136 wxPrintData_SetPrivData(arg1
,arg2
);
24137 wxPyEndAllowThreads(__tstate
);
24138 if (PyErr_Occurred()) SWIG_fail
;
24140 resultobj
= SWIG_Py_Void();
24147 SWIGINTERN PyObject
*PrintData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24149 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24150 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintData
, SWIG_NewClientData(obj
));
24151 return SWIG_Py_Void();
24154 SWIGINTERN PyObject
*PrintData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24155 return SWIG_Python_InitShadowInstance(args
);
24158 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
24159 PyObject
*resultobj
= 0;
24160 wxPageSetupDialogData
*result
= 0 ;
24162 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
24164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24165 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData();
24166 wxPyEndAllowThreads(__tstate
);
24167 if (PyErr_Occurred()) SWIG_fail
;
24169 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24176 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
24177 PyObject
*resultobj
= 0;
24178 wxPageSetupDialogData
*arg1
= 0 ;
24179 wxPageSetupDialogData
*result
= 0 ;
24183 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
24184 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0);
24185 if (!SWIG_IsOK(res1
)) {
24186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData const &""'");
24189 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData const &""'");
24191 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24194 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData((wxPageSetupDialogData
const &)*arg1
);
24195 wxPyEndAllowThreads(__tstate
);
24196 if (PyErr_Occurred()) SWIG_fail
;
24198 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24205 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
24206 PyObject
*resultobj
= 0;
24207 wxPrintData
*arg1
= 0 ;
24208 wxPageSetupDialogData
*result
= 0 ;
24212 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
24213 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
24214 if (!SWIG_IsOK(res1
)) {
24215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24218 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24220 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24223 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData((wxPrintData
const &)*arg1
);
24224 wxPyEndAllowThreads(__tstate
);
24225 if (PyErr_Occurred()) SWIG_fail
;
24227 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24234 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData(PyObject
*self
, PyObject
*args
) {
24238 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PageSetupDialogData",0,1,argv
))) SWIG_fail
;
24241 return _wrap_new_PageSetupDialogData__SWIG_0(self
, argc
, argv
);
24246 int res
= SWIG_ConvertPtr(argv
[0], 0, SWIGTYPE_p_wxPageSetupDialogData
, 0);
24247 _v
= SWIG_CheckState(res
);
24249 if (!_v
) goto check_2
;
24250 return _wrap_new_PageSetupDialogData__SWIG_1(self
, argc
, argv
);
24255 return _wrap_new_PageSetupDialogData__SWIG_2(self
, argc
, argv
);
24259 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PageSetupDialogData'");
24264 SWIGINTERN PyObject
*_wrap_delete_PageSetupDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24265 PyObject
*resultobj
= 0;
24266 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24269 PyObject
*swig_obj
[1] ;
24271 if (!args
) SWIG_fail
;
24272 swig_obj
[0] = args
;
24273 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_DISOWN
| 0 );
24274 if (!SWIG_IsOK(res1
)) {
24275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24277 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24282 wxPyEndAllowThreads(__tstate
);
24283 if (PyErr_Occurred()) SWIG_fail
;
24285 resultobj
= SWIG_Py_Void();
24292 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24293 PyObject
*resultobj
= 0;
24294 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24300 PyObject
* obj0
= 0 ;
24301 PyObject
* obj1
= 0 ;
24302 char * kwnames
[] = {
24303 (char *) "self",(char *) "flag", NULL
24306 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24307 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24308 if (!SWIG_IsOK(res1
)) {
24309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableHelp" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24311 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24312 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24313 if (!SWIG_IsOK(ecode2
)) {
24314 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableHelp" "', expected argument " "2"" of type '" "bool""'");
24316 arg2
= static_cast< bool >(val2
);
24318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24319 (arg1
)->EnableHelp(arg2
);
24320 wxPyEndAllowThreads(__tstate
);
24321 if (PyErr_Occurred()) SWIG_fail
;
24323 resultobj
= SWIG_Py_Void();
24330 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24331 PyObject
*resultobj
= 0;
24332 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24338 PyObject
* obj0
= 0 ;
24339 PyObject
* obj1
= 0 ;
24340 char * kwnames
[] = {
24341 (char *) "self",(char *) "flag", NULL
24344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24346 if (!SWIG_IsOK(res1
)) {
24347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24349 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24350 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24351 if (!SWIG_IsOK(ecode2
)) {
24352 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableMargins" "', expected argument " "2"" of type '" "bool""'");
24354 arg2
= static_cast< bool >(val2
);
24356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24357 (arg1
)->EnableMargins(arg2
);
24358 wxPyEndAllowThreads(__tstate
);
24359 if (PyErr_Occurred()) SWIG_fail
;
24361 resultobj
= SWIG_Py_Void();
24368 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24369 PyObject
*resultobj
= 0;
24370 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24376 PyObject
* obj0
= 0 ;
24377 PyObject
* obj1
= 0 ;
24378 char * kwnames
[] = {
24379 (char *) "self",(char *) "flag", NULL
24382 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24383 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24384 if (!SWIG_IsOK(res1
)) {
24385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableOrientation" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24387 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24388 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24389 if (!SWIG_IsOK(ecode2
)) {
24390 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableOrientation" "', expected argument " "2"" of type '" "bool""'");
24392 arg2
= static_cast< bool >(val2
);
24394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24395 (arg1
)->EnableOrientation(arg2
);
24396 wxPyEndAllowThreads(__tstate
);
24397 if (PyErr_Occurred()) SWIG_fail
;
24399 resultobj
= SWIG_Py_Void();
24406 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnablePaper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24407 PyObject
*resultobj
= 0;
24408 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24414 PyObject
* obj0
= 0 ;
24415 PyObject
* obj1
= 0 ;
24416 char * kwnames
[] = {
24417 (char *) "self",(char *) "flag", NULL
24420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePaper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24422 if (!SWIG_IsOK(res1
)) {
24423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnablePaper" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24425 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24426 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24427 if (!SWIG_IsOK(ecode2
)) {
24428 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnablePaper" "', expected argument " "2"" of type '" "bool""'");
24430 arg2
= static_cast< bool >(val2
);
24432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24433 (arg1
)->EnablePaper(arg2
);
24434 wxPyEndAllowThreads(__tstate
);
24435 if (PyErr_Occurred()) SWIG_fail
;
24437 resultobj
= SWIG_Py_Void();
24444 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnablePrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24445 PyObject
*resultobj
= 0;
24446 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24452 PyObject
* obj0
= 0 ;
24453 PyObject
* obj1
= 0 ;
24454 char * kwnames
[] = {
24455 (char *) "self",(char *) "flag", NULL
24458 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePrinter",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24459 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24460 if (!SWIG_IsOK(res1
)) {
24461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnablePrinter" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24463 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24464 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24465 if (!SWIG_IsOK(ecode2
)) {
24466 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnablePrinter" "', expected argument " "2"" of type '" "bool""'");
24468 arg2
= static_cast< bool >(val2
);
24470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24471 (arg1
)->EnablePrinter(arg2
);
24472 wxPyEndAllowThreads(__tstate
);
24473 if (PyErr_Occurred()) SWIG_fail
;
24475 resultobj
= SWIG_Py_Void();
24482 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetDefaultMinMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24483 PyObject
*resultobj
= 0;
24484 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24488 PyObject
*swig_obj
[1] ;
24490 if (!args
) SWIG_fail
;
24491 swig_obj
[0] = args
;
24492 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24493 if (!SWIG_IsOK(res1
)) {
24494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetDefaultMinMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24496 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24499 result
= (bool)(arg1
)->GetDefaultMinMargins();
24500 wxPyEndAllowThreads(__tstate
);
24501 if (PyErr_Occurred()) SWIG_fail
;
24504 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24512 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24513 PyObject
*resultobj
= 0;
24514 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24518 PyObject
*swig_obj
[1] ;
24520 if (!args
) SWIG_fail
;
24521 swig_obj
[0] = args
;
24522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24523 if (!SWIG_IsOK(res1
)) {
24524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24526 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24529 result
= (bool)(arg1
)->GetEnableMargins();
24530 wxPyEndAllowThreads(__tstate
);
24531 if (PyErr_Occurred()) SWIG_fail
;
24534 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24542 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24543 PyObject
*resultobj
= 0;
24544 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24548 PyObject
*swig_obj
[1] ;
24550 if (!args
) SWIG_fail
;
24551 swig_obj
[0] = args
;
24552 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24553 if (!SWIG_IsOK(res1
)) {
24554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableOrientation" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24556 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24559 result
= (bool)(arg1
)->GetEnableOrientation();
24560 wxPyEndAllowThreads(__tstate
);
24561 if (PyErr_Occurred()) SWIG_fail
;
24564 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24572 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnablePaper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24573 PyObject
*resultobj
= 0;
24574 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24578 PyObject
*swig_obj
[1] ;
24580 if (!args
) SWIG_fail
;
24581 swig_obj
[0] = args
;
24582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24583 if (!SWIG_IsOK(res1
)) {
24584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnablePaper" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24586 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24589 result
= (bool)(arg1
)->GetEnablePaper();
24590 wxPyEndAllowThreads(__tstate
);
24591 if (PyErr_Occurred()) SWIG_fail
;
24594 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24602 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnablePrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24603 PyObject
*resultobj
= 0;
24604 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24608 PyObject
*swig_obj
[1] ;
24610 if (!args
) SWIG_fail
;
24611 swig_obj
[0] = args
;
24612 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24613 if (!SWIG_IsOK(res1
)) {
24614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnablePrinter" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24616 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24619 result
= (bool)(arg1
)->GetEnablePrinter();
24620 wxPyEndAllowThreads(__tstate
);
24621 if (PyErr_Occurred()) SWIG_fail
;
24624 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24632 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24633 PyObject
*resultobj
= 0;
24634 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24638 PyObject
*swig_obj
[1] ;
24640 if (!args
) SWIG_fail
;
24641 swig_obj
[0] = args
;
24642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24643 if (!SWIG_IsOK(res1
)) {
24644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableHelp" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24646 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24649 result
= (bool)(arg1
)->GetEnableHelp();
24650 wxPyEndAllowThreads(__tstate
);
24651 if (PyErr_Occurred()) SWIG_fail
;
24654 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24662 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetDefaultInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24663 PyObject
*resultobj
= 0;
24664 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24668 PyObject
*swig_obj
[1] ;
24670 if (!args
) SWIG_fail
;
24671 swig_obj
[0] = args
;
24672 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24673 if (!SWIG_IsOK(res1
)) {
24674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetDefaultInfo" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24676 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24679 result
= (bool)(arg1
)->GetDefaultInfo();
24680 wxPyEndAllowThreads(__tstate
);
24681 if (PyErr_Occurred()) SWIG_fail
;
24684 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24692 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24693 PyObject
*resultobj
= 0;
24694 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24698 PyObject
*swig_obj
[1] ;
24700 if (!args
) SWIG_fail
;
24701 swig_obj
[0] = args
;
24702 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24703 if (!SWIG_IsOK(res1
)) {
24704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24706 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24709 result
= (arg1
)->GetMarginTopLeft();
24710 wxPyEndAllowThreads(__tstate
);
24711 if (PyErr_Occurred()) SWIG_fail
;
24713 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
24720 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24721 PyObject
*resultobj
= 0;
24722 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24726 PyObject
*swig_obj
[1] ;
24728 if (!args
) SWIG_fail
;
24729 swig_obj
[0] = args
;
24730 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24731 if (!SWIG_IsOK(res1
)) {
24732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24734 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24737 result
= (arg1
)->GetMarginBottomRight();
24738 wxPyEndAllowThreads(__tstate
);
24739 if (PyErr_Occurred()) SWIG_fail
;
24741 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
24748 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMinMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24749 PyObject
*resultobj
= 0;
24750 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24754 PyObject
*swig_obj
[1] ;
24756 if (!args
) SWIG_fail
;
24757 swig_obj
[0] = args
;
24758 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24759 if (!SWIG_IsOK(res1
)) {
24760 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMinMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24762 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24765 result
= (arg1
)->GetMinMarginTopLeft();
24766 wxPyEndAllowThreads(__tstate
);
24767 if (PyErr_Occurred()) SWIG_fail
;
24769 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
24776 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMinMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24777 PyObject
*resultobj
= 0;
24778 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24782 PyObject
*swig_obj
[1] ;
24784 if (!args
) SWIG_fail
;
24785 swig_obj
[0] = args
;
24786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24787 if (!SWIG_IsOK(res1
)) {
24788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMinMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24790 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24793 result
= (arg1
)->GetMinMarginBottomRight();
24794 wxPyEndAllowThreads(__tstate
);
24795 if (PyErr_Occurred()) SWIG_fail
;
24797 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
24804 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24805 PyObject
*resultobj
= 0;
24806 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24807 wxPaperSize result
;
24810 PyObject
*swig_obj
[1] ;
24812 if (!args
) SWIG_fail
;
24813 swig_obj
[0] = args
;
24814 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24815 if (!SWIG_IsOK(res1
)) {
24816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPaperId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24818 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24821 result
= (wxPaperSize
)(arg1
)->GetPaperId();
24822 wxPyEndAllowThreads(__tstate
);
24823 if (PyErr_Occurred()) SWIG_fail
;
24825 resultobj
= SWIG_From_int(static_cast< int >(result
));
24832 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24833 PyObject
*resultobj
= 0;
24834 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24838 PyObject
*swig_obj
[1] ;
24840 if (!args
) SWIG_fail
;
24841 swig_obj
[0] = args
;
24842 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24843 if (!SWIG_IsOK(res1
)) {
24844 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24846 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24849 result
= (arg1
)->GetPaperSize();
24850 wxPyEndAllowThreads(__tstate
);
24851 if (PyErr_Occurred()) SWIG_fail
;
24853 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
24860 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24861 PyObject
*resultobj
= 0;
24862 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24863 wxPrintData
*result
= 0 ;
24866 PyObject
*swig_obj
[1] ;
24868 if (!args
) SWIG_fail
;
24869 swig_obj
[0] = args
;
24870 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24871 if (!SWIG_IsOK(res1
)) {
24872 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPrintData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24874 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24878 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
24879 result
= (wxPrintData
*) &_result_ref
;
24881 wxPyEndAllowThreads(__tstate
);
24882 if (PyErr_Occurred()) SWIG_fail
;
24884 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
24891 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24892 PyObject
*resultobj
= 0;
24893 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24897 PyObject
*swig_obj
[1] ;
24899 if (!args
) SWIG_fail
;
24900 swig_obj
[0] = args
;
24901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24902 if (!SWIG_IsOK(res1
)) {
24903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_Ok" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24905 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24908 result
= (bool)(arg1
)->Ok();
24909 wxPyEndAllowThreads(__tstate
);
24910 if (PyErr_Occurred()) SWIG_fail
;
24913 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24921 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetDefaultInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24922 PyObject
*resultobj
= 0;
24923 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24929 PyObject
* obj0
= 0 ;
24930 PyObject
* obj1
= 0 ;
24931 char * kwnames
[] = {
24932 (char *) "self",(char *) "flag", NULL
24935 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24937 if (!SWIG_IsOK(res1
)) {
24938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetDefaultInfo" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24940 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24941 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24942 if (!SWIG_IsOK(ecode2
)) {
24943 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetDefaultInfo" "', expected argument " "2"" of type '" "bool""'");
24945 arg2
= static_cast< bool >(val2
);
24947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24948 (arg1
)->SetDefaultInfo(arg2
);
24949 wxPyEndAllowThreads(__tstate
);
24950 if (PyErr_Occurred()) SWIG_fail
;
24952 resultobj
= SWIG_Py_Void();
24959 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetDefaultMinMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24960 PyObject
*resultobj
= 0;
24961 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24967 PyObject
* obj0
= 0 ;
24968 PyObject
* obj1
= 0 ;
24969 char * kwnames
[] = {
24970 (char *) "self",(char *) "flag", NULL
24973 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultMinMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24974 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24975 if (!SWIG_IsOK(res1
)) {
24976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetDefaultMinMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24978 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24979 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24980 if (!SWIG_IsOK(ecode2
)) {
24981 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetDefaultMinMargins" "', expected argument " "2"" of type '" "bool""'");
24983 arg2
= static_cast< bool >(val2
);
24985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24986 (arg1
)->SetDefaultMinMargins(arg2
);
24987 wxPyEndAllowThreads(__tstate
);
24988 if (PyErr_Occurred()) SWIG_fail
;
24990 resultobj
= SWIG_Py_Void();
24997 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24998 PyObject
*resultobj
= 0;
24999 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25000 wxPoint
*arg2
= 0 ;
25004 PyObject
* obj0
= 0 ;
25005 PyObject
* obj1
= 0 ;
25006 char * kwnames
[] = {
25007 (char *) "self",(char *) "pt", NULL
25010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginTopLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25011 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25012 if (!SWIG_IsOK(res1
)) {
25013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25015 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25018 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25022 (arg1
)->SetMarginTopLeft((wxPoint
const &)*arg2
);
25023 wxPyEndAllowThreads(__tstate
);
25024 if (PyErr_Occurred()) SWIG_fail
;
25026 resultobj
= SWIG_Py_Void();
25033 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25034 PyObject
*resultobj
= 0;
25035 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25036 wxPoint
*arg2
= 0 ;
25040 PyObject
* obj0
= 0 ;
25041 PyObject
* obj1
= 0 ;
25042 char * kwnames
[] = {
25043 (char *) "self",(char *) "pt", NULL
25046 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginBottomRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25047 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25048 if (!SWIG_IsOK(res1
)) {
25049 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25051 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25054 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25058 (arg1
)->SetMarginBottomRight((wxPoint
const &)*arg2
);
25059 wxPyEndAllowThreads(__tstate
);
25060 if (PyErr_Occurred()) SWIG_fail
;
25062 resultobj
= SWIG_Py_Void();
25069 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMinMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25070 PyObject
*resultobj
= 0;
25071 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25072 wxPoint
*arg2
= 0 ;
25076 PyObject
* obj0
= 0 ;
25077 PyObject
* obj1
= 0 ;
25078 char * kwnames
[] = {
25079 (char *) "self",(char *) "pt", NULL
25082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginTopLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25084 if (!SWIG_IsOK(res1
)) {
25085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMinMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25087 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25090 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25094 (arg1
)->SetMinMarginTopLeft((wxPoint
const &)*arg2
);
25095 wxPyEndAllowThreads(__tstate
);
25096 if (PyErr_Occurred()) SWIG_fail
;
25098 resultobj
= SWIG_Py_Void();
25105 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMinMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25106 PyObject
*resultobj
= 0;
25107 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25108 wxPoint
*arg2
= 0 ;
25112 PyObject
* obj0
= 0 ;
25113 PyObject
* obj1
= 0 ;
25114 char * kwnames
[] = {
25115 (char *) "self",(char *) "pt", NULL
25118 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginBottomRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25119 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25120 if (!SWIG_IsOK(res1
)) {
25121 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMinMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25123 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25126 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25130 (arg1
)->SetMinMarginBottomRight((wxPoint
const &)*arg2
);
25131 wxPyEndAllowThreads(__tstate
);
25132 if (PyErr_Occurred()) SWIG_fail
;
25134 resultobj
= SWIG_Py_Void();
25141 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25142 PyObject
*resultobj
= 0;
25143 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25149 PyObject
* obj0
= 0 ;
25150 PyObject
* obj1
= 0 ;
25151 char * kwnames
[] = {
25152 (char *) "self",(char *) "id", NULL
25155 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25156 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25157 if (!SWIG_IsOK(res1
)) {
25158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPaperId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25160 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25161 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25162 if (!SWIG_IsOK(ecode2
)) {
25163 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetPaperId" "', expected argument " "2"" of type '" "wxPaperSize""'");
25165 arg2
= static_cast< wxPaperSize
>(val2
);
25167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25168 (arg1
)->SetPaperId(arg2
);
25169 wxPyEndAllowThreads(__tstate
);
25170 if (PyErr_Occurred()) SWIG_fail
;
25172 resultobj
= SWIG_Py_Void();
25179 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25180 PyObject
*resultobj
= 0;
25181 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25186 PyObject
* obj0
= 0 ;
25187 PyObject
* obj1
= 0 ;
25188 char * kwnames
[] = {
25189 (char *) "self",(char *) "size", NULL
25192 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25193 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25194 if (!SWIG_IsOK(res1
)) {
25195 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25197 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25200 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
25203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25204 (arg1
)->SetPaperSize((wxSize
const &)*arg2
);
25205 wxPyEndAllowThreads(__tstate
);
25206 if (PyErr_Occurred()) SWIG_fail
;
25208 resultobj
= SWIG_Py_Void();
25215 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25216 PyObject
*resultobj
= 0;
25217 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25218 wxPrintData
*arg2
= 0 ;
25223 PyObject
* obj0
= 0 ;
25224 PyObject
* obj1
= 0 ;
25225 char * kwnames
[] = {
25226 (char *) "self",(char *) "printData", NULL
25229 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25230 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25231 if (!SWIG_IsOK(res1
)) {
25232 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25234 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25235 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPrintData
, 0 | 0);
25236 if (!SWIG_IsOK(res2
)) {
25237 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
25240 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
25242 arg2
= reinterpret_cast< wxPrintData
* >(argp2
);
25244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25245 (arg1
)->SetPrintData((wxPrintData
const &)*arg2
);
25246 wxPyEndAllowThreads(__tstate
);
25247 if (PyErr_Occurred()) SWIG_fail
;
25249 resultobj
= SWIG_Py_Void();
25256 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_CalculateIdFromPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25257 PyObject
*resultobj
= 0;
25258 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25261 PyObject
*swig_obj
[1] ;
25263 if (!args
) SWIG_fail
;
25264 swig_obj
[0] = args
;
25265 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25266 if (!SWIG_IsOK(res1
)) {
25267 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_CalculateIdFromPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25269 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25272 (arg1
)->CalculateIdFromPaperSize();
25273 wxPyEndAllowThreads(__tstate
);
25274 if (PyErr_Occurred()) SWIG_fail
;
25276 resultobj
= SWIG_Py_Void();
25283 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_CalculatePaperSizeFromId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25284 PyObject
*resultobj
= 0;
25285 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25288 PyObject
*swig_obj
[1] ;
25290 if (!args
) SWIG_fail
;
25291 swig_obj
[0] = args
;
25292 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25293 if (!SWIG_IsOK(res1
)) {
25294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_CalculatePaperSizeFromId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25296 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25299 (arg1
)->CalculatePaperSizeFromId();
25300 wxPyEndAllowThreads(__tstate
);
25301 if (PyErr_Occurred()) SWIG_fail
;
25303 resultobj
= SWIG_Py_Void();
25310 SWIGINTERN PyObject
*PageSetupDialogData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25312 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
25313 SWIG_TypeNewClientData(SWIGTYPE_p_wxPageSetupDialogData
, SWIG_NewClientData(obj
));
25314 return SWIG_Py_Void();
25317 SWIGINTERN PyObject
*PageSetupDialogData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25318 return SWIG_Python_InitShadowInstance(args
);
25321 SWIGINTERN PyObject
*_wrap_new_PageSetupDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25322 PyObject
*resultobj
= 0;
25323 wxWindow
*arg1
= (wxWindow
*) 0 ;
25324 wxPageSetupDialogData
*arg2
= (wxPageSetupDialogData
*) NULL
;
25325 wxPageSetupDialog
*result
= 0 ;
25330 PyObject
* obj0
= 0 ;
25331 PyObject
* obj1
= 0 ;
25332 char * kwnames
[] = {
25333 (char *) "parent",(char *) "data", NULL
25336 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PageSetupDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25337 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
25338 if (!SWIG_IsOK(res1
)) {
25339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
25341 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
25343 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25344 if (!SWIG_IsOK(res2
)) {
25345 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PageSetupDialog" "', expected argument " "2"" of type '" "wxPageSetupDialogData *""'");
25347 arg2
= reinterpret_cast< wxPageSetupDialogData
* >(argp2
);
25350 if (!wxPyCheckForApp()) SWIG_fail
;
25351 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25352 result
= (wxPageSetupDialog
*)new wxPageSetupDialog(arg1
,arg2
);
25353 wxPyEndAllowThreads(__tstate
);
25354 if (PyErr_Occurred()) SWIG_fail
;
25356 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialog
, SWIG_POINTER_NEW
| 0 );
25363 SWIGINTERN PyObject
*_wrap_PageSetupDialog_GetPageSetupData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25364 PyObject
*resultobj
= 0;
25365 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25366 wxPageSetupDialogData
*result
= 0 ;
25369 PyObject
*swig_obj
[1] ;
25371 if (!args
) SWIG_fail
;
25372 swig_obj
[0] = args
;
25373 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25374 if (!SWIG_IsOK(res1
)) {
25375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_GetPageSetupData" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25377 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25381 wxPageSetupDialogData
&_result_ref
= (arg1
)->GetPageSetupData();
25382 result
= (wxPageSetupDialogData
*) &_result_ref
;
25384 wxPyEndAllowThreads(__tstate
);
25385 if (PyErr_Occurred()) SWIG_fail
;
25387 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25394 SWIGINTERN PyObject
*_wrap_PageSetupDialog_GetPageSetupDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25395 PyObject
*resultobj
= 0;
25396 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25397 wxPageSetupDialogData
*result
= 0 ;
25400 PyObject
*swig_obj
[1] ;
25402 if (!args
) SWIG_fail
;
25403 swig_obj
[0] = args
;
25404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25405 if (!SWIG_IsOK(res1
)) {
25406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_GetPageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25408 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25412 wxPageSetupDialogData
&_result_ref
= (arg1
)->GetPageSetupDialogData();
25413 result
= (wxPageSetupDialogData
*) &_result_ref
;
25415 wxPyEndAllowThreads(__tstate
);
25416 if (PyErr_Occurred()) SWIG_fail
;
25418 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25425 SWIGINTERN PyObject
*_wrap_PageSetupDialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25426 PyObject
*resultobj
= 0;
25427 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25431 PyObject
*swig_obj
[1] ;
25433 if (!args
) SWIG_fail
;
25434 swig_obj
[0] = args
;
25435 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25436 if (!SWIG_IsOK(res1
)) {
25437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_ShowModal" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25439 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25442 result
= (int)(arg1
)->ShowModal();
25443 wxPyEndAllowThreads(__tstate
);
25444 if (PyErr_Occurred()) SWIG_fail
;
25446 resultobj
= SWIG_From_int(static_cast< int >(result
));
25453 SWIGINTERN PyObject
*PageSetupDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25455 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
25456 SWIG_TypeNewClientData(SWIGTYPE_p_wxPageSetupDialog
, SWIG_NewClientData(obj
));
25457 return SWIG_Py_Void();
25460 SWIGINTERN PyObject
*PageSetupDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25461 return SWIG_Python_InitShadowInstance(args
);
25464 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
25465 PyObject
*resultobj
= 0;
25466 wxPrintDialogData
*result
= 0 ;
25468 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
25470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25471 result
= (wxPrintDialogData
*)new wxPrintDialogData();
25472 wxPyEndAllowThreads(__tstate
);
25473 if (PyErr_Occurred()) SWIG_fail
;
25475 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25482 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25483 PyObject
*resultobj
= 0;
25484 wxPrintData
*arg1
= 0 ;
25485 wxPrintDialogData
*result
= 0 ;
25489 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
25491 if (!SWIG_IsOK(res1
)) {
25492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
25495 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
25497 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
25499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25500 result
= (wxPrintDialogData
*)new wxPrintDialogData((wxPrintData
const &)*arg1
);
25501 wxPyEndAllowThreads(__tstate
);
25502 if (PyErr_Occurred()) SWIG_fail
;
25504 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25511 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25512 PyObject
*resultobj
= 0;
25513 wxPrintDialogData
*arg1
= 0 ;
25514 wxPrintDialogData
*result
= 0 ;
25518 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25519 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintDialogData
, 0 | 0);
25520 if (!SWIG_IsOK(res1
)) {
25521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData const &""'");
25524 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData const &""'");
25526 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25529 result
= (wxPrintDialogData
*)new wxPrintDialogData((wxPrintDialogData
const &)*arg1
);
25530 wxPyEndAllowThreads(__tstate
);
25531 if (PyErr_Occurred()) SWIG_fail
;
25533 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25540 SWIGINTERN PyObject
*_wrap_new_PrintDialogData(PyObject
*self
, PyObject
*args
) {
25544 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintDialogData",0,1,argv
))) SWIG_fail
;
25547 return _wrap_new_PrintDialogData__SWIG_0(self
, argc
, argv
);
25552 int res
= SWIG_ConvertPtr(argv
[0], 0, SWIGTYPE_p_wxPrintData
, 0);
25553 _v
= SWIG_CheckState(res
);
25555 if (!_v
) goto check_2
;
25556 return _wrap_new_PrintDialogData__SWIG_1(self
, argc
, argv
);
25561 return _wrap_new_PrintDialogData__SWIG_2(self
, argc
, argv
);
25565 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintDialogData'");
25570 SWIGINTERN PyObject
*_wrap_delete_PrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25571 PyObject
*resultobj
= 0;
25572 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25575 PyObject
*swig_obj
[1] ;
25577 if (!args
) SWIG_fail
;
25578 swig_obj
[0] = args
;
25579 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_DISOWN
| 0 );
25580 if (!SWIG_IsOK(res1
)) {
25581 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25583 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25585 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25588 wxPyEndAllowThreads(__tstate
);
25589 if (PyErr_Occurred()) SWIG_fail
;
25591 resultobj
= SWIG_Py_Void();
25598 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetFromPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25599 PyObject
*resultobj
= 0;
25600 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25604 PyObject
*swig_obj
[1] ;
25606 if (!args
) SWIG_fail
;
25607 swig_obj
[0] = args
;
25608 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25609 if (!SWIG_IsOK(res1
)) {
25610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetFromPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25612 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25615 result
= (int)((wxPrintDialogData
const *)arg1
)->GetFromPage();
25616 wxPyEndAllowThreads(__tstate
);
25617 if (PyErr_Occurred()) SWIG_fail
;
25619 resultobj
= SWIG_From_int(static_cast< int >(result
));
25626 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetToPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25627 PyObject
*resultobj
= 0;
25628 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25632 PyObject
*swig_obj
[1] ;
25634 if (!args
) SWIG_fail
;
25635 swig_obj
[0] = args
;
25636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25637 if (!SWIG_IsOK(res1
)) {
25638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetToPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25640 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25643 result
= (int)((wxPrintDialogData
const *)arg1
)->GetToPage();
25644 wxPyEndAllowThreads(__tstate
);
25645 if (PyErr_Occurred()) SWIG_fail
;
25647 resultobj
= SWIG_From_int(static_cast< int >(result
));
25654 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25655 PyObject
*resultobj
= 0;
25656 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25660 PyObject
*swig_obj
[1] ;
25662 if (!args
) SWIG_fail
;
25663 swig_obj
[0] = args
;
25664 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25665 if (!SWIG_IsOK(res1
)) {
25666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetMinPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25668 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25671 result
= (int)((wxPrintDialogData
const *)arg1
)->GetMinPage();
25672 wxPyEndAllowThreads(__tstate
);
25673 if (PyErr_Occurred()) SWIG_fail
;
25675 resultobj
= SWIG_From_int(static_cast< int >(result
));
25682 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25683 PyObject
*resultobj
= 0;
25684 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25688 PyObject
*swig_obj
[1] ;
25690 if (!args
) SWIG_fail
;
25691 swig_obj
[0] = args
;
25692 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25693 if (!SWIG_IsOK(res1
)) {
25694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetMaxPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25696 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25699 result
= (int)((wxPrintDialogData
const *)arg1
)->GetMaxPage();
25700 wxPyEndAllowThreads(__tstate
);
25701 if (PyErr_Occurred()) SWIG_fail
;
25703 resultobj
= SWIG_From_int(static_cast< int >(result
));
25710 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25711 PyObject
*resultobj
= 0;
25712 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25716 PyObject
*swig_obj
[1] ;
25718 if (!args
) SWIG_fail
;
25719 swig_obj
[0] = args
;
25720 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25721 if (!SWIG_IsOK(res1
)) {
25722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetNoCopies" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25724 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25727 result
= (int)((wxPrintDialogData
const *)arg1
)->GetNoCopies();
25728 wxPyEndAllowThreads(__tstate
);
25729 if (PyErr_Occurred()) SWIG_fail
;
25731 resultobj
= SWIG_From_int(static_cast< int >(result
));
25738 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetAllPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25739 PyObject
*resultobj
= 0;
25740 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25744 PyObject
*swig_obj
[1] ;
25746 if (!args
) SWIG_fail
;
25747 swig_obj
[0] = args
;
25748 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25749 if (!SWIG_IsOK(res1
)) {
25750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetAllPages" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25752 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25755 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetAllPages();
25756 wxPyEndAllowThreads(__tstate
);
25757 if (PyErr_Occurred()) SWIG_fail
;
25760 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25768 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25769 PyObject
*resultobj
= 0;
25770 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25774 PyObject
*swig_obj
[1] ;
25776 if (!args
) SWIG_fail
;
25777 swig_obj
[0] = args
;
25778 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25779 if (!SWIG_IsOK(res1
)) {
25780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetSelection" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25782 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25784 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25785 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetSelection();
25786 wxPyEndAllowThreads(__tstate
);
25787 if (PyErr_Occurred()) SWIG_fail
;
25790 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25798 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25799 PyObject
*resultobj
= 0;
25800 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25804 PyObject
*swig_obj
[1] ;
25806 if (!args
) SWIG_fail
;
25807 swig_obj
[0] = args
;
25808 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25809 if (!SWIG_IsOK(res1
)) {
25810 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetCollate" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25812 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25815 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetCollate();
25816 wxPyEndAllowThreads(__tstate
);
25817 if (PyErr_Occurred()) SWIG_fail
;
25820 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25828 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetPrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25829 PyObject
*resultobj
= 0;
25830 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25834 PyObject
*swig_obj
[1] ;
25836 if (!args
) SWIG_fail
;
25837 swig_obj
[0] = args
;
25838 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25839 if (!SWIG_IsOK(res1
)) {
25840 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetPrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25842 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25845 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetPrintToFile();
25846 wxPyEndAllowThreads(__tstate
);
25847 if (PyErr_Occurred()) SWIG_fail
;
25850 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25858 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetFromPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25859 PyObject
*resultobj
= 0;
25860 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25866 PyObject
* obj0
= 0 ;
25867 PyObject
* obj1
= 0 ;
25868 char * kwnames
[] = {
25869 (char *) "self",(char *) "v", NULL
25872 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetFromPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25873 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25874 if (!SWIG_IsOK(res1
)) {
25875 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetFromPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25877 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25878 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25879 if (!SWIG_IsOK(ecode2
)) {
25880 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetFromPage" "', expected argument " "2"" of type '" "int""'");
25882 arg2
= static_cast< int >(val2
);
25884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25885 (arg1
)->SetFromPage(arg2
);
25886 wxPyEndAllowThreads(__tstate
);
25887 if (PyErr_Occurred()) SWIG_fail
;
25889 resultobj
= SWIG_Py_Void();
25896 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetToPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25897 PyObject
*resultobj
= 0;
25898 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25904 PyObject
* obj0
= 0 ;
25905 PyObject
* obj1
= 0 ;
25906 char * kwnames
[] = {
25907 (char *) "self",(char *) "v", NULL
25910 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetToPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25911 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25912 if (!SWIG_IsOK(res1
)) {
25913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetToPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25915 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25916 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25917 if (!SWIG_IsOK(ecode2
)) {
25918 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetToPage" "', expected argument " "2"" of type '" "int""'");
25920 arg2
= static_cast< int >(val2
);
25922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25923 (arg1
)->SetToPage(arg2
);
25924 wxPyEndAllowThreads(__tstate
);
25925 if (PyErr_Occurred()) SWIG_fail
;
25927 resultobj
= SWIG_Py_Void();
25934 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25935 PyObject
*resultobj
= 0;
25936 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25942 PyObject
* obj0
= 0 ;
25943 PyObject
* obj1
= 0 ;
25944 char * kwnames
[] = {
25945 (char *) "self",(char *) "v", NULL
25948 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMinPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25949 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25950 if (!SWIG_IsOK(res1
)) {
25951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetMinPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25953 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25954 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25955 if (!SWIG_IsOK(ecode2
)) {
25956 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetMinPage" "', expected argument " "2"" of type '" "int""'");
25958 arg2
= static_cast< int >(val2
);
25960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25961 (arg1
)->SetMinPage(arg2
);
25962 wxPyEndAllowThreads(__tstate
);
25963 if (PyErr_Occurred()) SWIG_fail
;
25965 resultobj
= SWIG_Py_Void();
25972 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25973 PyObject
*resultobj
= 0;
25974 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25980 PyObject
* obj0
= 0 ;
25981 PyObject
* obj1
= 0 ;
25982 char * kwnames
[] = {
25983 (char *) "self",(char *) "v", NULL
25986 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMaxPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25987 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25988 if (!SWIG_IsOK(res1
)) {
25989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetMaxPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25991 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25992 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25993 if (!SWIG_IsOK(ecode2
)) {
25994 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetMaxPage" "', expected argument " "2"" of type '" "int""'");
25996 arg2
= static_cast< int >(val2
);
25998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25999 (arg1
)->SetMaxPage(arg2
);
26000 wxPyEndAllowThreads(__tstate
);
26001 if (PyErr_Occurred()) SWIG_fail
;
26003 resultobj
= SWIG_Py_Void();
26010 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26011 PyObject
*resultobj
= 0;
26012 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26018 PyObject
* obj0
= 0 ;
26019 PyObject
* obj1
= 0 ;
26020 char * kwnames
[] = {
26021 (char *) "self",(char *) "v", NULL
26024 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetNoCopies",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26025 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26026 if (!SWIG_IsOK(res1
)) {
26027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetNoCopies" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26029 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26030 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26031 if (!SWIG_IsOK(ecode2
)) {
26032 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetNoCopies" "', expected argument " "2"" of type '" "int""'");
26034 arg2
= static_cast< int >(val2
);
26036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26037 (arg1
)->SetNoCopies(arg2
);
26038 wxPyEndAllowThreads(__tstate
);
26039 if (PyErr_Occurred()) SWIG_fail
;
26041 resultobj
= SWIG_Py_Void();
26048 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetAllPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26049 PyObject
*resultobj
= 0;
26050 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26056 PyObject
* obj0
= 0 ;
26057 PyObject
* obj1
= 0 ;
26058 char * kwnames
[] = {
26059 (char *) "self",(char *) "flag", NULL
26062 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetAllPages",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26063 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26064 if (!SWIG_IsOK(res1
)) {
26065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetAllPages" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26067 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26068 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26069 if (!SWIG_IsOK(ecode2
)) {
26070 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetAllPages" "', expected argument " "2"" of type '" "bool""'");
26072 arg2
= static_cast< bool >(val2
);
26074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26075 (arg1
)->SetAllPages(arg2
);
26076 wxPyEndAllowThreads(__tstate
);
26077 if (PyErr_Occurred()) SWIG_fail
;
26079 resultobj
= SWIG_Py_Void();
26086 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26087 PyObject
*resultobj
= 0;
26088 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26094 PyObject
* obj0
= 0 ;
26095 PyObject
* obj1
= 0 ;
26096 char * kwnames
[] = {
26097 (char *) "self",(char *) "flag", NULL
26100 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26101 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26102 if (!SWIG_IsOK(res1
)) {
26103 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetSelection" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26105 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26106 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26107 if (!SWIG_IsOK(ecode2
)) {
26108 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetSelection" "', expected argument " "2"" of type '" "bool""'");
26110 arg2
= static_cast< bool >(val2
);
26112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26113 (arg1
)->SetSelection(arg2
);
26114 wxPyEndAllowThreads(__tstate
);
26115 if (PyErr_Occurred()) SWIG_fail
;
26117 resultobj
= SWIG_Py_Void();
26124 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26125 PyObject
*resultobj
= 0;
26126 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26132 PyObject
* obj0
= 0 ;
26133 PyObject
* obj1
= 0 ;
26134 char * kwnames
[] = {
26135 (char *) "self",(char *) "flag", NULL
26138 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetCollate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26139 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26140 if (!SWIG_IsOK(res1
)) {
26141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetCollate" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26143 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26144 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26145 if (!SWIG_IsOK(ecode2
)) {
26146 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetCollate" "', expected argument " "2"" of type '" "bool""'");
26148 arg2
= static_cast< bool >(val2
);
26150 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26151 (arg1
)->SetCollate(arg2
);
26152 wxPyEndAllowThreads(__tstate
);
26153 if (PyErr_Occurred()) SWIG_fail
;
26155 resultobj
= SWIG_Py_Void();
26162 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetPrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26163 PyObject
*resultobj
= 0;
26164 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26170 PyObject
* obj0
= 0 ;
26171 PyObject
* obj1
= 0 ;
26172 char * kwnames
[] = {
26173 (char *) "self",(char *) "flag", NULL
26176 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintToFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26177 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26178 if (!SWIG_IsOK(res1
)) {
26179 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetPrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26181 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26182 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26183 if (!SWIG_IsOK(ecode2
)) {
26184 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetPrintToFile" "', expected argument " "2"" of type '" "bool""'");
26186 arg2
= static_cast< bool >(val2
);
26188 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26189 (arg1
)->SetPrintToFile(arg2
);
26190 wxPyEndAllowThreads(__tstate
);
26191 if (PyErr_Occurred()) SWIG_fail
;
26193 resultobj
= SWIG_Py_Void();
26200 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnablePrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26201 PyObject
*resultobj
= 0;
26202 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26208 PyObject
* obj0
= 0 ;
26209 PyObject
* obj1
= 0 ;
26210 char * kwnames
[] = {
26211 (char *) "self",(char *) "flag", NULL
26214 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePrintToFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26215 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26216 if (!SWIG_IsOK(res1
)) {
26217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnablePrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26219 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26220 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26221 if (!SWIG_IsOK(ecode2
)) {
26222 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnablePrintToFile" "', expected argument " "2"" of type '" "bool""'");
26224 arg2
= static_cast< bool >(val2
);
26226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26227 (arg1
)->EnablePrintToFile(arg2
);
26228 wxPyEndAllowThreads(__tstate
);
26229 if (PyErr_Occurred()) SWIG_fail
;
26231 resultobj
= SWIG_Py_Void();
26238 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnableSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26239 PyObject
*resultobj
= 0;
26240 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26246 PyObject
* obj0
= 0 ;
26247 PyObject
* obj1
= 0 ;
26248 char * kwnames
[] = {
26249 (char *) "self",(char *) "flag", NULL
26252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26254 if (!SWIG_IsOK(res1
)) {
26255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnableSelection" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26257 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26258 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26259 if (!SWIG_IsOK(ecode2
)) {
26260 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnableSelection" "', expected argument " "2"" of type '" "bool""'");
26262 arg2
= static_cast< bool >(val2
);
26264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26265 (arg1
)->EnableSelection(arg2
);
26266 wxPyEndAllowThreads(__tstate
);
26267 if (PyErr_Occurred()) SWIG_fail
;
26269 resultobj
= SWIG_Py_Void();
26276 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnablePageNumbers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26277 PyObject
*resultobj
= 0;
26278 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26284 PyObject
* obj0
= 0 ;
26285 PyObject
* obj1
= 0 ;
26286 char * kwnames
[] = {
26287 (char *) "self",(char *) "flag", NULL
26290 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePageNumbers",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26291 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26292 if (!SWIG_IsOK(res1
)) {
26293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnablePageNumbers" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26295 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26296 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26297 if (!SWIG_IsOK(ecode2
)) {
26298 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnablePageNumbers" "', expected argument " "2"" of type '" "bool""'");
26300 arg2
= static_cast< bool >(val2
);
26302 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26303 (arg1
)->EnablePageNumbers(arg2
);
26304 wxPyEndAllowThreads(__tstate
);
26305 if (PyErr_Occurred()) SWIG_fail
;
26307 resultobj
= SWIG_Py_Void();
26314 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26315 PyObject
*resultobj
= 0;
26316 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26322 PyObject
* obj0
= 0 ;
26323 PyObject
* obj1
= 0 ;
26324 char * kwnames
[] = {
26325 (char *) "self",(char *) "flag", NULL
26328 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26329 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26330 if (!SWIG_IsOK(res1
)) {
26331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnableHelp" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26333 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26334 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26335 if (!SWIG_IsOK(ecode2
)) {
26336 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnableHelp" "', expected argument " "2"" of type '" "bool""'");
26338 arg2
= static_cast< bool >(val2
);
26340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26341 (arg1
)->EnableHelp(arg2
);
26342 wxPyEndAllowThreads(__tstate
);
26343 if (PyErr_Occurred()) SWIG_fail
;
26345 resultobj
= SWIG_Py_Void();
26352 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnablePrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26353 PyObject
*resultobj
= 0;
26354 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26358 PyObject
*swig_obj
[1] ;
26360 if (!args
) SWIG_fail
;
26361 swig_obj
[0] = args
;
26362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26363 if (!SWIG_IsOK(res1
)) {
26364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnablePrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26366 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26369 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnablePrintToFile();
26370 wxPyEndAllowThreads(__tstate
);
26371 if (PyErr_Occurred()) SWIG_fail
;
26374 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26382 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnableSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26383 PyObject
*resultobj
= 0;
26384 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26388 PyObject
*swig_obj
[1] ;
26390 if (!args
) SWIG_fail
;
26391 swig_obj
[0] = args
;
26392 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26393 if (!SWIG_IsOK(res1
)) {
26394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnableSelection" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26396 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26398 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26399 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnableSelection();
26400 wxPyEndAllowThreads(__tstate
);
26401 if (PyErr_Occurred()) SWIG_fail
;
26404 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26412 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnablePageNumbers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26413 PyObject
*resultobj
= 0;
26414 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26418 PyObject
*swig_obj
[1] ;
26420 if (!args
) SWIG_fail
;
26421 swig_obj
[0] = args
;
26422 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26423 if (!SWIG_IsOK(res1
)) {
26424 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnablePageNumbers" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26426 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26429 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnablePageNumbers();
26430 wxPyEndAllowThreads(__tstate
);
26431 if (PyErr_Occurred()) SWIG_fail
;
26434 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26442 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26443 PyObject
*resultobj
= 0;
26444 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26448 PyObject
*swig_obj
[1] ;
26450 if (!args
) SWIG_fail
;
26451 swig_obj
[0] = args
;
26452 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26453 if (!SWIG_IsOK(res1
)) {
26454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnableHelp" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26456 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26459 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnableHelp();
26460 wxPyEndAllowThreads(__tstate
);
26461 if (PyErr_Occurred()) SWIG_fail
;
26464 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26472 SWIGINTERN PyObject
*_wrap_PrintDialogData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26473 PyObject
*resultobj
= 0;
26474 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26478 PyObject
*swig_obj
[1] ;
26480 if (!args
) SWIG_fail
;
26481 swig_obj
[0] = args
;
26482 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26483 if (!SWIG_IsOK(res1
)) {
26484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_Ok" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26486 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26489 result
= (bool)((wxPrintDialogData
const *)arg1
)->Ok();
26490 wxPyEndAllowThreads(__tstate
);
26491 if (PyErr_Occurred()) SWIG_fail
;
26494 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26502 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26503 PyObject
*resultobj
= 0;
26504 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26505 wxPrintData
*result
= 0 ;
26508 PyObject
*swig_obj
[1] ;
26510 if (!args
) SWIG_fail
;
26511 swig_obj
[0] = args
;
26512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26513 if (!SWIG_IsOK(res1
)) {
26514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetPrintData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26516 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26520 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
26521 result
= (wxPrintData
*) &_result_ref
;
26523 wxPyEndAllowThreads(__tstate
);
26524 if (PyErr_Occurred()) SWIG_fail
;
26526 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
26533 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26534 PyObject
*resultobj
= 0;
26535 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26536 wxPrintData
*arg2
= 0 ;
26541 PyObject
* obj0
= 0 ;
26542 PyObject
* obj1
= 0 ;
26543 char * kwnames
[] = {
26544 (char *) "self",(char *) "printData", NULL
26547 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26548 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26549 if (!SWIG_IsOK(res1
)) {
26550 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetPrintData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26552 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26553 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPrintData
, 0 | 0);
26554 if (!SWIG_IsOK(res2
)) {
26555 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
26558 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
26560 arg2
= reinterpret_cast< wxPrintData
* >(argp2
);
26562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26563 (arg1
)->SetPrintData((wxPrintData
const &)*arg2
);
26564 wxPyEndAllowThreads(__tstate
);
26565 if (PyErr_Occurred()) SWIG_fail
;
26567 resultobj
= SWIG_Py_Void();
26574 SWIGINTERN PyObject
*PrintDialogData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26576 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
26577 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintDialogData
, SWIG_NewClientData(obj
));
26578 return SWIG_Py_Void();
26581 SWIGINTERN PyObject
*PrintDialogData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26582 return SWIG_Python_InitShadowInstance(args
);
26585 SWIGINTERN PyObject
*_wrap_new_PrintDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26586 PyObject
*resultobj
= 0;
26587 wxWindow
*arg1
= (wxWindow
*) 0 ;
26588 wxPrintDialogData
*arg2
= (wxPrintDialogData
*) NULL
;
26589 wxPrintDialog
*result
= 0 ;
26594 PyObject
* obj0
= 0 ;
26595 PyObject
* obj1
= 0 ;
26596 char * kwnames
[] = {
26597 (char *) "parent",(char *) "data", NULL
26600 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PrintDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26601 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
26602 if (!SWIG_IsOK(res1
)) {
26603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
26605 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
26607 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26608 if (!SWIG_IsOK(res2
)) {
26609 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintDialog" "', expected argument " "2"" of type '" "wxPrintDialogData *""'");
26611 arg2
= reinterpret_cast< wxPrintDialogData
* >(argp2
);
26614 if (!wxPyCheckForApp()) SWIG_fail
;
26615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26616 result
= (wxPrintDialog
*)new wxPrintDialog(arg1
,arg2
);
26617 wxPyEndAllowThreads(__tstate
);
26618 if (PyErr_Occurred()) SWIG_fail
;
26620 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_NEW
| 0 );
26627 SWIGINTERN PyObject
*_wrap_PrintDialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26628 PyObject
*resultobj
= 0;
26629 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26633 PyObject
*swig_obj
[1] ;
26635 if (!args
) SWIG_fail
;
26636 swig_obj
[0] = args
;
26637 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26638 if (!SWIG_IsOK(res1
)) {
26639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_ShowModal" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26641 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26643 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26644 result
= (int)(arg1
)->ShowModal();
26645 wxPyEndAllowThreads(__tstate
);
26646 if (PyErr_Occurred()) SWIG_fail
;
26648 resultobj
= SWIG_From_int(static_cast< int >(result
));
26655 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26656 PyObject
*resultobj
= 0;
26657 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26658 wxPrintDialogData
*result
= 0 ;
26661 PyObject
*swig_obj
[1] ;
26663 if (!args
) SWIG_fail
;
26664 swig_obj
[0] = args
;
26665 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26666 if (!SWIG_IsOK(res1
)) {
26667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26669 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26673 wxPrintDialogData
&_result_ref
= (arg1
)->GetPrintDialogData();
26674 result
= (wxPrintDialogData
*) &_result_ref
;
26676 wxPyEndAllowThreads(__tstate
);
26677 if (PyErr_Occurred()) SWIG_fail
;
26679 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26686 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26687 PyObject
*resultobj
= 0;
26688 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26689 wxPrintData
*result
= 0 ;
26692 PyObject
*swig_obj
[1] ;
26694 if (!args
) SWIG_fail
;
26695 swig_obj
[0] = args
;
26696 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26697 if (!SWIG_IsOK(res1
)) {
26698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintData" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26700 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26704 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
26705 result
= (wxPrintData
*) &_result_ref
;
26707 wxPyEndAllowThreads(__tstate
);
26708 if (PyErr_Occurred()) SWIG_fail
;
26710 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
26717 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26718 PyObject
*resultobj
= 0;
26719 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26723 PyObject
*swig_obj
[1] ;
26725 if (!args
) SWIG_fail
;
26726 swig_obj
[0] = args
;
26727 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26728 if (!SWIG_IsOK(res1
)) {
26729 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintDC" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26731 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26734 result
= (wxDC
*)(arg1
)->GetPrintDC();
26735 wxPyEndAllowThreads(__tstate
);
26736 if (PyErr_Occurred()) SWIG_fail
;
26739 resultobj
= wxPyMake_wxObject(result
, (bool)SWIG_POINTER_OWN
);
26747 SWIGINTERN PyObject
*PrintDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26749 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
26750 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintDialog
, SWIG_NewClientData(obj
));
26751 return SWIG_Py_Void();
26754 SWIGINTERN PyObject
*PrintDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26755 return SWIG_Python_InitShadowInstance(args
);
26758 SWIGINTERN PyObject
*_wrap_new_Printer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26759 PyObject
*resultobj
= 0;
26760 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) NULL
;
26761 wxPrinter
*result
= 0 ;
26764 PyObject
* obj0
= 0 ;
26765 char * kwnames
[] = {
26766 (char *) "data", NULL
26769 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printer",kwnames
,&obj0
)) SWIG_fail
;
26771 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26772 if (!SWIG_IsOK(res1
)) {
26773 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Printer" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26775 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26778 if (!wxPyCheckForApp()) SWIG_fail
;
26779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26780 result
= (wxPrinter
*)new wxPrinter(arg1
);
26781 wxPyEndAllowThreads(__tstate
);
26782 if (PyErr_Occurred()) SWIG_fail
;
26784 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrinter
, SWIG_POINTER_NEW
| 0 );
26791 SWIGINTERN PyObject
*_wrap_delete_Printer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26792 PyObject
*resultobj
= 0;
26793 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
26796 PyObject
*swig_obj
[1] ;
26798 if (!args
) SWIG_fail
;
26799 swig_obj
[0] = args
;
26800 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, SWIG_POINTER_DISOWN
| 0 );
26801 if (!SWIG_IsOK(res1
)) {
26802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Printer" "', expected argument " "1"" of type '" "wxPrinter *""'");
26804 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
26806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26809 wxPyEndAllowThreads(__tstate
);
26810 if (PyErr_Occurred()) SWIG_fail
;
26812 resultobj
= SWIG_Py_Void();
26819 SWIGINTERN PyObject
*_wrap_Printer_CreateAbortWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26820 PyObject
*resultobj
= 0;
26821 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
26822 wxWindow
*arg2
= (wxWindow
*) 0 ;
26823 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
26824 wxWindow
*result
= 0 ;
26831 PyObject
* obj0
= 0 ;
26832 PyObject
* obj1
= 0 ;
26833 PyObject
* obj2
= 0 ;
26834 char * kwnames
[] = {
26835 (char *) "self",(char *) "parent",(char *) "printout", NULL
26838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printer_CreateAbortWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
26839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
26840 if (!SWIG_IsOK(res1
)) {
26841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "1"" of type '" "wxPrinter *""'");
26843 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
26844 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
26845 if (!SWIG_IsOK(res2
)) {
26846 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
26848 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
26849 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
26850 if (!SWIG_IsOK(res3
)) {
26851 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
26853 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
26855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26856 result
= (wxWindow
*)(arg1
)->CreateAbortWindow(arg2
,arg3
);
26857 wxPyEndAllowThreads(__tstate
);
26858 if (PyErr_Occurred()) SWIG_fail
;
26861 resultobj
= wxPyMake_wxObject(result
, 0);
26869 SWIGINTERN PyObject
*_wrap_Printer_ReportError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26870 PyObject
*resultobj
= 0;
26871 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
26872 wxWindow
*arg2
= (wxWindow
*) 0 ;
26873 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
26874 wxString
*arg4
= 0 ;
26881 bool temp4
= false ;
26882 PyObject
* obj0
= 0 ;
26883 PyObject
* obj1
= 0 ;
26884 PyObject
* obj2
= 0 ;
26885 PyObject
* obj3
= 0 ;
26886 char * kwnames
[] = {
26887 (char *) "self",(char *) "parent",(char *) "printout",(char *) "message", NULL
26890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:Printer_ReportError",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
26891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
26892 if (!SWIG_IsOK(res1
)) {
26893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_ReportError" "', expected argument " "1"" of type '" "wxPrinter *""'");
26895 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
26896 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
26897 if (!SWIG_IsOK(res2
)) {
26898 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_ReportError" "', expected argument " "2"" of type '" "wxWindow *""'");
26900 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
26901 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
26902 if (!SWIG_IsOK(res3
)) {
26903 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_ReportError" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
26905 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
26907 arg4
= wxString_in_helper(obj3
);
26908 if (arg4
== NULL
) SWIG_fail
;
26912 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26913 (arg1
)->ReportError(arg2
,arg3
,(wxString
const &)*arg4
);
26914 wxPyEndAllowThreads(__tstate
);
26915 if (PyErr_Occurred()) SWIG_fail
;
26917 resultobj
= SWIG_Py_Void();
26932 SWIGINTERN PyObject
*_wrap_Printer_Setup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26933 PyObject
*resultobj
= 0;
26934 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
26935 wxWindow
*arg2
= (wxWindow
*) 0 ;
26941 PyObject
* obj0
= 0 ;
26942 PyObject
* obj1
= 0 ;
26943 char * kwnames
[] = {
26944 (char *) "self",(char *) "parent", NULL
26947 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_Setup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26948 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
26949 if (!SWIG_IsOK(res1
)) {
26950 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_Setup" "', expected argument " "1"" of type '" "wxPrinter *""'");
26952 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
26953 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
26954 if (!SWIG_IsOK(res2
)) {
26955 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_Setup" "', expected argument " "2"" of type '" "wxWindow *""'");
26957 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
26959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26960 result
= (bool)(arg1
)->Setup(arg2
);
26961 wxPyEndAllowThreads(__tstate
);
26962 if (PyErr_Occurred()) SWIG_fail
;
26965 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26973 SWIGINTERN PyObject
*_wrap_Printer_Print(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26974 PyObject
*resultobj
= 0;
26975 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
26976 wxWindow
*arg2
= (wxWindow
*) 0 ;
26977 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
26978 bool arg4
= (bool) true ;
26988 PyObject
* obj0
= 0 ;
26989 PyObject
* obj1
= 0 ;
26990 PyObject
* obj2
= 0 ;
26991 PyObject
* obj3
= 0 ;
26992 char * kwnames
[] = {
26993 (char *) "self",(char *) "parent",(char *) "printout",(char *) "prompt", NULL
26996 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Printer_Print",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
26997 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
26998 if (!SWIG_IsOK(res1
)) {
26999 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_Print" "', expected argument " "1"" of type '" "wxPrinter *""'");
27001 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27002 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27003 if (!SWIG_IsOK(res2
)) {
27004 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_Print" "', expected argument " "2"" of type '" "wxWindow *""'");
27006 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27007 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27008 if (!SWIG_IsOK(res3
)) {
27009 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_Print" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
27011 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
27013 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
27014 if (!SWIG_IsOK(ecode4
)) {
27015 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Printer_Print" "', expected argument " "4"" of type '" "bool""'");
27017 arg4
= static_cast< bool >(val4
);
27020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27021 result
= (bool)(arg1
)->Print(arg2
,arg3
,arg4
);
27022 wxPyEndAllowThreads(__tstate
);
27023 if (PyErr_Occurred()) SWIG_fail
;
27026 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27034 SWIGINTERN PyObject
*_wrap_Printer_PrintDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27035 PyObject
*resultobj
= 0;
27036 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27037 wxWindow
*arg2
= (wxWindow
*) 0 ;
27043 PyObject
* obj0
= 0 ;
27044 PyObject
* obj1
= 0 ;
27045 char * kwnames
[] = {
27046 (char *) "self",(char *) "parent", NULL
27049 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_PrintDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27050 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27051 if (!SWIG_IsOK(res1
)) {
27052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_PrintDialog" "', expected argument " "1"" of type '" "wxPrinter *""'");
27054 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27055 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27056 if (!SWIG_IsOK(res2
)) {
27057 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_PrintDialog" "', expected argument " "2"" of type '" "wxWindow *""'");
27059 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27061 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27062 result
= (wxDC
*)(arg1
)->PrintDialog(arg2
);
27063 wxPyEndAllowThreads(__tstate
);
27064 if (PyErr_Occurred()) SWIG_fail
;
27067 resultobj
= wxPyMake_wxObject(result
, (bool)0);
27075 SWIGINTERN PyObject
*_wrap_Printer_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27076 PyObject
*resultobj
= 0;
27077 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27078 wxPrintDialogData
*result
= 0 ;
27081 PyObject
*swig_obj
[1] ;
27083 if (!args
) SWIG_fail
;
27084 swig_obj
[0] = args
;
27085 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27086 if (!SWIG_IsOK(res1
)) {
27087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrinter const *""'");
27089 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27093 wxPrintDialogData
&_result_ref
= ((wxPrinter
const *)arg1
)->GetPrintDialogData();
27094 result
= (wxPrintDialogData
*) &_result_ref
;
27096 wxPyEndAllowThreads(__tstate
);
27097 if (PyErr_Occurred()) SWIG_fail
;
27099 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
27106 SWIGINTERN PyObject
*_wrap_Printer_GetAbort(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27107 PyObject
*resultobj
= 0;
27108 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27112 PyObject
*swig_obj
[1] ;
27114 if (!args
) SWIG_fail
;
27115 swig_obj
[0] = args
;
27116 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27117 if (!SWIG_IsOK(res1
)) {
27118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_GetAbort" "', expected argument " "1"" of type '" "wxPrinter *""'");
27120 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27123 result
= (bool)(arg1
)->GetAbort();
27124 wxPyEndAllowThreads(__tstate
);
27125 if (PyErr_Occurred()) SWIG_fail
;
27128 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27136 SWIGINTERN PyObject
*_wrap_Printer_GetLastError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27137 PyObject
*resultobj
= 0;
27138 wxPrinterError result
;
27140 if (!SWIG_Python_UnpackTuple(args
,"Printer_GetLastError",0,0,0)) SWIG_fail
;
27142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27143 result
= (wxPrinterError
)wxPrinter::GetLastError();
27144 wxPyEndAllowThreads(__tstate
);
27145 if (PyErr_Occurred()) SWIG_fail
;
27147 resultobj
= SWIG_From_int(static_cast< int >(result
));
27154 SWIGINTERN PyObject
*Printer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27156 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27157 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrinter
, SWIG_NewClientData(obj
));
27158 return SWIG_Py_Void();
27161 SWIGINTERN PyObject
*Printer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27162 return SWIG_Python_InitShadowInstance(args
);
27165 SWIGINTERN PyObject
*_wrap_new_Printout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27166 PyObject
*resultobj
= 0;
27167 wxString
const &arg1_defvalue
= wxPyPrintoutTitleStr
;
27168 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
27169 wxPyPrintout
*result
= 0 ;
27170 bool temp1
= false ;
27171 PyObject
* obj0
= 0 ;
27172 char * kwnames
[] = {
27173 (char *) "title", NULL
27176 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printout",kwnames
,&obj0
)) SWIG_fail
;
27179 arg1
= wxString_in_helper(obj0
);
27180 if (arg1
== NULL
) SWIG_fail
;
27185 if (!wxPyCheckForApp()) SWIG_fail
;
27186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27187 result
= (wxPyPrintout
*)new wxPyPrintout((wxString
const &)*arg1
);
27188 wxPyEndAllowThreads(__tstate
);
27189 if (PyErr_Occurred()) SWIG_fail
;
27191 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_NEW
| 0 );
27206 SWIGINTERN PyObject
*_wrap_delete_Printout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27207 PyObject
*resultobj
= 0;
27208 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27211 PyObject
*swig_obj
[1] ;
27213 if (!args
) SWIG_fail
;
27214 swig_obj
[0] = args
;
27215 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
27216 if (!SWIG_IsOK(res1
)) {
27217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Printout" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27219 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27224 wxPyEndAllowThreads(__tstate
);
27225 if (PyErr_Occurred()) SWIG_fail
;
27227 resultobj
= SWIG_Py_Void();
27234 SWIGINTERN PyObject
*_wrap_Printout__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27235 PyObject
*resultobj
= 0;
27236 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27237 PyObject
*arg2
= (PyObject
*) 0 ;
27238 PyObject
*arg3
= (PyObject
*) 0 ;
27241 PyObject
* obj0
= 0 ;
27242 PyObject
* obj1
= 0 ;
27243 PyObject
* obj2
= 0 ;
27244 char * kwnames
[] = {
27245 (char *) "self",(char *) "self",(char *) "_class", NULL
27248 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27249 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27250 if (!SWIG_IsOK(res1
)) {
27251 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27253 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27258 (arg1
)->_setCallbackInfo(arg2
,arg3
);
27259 wxPyEndAllowThreads(__tstate
);
27260 if (PyErr_Occurred()) SWIG_fail
;
27262 resultobj
= SWIG_Py_Void();
27269 SWIGINTERN PyObject
*_wrap_Printout_GetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27270 PyObject
*resultobj
= 0;
27271 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27275 PyObject
*swig_obj
[1] ;
27277 if (!args
) SWIG_fail
;
27278 swig_obj
[0] = args
;
27279 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27280 if (!SWIG_IsOK(res1
)) {
27281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetTitle" "', expected argument " "1"" of type '" "wxPyPrintout const *""'");
27283 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27286 result
= ((wxPyPrintout
const *)arg1
)->GetTitle();
27287 wxPyEndAllowThreads(__tstate
);
27288 if (PyErr_Occurred()) SWIG_fail
;
27292 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27294 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27303 SWIGINTERN PyObject
*_wrap_Printout_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27304 PyObject
*resultobj
= 0;
27305 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27309 PyObject
*swig_obj
[1] ;
27311 if (!args
) SWIG_fail
;
27312 swig_obj
[0] = args
;
27313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27314 if (!SWIG_IsOK(res1
)) {
27315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetDC" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27317 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27320 result
= (wxDC
*)(arg1
)->GetDC();
27321 wxPyEndAllowThreads(__tstate
);
27322 if (PyErr_Occurred()) SWIG_fail
;
27325 resultobj
= wxPyMake_wxObject(result
, (bool)0);
27333 SWIGINTERN PyObject
*_wrap_Printout_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27334 PyObject
*resultobj
= 0;
27335 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27336 wxDC
*arg2
= (wxDC
*) 0 ;
27341 PyObject
* obj0
= 0 ;
27342 PyObject
* obj1
= 0 ;
27343 char * kwnames
[] = {
27344 (char *) "self",(char *) "dc", NULL
27347 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27348 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27349 if (!SWIG_IsOK(res1
)) {
27350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetDC" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27352 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27353 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
27354 if (!SWIG_IsOK(res2
)) {
27355 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printout_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
27357 arg2
= reinterpret_cast< wxDC
* >(argp2
);
27359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27360 (arg1
)->SetDC(arg2
);
27361 wxPyEndAllowThreads(__tstate
);
27362 if (PyErr_Occurred()) SWIG_fail
;
27364 resultobj
= SWIG_Py_Void();
27371 SWIGINTERN PyObject
*_wrap_Printout_SetPageSizePixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27372 PyObject
*resultobj
= 0;
27373 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27382 PyObject
* obj0
= 0 ;
27383 PyObject
* obj1
= 0 ;
27384 PyObject
* obj2
= 0 ;
27385 char * kwnames
[] = {
27386 (char *) "self",(char *) "w",(char *) "h", NULL
27389 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizePixels",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27390 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27391 if (!SWIG_IsOK(res1
)) {
27392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27394 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27395 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27396 if (!SWIG_IsOK(ecode2
)) {
27397 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "2"" of type '" "int""'");
27399 arg2
= static_cast< int >(val2
);
27400 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27401 if (!SWIG_IsOK(ecode3
)) {
27402 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "3"" of type '" "int""'");
27404 arg3
= static_cast< int >(val3
);
27406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27407 (arg1
)->SetPageSizePixels(arg2
,arg3
);
27408 wxPyEndAllowThreads(__tstate
);
27409 if (PyErr_Occurred()) SWIG_fail
;
27411 resultobj
= SWIG_Py_Void();
27418 SWIGINTERN PyObject
*_wrap_Printout_GetPageSizePixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27419 PyObject
*resultobj
= 0;
27420 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27421 int *arg2
= (int *) 0 ;
27422 int *arg3
= (int *) 0 ;
27426 int res2
= SWIG_TMPOBJ
;
27428 int res3
= SWIG_TMPOBJ
;
27429 PyObject
*swig_obj
[1] ;
27433 if (!args
) SWIG_fail
;
27434 swig_obj
[0] = args
;
27435 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27436 if (!SWIG_IsOK(res1
)) {
27437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageSizePixels" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27439 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27442 (arg1
)->GetPageSizePixels(arg2
,arg3
);
27443 wxPyEndAllowThreads(__tstate
);
27444 if (PyErr_Occurred()) SWIG_fail
;
27446 resultobj
= SWIG_Py_Void();
27447 if (SWIG_IsTmpObj(res2
)) {
27448 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27450 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27451 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27453 if (SWIG_IsTmpObj(res3
)) {
27454 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27456 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27457 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27465 SWIGINTERN PyObject
*_wrap_Printout_SetPageSizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27466 PyObject
*resultobj
= 0;
27467 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27476 PyObject
* obj0
= 0 ;
27477 PyObject
* obj1
= 0 ;
27478 PyObject
* obj2
= 0 ;
27479 char * kwnames
[] = {
27480 (char *) "self",(char *) "w",(char *) "h", NULL
27483 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizeMM",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27484 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27485 if (!SWIG_IsOK(res1
)) {
27486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27488 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27489 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27490 if (!SWIG_IsOK(ecode2
)) {
27491 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "2"" of type '" "int""'");
27493 arg2
= static_cast< int >(val2
);
27494 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27495 if (!SWIG_IsOK(ecode3
)) {
27496 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "3"" of type '" "int""'");
27498 arg3
= static_cast< int >(val3
);
27500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27501 (arg1
)->SetPageSizeMM(arg2
,arg3
);
27502 wxPyEndAllowThreads(__tstate
);
27503 if (PyErr_Occurred()) SWIG_fail
;
27505 resultobj
= SWIG_Py_Void();
27512 SWIGINTERN PyObject
*_wrap_Printout_GetPageSizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27513 PyObject
*resultobj
= 0;
27514 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27515 int *arg2
= (int *) 0 ;
27516 int *arg3
= (int *) 0 ;
27520 int res2
= SWIG_TMPOBJ
;
27522 int res3
= SWIG_TMPOBJ
;
27523 PyObject
*swig_obj
[1] ;
27527 if (!args
) SWIG_fail
;
27528 swig_obj
[0] = args
;
27529 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27530 if (!SWIG_IsOK(res1
)) {
27531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageSizeMM" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27533 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27536 (arg1
)->GetPageSizeMM(arg2
,arg3
);
27537 wxPyEndAllowThreads(__tstate
);
27538 if (PyErr_Occurred()) SWIG_fail
;
27540 resultobj
= SWIG_Py_Void();
27541 if (SWIG_IsTmpObj(res2
)) {
27542 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27544 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27545 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27547 if (SWIG_IsTmpObj(res3
)) {
27548 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27550 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27551 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27559 SWIGINTERN PyObject
*_wrap_Printout_SetPPIScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27560 PyObject
*resultobj
= 0;
27561 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27570 PyObject
* obj0
= 0 ;
27571 PyObject
* obj1
= 0 ;
27572 PyObject
* obj2
= 0 ;
27573 char * kwnames
[] = {
27574 (char *) "self",(char *) "x",(char *) "y", NULL
27577 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27578 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27579 if (!SWIG_IsOK(res1
)) {
27580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPPIScreen" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27582 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27583 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27584 if (!SWIG_IsOK(ecode2
)) {
27585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPPIScreen" "', expected argument " "2"" of type '" "int""'");
27587 arg2
= static_cast< int >(val2
);
27588 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27589 if (!SWIG_IsOK(ecode3
)) {
27590 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPPIScreen" "', expected argument " "3"" of type '" "int""'");
27592 arg3
= static_cast< int >(val3
);
27594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27595 (arg1
)->SetPPIScreen(arg2
,arg3
);
27596 wxPyEndAllowThreads(__tstate
);
27597 if (PyErr_Occurred()) SWIG_fail
;
27599 resultobj
= SWIG_Py_Void();
27606 SWIGINTERN PyObject
*_wrap_Printout_GetPPIScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27607 PyObject
*resultobj
= 0;
27608 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27609 int *arg2
= (int *) 0 ;
27610 int *arg3
= (int *) 0 ;
27614 int res2
= SWIG_TMPOBJ
;
27616 int res3
= SWIG_TMPOBJ
;
27617 PyObject
*swig_obj
[1] ;
27621 if (!args
) SWIG_fail
;
27622 swig_obj
[0] = args
;
27623 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27624 if (!SWIG_IsOK(res1
)) {
27625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPPIScreen" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27627 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27630 (arg1
)->GetPPIScreen(arg2
,arg3
);
27631 wxPyEndAllowThreads(__tstate
);
27632 if (PyErr_Occurred()) SWIG_fail
;
27634 resultobj
= SWIG_Py_Void();
27635 if (SWIG_IsTmpObj(res2
)) {
27636 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27638 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27639 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27641 if (SWIG_IsTmpObj(res3
)) {
27642 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27644 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27645 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27653 SWIGINTERN PyObject
*_wrap_Printout_SetPPIPrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27654 PyObject
*resultobj
= 0;
27655 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27664 PyObject
* obj0
= 0 ;
27665 PyObject
* obj1
= 0 ;
27666 PyObject
* obj2
= 0 ;
27667 char * kwnames
[] = {
27668 (char *) "self",(char *) "x",(char *) "y", NULL
27671 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIPrinter",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27672 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27673 if (!SWIG_IsOK(res1
)) {
27674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27676 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27677 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27678 if (!SWIG_IsOK(ecode2
)) {
27679 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "2"" of type '" "int""'");
27681 arg2
= static_cast< int >(val2
);
27682 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27683 if (!SWIG_IsOK(ecode3
)) {
27684 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "3"" of type '" "int""'");
27686 arg3
= static_cast< int >(val3
);
27688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27689 (arg1
)->SetPPIPrinter(arg2
,arg3
);
27690 wxPyEndAllowThreads(__tstate
);
27691 if (PyErr_Occurred()) SWIG_fail
;
27693 resultobj
= SWIG_Py_Void();
27700 SWIGINTERN PyObject
*_wrap_Printout_GetPPIPrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27701 PyObject
*resultobj
= 0;
27702 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27703 int *arg2
= (int *) 0 ;
27704 int *arg3
= (int *) 0 ;
27708 int res2
= SWIG_TMPOBJ
;
27710 int res3
= SWIG_TMPOBJ
;
27711 PyObject
*swig_obj
[1] ;
27715 if (!args
) SWIG_fail
;
27716 swig_obj
[0] = args
;
27717 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27718 if (!SWIG_IsOK(res1
)) {
27719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPPIPrinter" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27721 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27723 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27724 (arg1
)->GetPPIPrinter(arg2
,arg3
);
27725 wxPyEndAllowThreads(__tstate
);
27726 if (PyErr_Occurred()) SWIG_fail
;
27728 resultobj
= SWIG_Py_Void();
27729 if (SWIG_IsTmpObj(res2
)) {
27730 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27732 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27733 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27735 if (SWIG_IsTmpObj(res3
)) {
27736 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27738 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27739 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27747 SWIGINTERN PyObject
*_wrap_Printout_IsPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27748 PyObject
*resultobj
= 0;
27749 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27753 PyObject
*swig_obj
[1] ;
27755 if (!args
) SWIG_fail
;
27756 swig_obj
[0] = args
;
27757 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27758 if (!SWIG_IsOK(res1
)) {
27759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_IsPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27761 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27764 result
= (bool)(arg1
)->IsPreview();
27765 wxPyEndAllowThreads(__tstate
);
27766 if (PyErr_Occurred()) SWIG_fail
;
27769 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27777 SWIGINTERN PyObject
*_wrap_Printout_SetIsPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27778 PyObject
*resultobj
= 0;
27779 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27785 PyObject
* obj0
= 0 ;
27786 PyObject
* obj1
= 0 ;
27787 char * kwnames
[] = {
27788 (char *) "self",(char *) "p", NULL
27791 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetIsPreview",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27792 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27793 if (!SWIG_IsOK(res1
)) {
27794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetIsPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27796 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27797 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
27798 if (!SWIG_IsOK(ecode2
)) {
27799 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetIsPreview" "', expected argument " "2"" of type '" "bool""'");
27801 arg2
= static_cast< bool >(val2
);
27803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27804 (arg1
)->SetIsPreview(arg2
);
27805 wxPyEndAllowThreads(__tstate
);
27806 if (PyErr_Occurred()) SWIG_fail
;
27808 resultobj
= SWIG_Py_Void();
27815 SWIGINTERN PyObject
*_wrap_Printout_OnBeginDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27816 PyObject
*resultobj
= 0;
27817 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27827 PyObject
* obj0
= 0 ;
27828 PyObject
* obj1
= 0 ;
27829 PyObject
* obj2
= 0 ;
27830 char * kwnames
[] = {
27831 (char *) "self",(char *) "startPage",(char *) "endPage", NULL
27834 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_OnBeginDocument",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27835 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27836 if (!SWIG_IsOK(res1
)) {
27837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnBeginDocument" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27839 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27840 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27841 if (!SWIG_IsOK(ecode2
)) {
27842 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_OnBeginDocument" "', expected argument " "2"" of type '" "int""'");
27844 arg2
= static_cast< int >(val2
);
27845 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27846 if (!SWIG_IsOK(ecode3
)) {
27847 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_OnBeginDocument" "', expected argument " "3"" of type '" "int""'");
27849 arg3
= static_cast< int >(val3
);
27851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27852 result
= (bool)(arg1
)->OnBeginDocument(arg2
,arg3
);
27853 wxPyEndAllowThreads(__tstate
);
27854 if (PyErr_Occurred()) SWIG_fail
;
27857 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27865 SWIGINTERN PyObject
*_wrap_Printout_OnEndDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27866 PyObject
*resultobj
= 0;
27867 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27870 PyObject
*swig_obj
[1] ;
27872 if (!args
) SWIG_fail
;
27873 swig_obj
[0] = args
;
27874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27875 if (!SWIG_IsOK(res1
)) {
27876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnEndDocument" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27878 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27881 (arg1
)->OnEndDocument();
27882 wxPyEndAllowThreads(__tstate
);
27883 if (PyErr_Occurred()) SWIG_fail
;
27885 resultobj
= SWIG_Py_Void();
27892 SWIGINTERN PyObject
*_wrap_Printout_OnBeginPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27893 PyObject
*resultobj
= 0;
27894 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27897 PyObject
*swig_obj
[1] ;
27899 if (!args
) SWIG_fail
;
27900 swig_obj
[0] = args
;
27901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27902 if (!SWIG_IsOK(res1
)) {
27903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnBeginPrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27905 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27908 (arg1
)->OnBeginPrinting();
27909 wxPyEndAllowThreads(__tstate
);
27910 if (PyErr_Occurred()) SWIG_fail
;
27912 resultobj
= SWIG_Py_Void();
27919 SWIGINTERN PyObject
*_wrap_Printout_OnEndPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27920 PyObject
*resultobj
= 0;
27921 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27924 PyObject
*swig_obj
[1] ;
27926 if (!args
) SWIG_fail
;
27927 swig_obj
[0] = args
;
27928 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27929 if (!SWIG_IsOK(res1
)) {
27930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnEndPrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27932 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27935 (arg1
)->OnEndPrinting();
27936 wxPyEndAllowThreads(__tstate
);
27937 if (PyErr_Occurred()) SWIG_fail
;
27939 resultobj
= SWIG_Py_Void();
27946 SWIGINTERN PyObject
*_wrap_Printout_OnPreparePrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27947 PyObject
*resultobj
= 0;
27948 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27951 PyObject
*swig_obj
[1] ;
27953 if (!args
) SWIG_fail
;
27954 swig_obj
[0] = args
;
27955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27956 if (!SWIG_IsOK(res1
)) {
27957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnPreparePrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27959 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27962 (arg1
)->OnPreparePrinting();
27963 wxPyEndAllowThreads(__tstate
);
27964 if (PyErr_Occurred()) SWIG_fail
;
27966 resultobj
= SWIG_Py_Void();
27973 SWIGINTERN PyObject
*_wrap_Printout_HasPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27974 PyObject
*resultobj
= 0;
27975 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27982 PyObject
* obj0
= 0 ;
27983 PyObject
* obj1
= 0 ;
27984 char * kwnames
[] = {
27985 (char *) "self",(char *) "page", NULL
27988 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_HasPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27989 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27990 if (!SWIG_IsOK(res1
)) {
27991 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_HasPage" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27993 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27994 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27995 if (!SWIG_IsOK(ecode2
)) {
27996 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_HasPage" "', expected argument " "2"" of type '" "int""'");
27998 arg2
= static_cast< int >(val2
);
28000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28001 result
= (bool)(arg1
)->HasPage(arg2
);
28002 wxPyEndAllowThreads(__tstate
);
28003 if (PyErr_Occurred()) SWIG_fail
;
28006 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28014 SWIGINTERN PyObject
*_wrap_Printout_GetPageInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28015 PyObject
*resultobj
= 0;
28016 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28017 int *arg2
= (int *) 0 ;
28018 int *arg3
= (int *) 0 ;
28019 int *arg4
= (int *) 0 ;
28020 int *arg5
= (int *) 0 ;
28024 int res2
= SWIG_TMPOBJ
;
28026 int res3
= SWIG_TMPOBJ
;
28028 int res4
= SWIG_TMPOBJ
;
28030 int res5
= SWIG_TMPOBJ
;
28031 PyObject
*swig_obj
[1] ;
28037 if (!args
) SWIG_fail
;
28038 swig_obj
[0] = args
;
28039 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28040 if (!SWIG_IsOK(res1
)) {
28041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageInfo" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28043 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28046 (arg1
)->GetPageInfo(arg2
,arg3
,arg4
,arg5
);
28047 wxPyEndAllowThreads(__tstate
);
28048 if (PyErr_Occurred()) SWIG_fail
;
28050 resultobj
= SWIG_Py_Void();
28051 if (SWIG_IsTmpObj(res2
)) {
28052 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
28054 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28055 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
28057 if (SWIG_IsTmpObj(res3
)) {
28058 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
28060 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28061 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
28063 if (SWIG_IsTmpObj(res4
)) {
28064 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
28066 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28067 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
28069 if (SWIG_IsTmpObj(res5
)) {
28070 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
28072 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28073 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
28081 SWIGINTERN PyObject
*Printout_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28083 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28084 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPrintout
, SWIG_NewClientData(obj
));
28085 return SWIG_Py_Void();
28088 SWIGINTERN PyObject
*Printout_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28089 return SWIG_Python_InitShadowInstance(args
);
28092 SWIGINTERN PyObject
*_wrap_new_PreviewCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28093 PyObject
*resultobj
= 0;
28094 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28095 wxWindow
*arg2
= (wxWindow
*) 0 ;
28096 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
28097 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
28098 wxSize
const &arg4_defvalue
= wxDefaultSize
;
28099 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
28100 long arg5
= (long) 0 ;
28101 wxString
const &arg6_defvalue
= wxPyPreviewCanvasNameStr
;
28102 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
28103 wxPreviewCanvas
*result
= 0 ;
28112 bool temp6
= false ;
28113 PyObject
* obj0
= 0 ;
28114 PyObject
* obj1
= 0 ;
28115 PyObject
* obj2
= 0 ;
28116 PyObject
* obj3
= 0 ;
28117 PyObject
* obj4
= 0 ;
28118 PyObject
* obj5
= 0 ;
28119 char * kwnames
[] = {
28120 (char *) "preview",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28123 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PreviewCanvas",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
28124 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28125 if (!SWIG_IsOK(res1
)) {
28126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28128 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28129 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
28130 if (!SWIG_IsOK(res2
)) {
28131 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PreviewCanvas" "', expected argument " "2"" of type '" "wxWindow *""'");
28133 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
28137 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
28143 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
28147 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
28148 if (!SWIG_IsOK(ecode5
)) {
28149 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PreviewCanvas" "', expected argument " "5"" of type '" "long""'");
28151 arg5
= static_cast< long >(val5
);
28155 arg6
= wxString_in_helper(obj5
);
28156 if (arg6
== NULL
) SWIG_fail
;
28161 if (!wxPyCheckForApp()) SWIG_fail
;
28162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28163 result
= (wxPreviewCanvas
*)new wxPreviewCanvas(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
28164 wxPyEndAllowThreads(__tstate
);
28165 if (PyErr_Occurred()) SWIG_fail
;
28167 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_NEW
| 0 );
28182 SWIGINTERN PyObject
*PreviewCanvas_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28184 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28185 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewCanvas
, SWIG_NewClientData(obj
));
28186 return SWIG_Py_Void();
28189 SWIGINTERN PyObject
*PreviewCanvas_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28190 return SWIG_Python_InitShadowInstance(args
);
28193 SWIGINTERN PyObject
*_wrap_new_PreviewFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28194 PyObject
*resultobj
= 0;
28195 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28196 wxFrame
*arg2
= (wxFrame
*) 0 ;
28197 wxString
*arg3
= 0 ;
28198 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
28199 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
28200 wxSize
const &arg5_defvalue
= wxDefaultSize
;
28201 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
28202 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
28203 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
28204 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28205 wxPreviewFrame
*result
= 0 ;
28209 bool temp3
= false ;
28214 bool temp7
= false ;
28215 PyObject
* obj0
= 0 ;
28216 PyObject
* obj1
= 0 ;
28217 PyObject
* obj2
= 0 ;
28218 PyObject
* obj3
= 0 ;
28219 PyObject
* obj4
= 0 ;
28220 PyObject
* obj5
= 0 ;
28221 PyObject
* obj6
= 0 ;
28222 char * kwnames
[] = {
28223 (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28226 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
28227 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_DISOWN
| 0 );
28228 if (!SWIG_IsOK(res1
)) {
28229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28231 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
28232 if (!SWIG_IsOK(res2
)) {
28233 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PreviewFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
28235 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
28237 arg3
= wxString_in_helper(obj2
);
28238 if (arg3
== NULL
) SWIG_fail
;
28244 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
28250 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
28254 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
28255 if (!SWIG_IsOK(ecode6
)) {
28256 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PreviewFrame" "', expected argument " "6"" of type '" "long""'");
28258 arg6
= static_cast< long >(val6
);
28262 arg7
= wxString_in_helper(obj6
);
28263 if (arg7
== NULL
) SWIG_fail
;
28268 if (!wxPyCheckForApp()) SWIG_fail
;
28269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28270 result
= (wxPreviewFrame
*)new wxPreviewFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
28271 wxPyEndAllowThreads(__tstate
);
28272 if (PyErr_Occurred()) SWIG_fail
;
28274 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_NEW
| 0 );
28297 SWIGINTERN PyObject
*_wrap_PreviewFrame_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28298 PyObject
*resultobj
= 0;
28299 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28302 PyObject
*swig_obj
[1] ;
28304 if (!args
) SWIG_fail
;
28305 swig_obj
[0] = args
;
28306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28307 if (!SWIG_IsOK(res1
)) {
28308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_Initialize" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28310 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28313 (arg1
)->Initialize();
28314 wxPyEndAllowThreads(__tstate
);
28315 if (PyErr_Occurred()) SWIG_fail
;
28317 resultobj
= SWIG_Py_Void();
28324 SWIGINTERN PyObject
*_wrap_PreviewFrame_CreateControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28325 PyObject
*resultobj
= 0;
28326 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28329 PyObject
*swig_obj
[1] ;
28331 if (!args
) SWIG_fail
;
28332 swig_obj
[0] = args
;
28333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28334 if (!SWIG_IsOK(res1
)) {
28335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_CreateControlBar" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28337 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28340 (arg1
)->CreateControlBar();
28341 wxPyEndAllowThreads(__tstate
);
28342 if (PyErr_Occurred()) SWIG_fail
;
28344 resultobj
= SWIG_Py_Void();
28351 SWIGINTERN PyObject
*_wrap_PreviewFrame_CreateCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28352 PyObject
*resultobj
= 0;
28353 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28356 PyObject
*swig_obj
[1] ;
28358 if (!args
) SWIG_fail
;
28359 swig_obj
[0] = args
;
28360 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28361 if (!SWIG_IsOK(res1
)) {
28362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_CreateCanvas" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28364 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28367 (arg1
)->CreateCanvas();
28368 wxPyEndAllowThreads(__tstate
);
28369 if (PyErr_Occurred()) SWIG_fail
;
28371 resultobj
= SWIG_Py_Void();
28378 SWIGINTERN PyObject
*_wrap_PreviewFrame_GetControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28379 PyObject
*resultobj
= 0;
28380 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28381 wxPreviewControlBar
*result
= 0 ;
28384 PyObject
*swig_obj
[1] ;
28386 if (!args
) SWIG_fail
;
28387 swig_obj
[0] = args
;
28388 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28389 if (!SWIG_IsOK(res1
)) {
28390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_GetControlBar" "', expected argument " "1"" of type '" "wxPreviewFrame const *""'");
28392 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28395 result
= (wxPreviewControlBar
*)((wxPreviewFrame
const *)arg1
)->GetControlBar();
28396 wxPyEndAllowThreads(__tstate
);
28397 if (PyErr_Occurred()) SWIG_fail
;
28399 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28406 SWIGINTERN PyObject
*PreviewFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28408 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28409 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewFrame
, SWIG_NewClientData(obj
));
28410 return SWIG_Py_Void();
28413 SWIGINTERN PyObject
*PreviewFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28414 return SWIG_Python_InitShadowInstance(args
);
28417 SWIGINTERN PyObject
*_wrap_new_PreviewControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28418 PyObject
*resultobj
= 0;
28419 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28421 wxWindow
*arg3
= (wxWindow
*) 0 ;
28422 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
28423 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
28424 wxSize
const &arg5_defvalue
= wxDefaultSize
;
28425 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
28426 long arg6
= (long) wxTAB_TRAVERSAL
;
28427 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
28428 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28429 wxPreviewControlBar
*result
= 0 ;
28440 bool temp7
= false ;
28441 PyObject
* obj0
= 0 ;
28442 PyObject
* obj1
= 0 ;
28443 PyObject
* obj2
= 0 ;
28444 PyObject
* obj3
= 0 ;
28445 PyObject
* obj4
= 0 ;
28446 PyObject
* obj5
= 0 ;
28447 PyObject
* obj6
= 0 ;
28448 char * kwnames
[] = {
28449 (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28452 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
28453 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28454 if (!SWIG_IsOK(res1
)) {
28455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewControlBar" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28457 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28458 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
28459 if (!SWIG_IsOK(ecode2
)) {
28460 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PreviewControlBar" "', expected argument " "2"" of type '" "long""'");
28462 arg2
= static_cast< long >(val2
);
28463 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
28464 if (!SWIG_IsOK(res3
)) {
28465 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PreviewControlBar" "', expected argument " "3"" of type '" "wxWindow *""'");
28467 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
28471 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
28477 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
28481 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
28482 if (!SWIG_IsOK(ecode6
)) {
28483 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PreviewControlBar" "', expected argument " "6"" of type '" "long""'");
28485 arg6
= static_cast< long >(val6
);
28489 arg7
= wxString_in_helper(obj6
);
28490 if (arg7
== NULL
) SWIG_fail
;
28495 if (!wxPyCheckForApp()) SWIG_fail
;
28496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28497 result
= (wxPreviewControlBar
*)new wxPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
28498 wxPyEndAllowThreads(__tstate
);
28499 if (PyErr_Occurred()) SWIG_fail
;
28501 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_NEW
| 0 );
28516 SWIGINTERN PyObject
*_wrap_PreviewControlBar_GetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28517 PyObject
*resultobj
= 0;
28518 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28522 PyObject
*swig_obj
[1] ;
28524 if (!args
) SWIG_fail
;
28525 swig_obj
[0] = args
;
28526 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28527 if (!SWIG_IsOK(res1
)) {
28528 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_GetZoomControl" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28530 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28533 result
= (int)(arg1
)->GetZoomControl();
28534 wxPyEndAllowThreads(__tstate
);
28535 if (PyErr_Occurred()) SWIG_fail
;
28537 resultobj
= SWIG_From_int(static_cast< int >(result
));
28544 SWIGINTERN PyObject
*_wrap_PreviewControlBar_SetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28545 PyObject
*resultobj
= 0;
28546 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28552 PyObject
* obj0
= 0 ;
28553 PyObject
* obj1
= 0 ;
28554 char * kwnames
[] = {
28555 (char *) "self",(char *) "zoom", NULL
28558 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PreviewControlBar_SetZoomControl",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28559 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28560 if (!SWIG_IsOK(res1
)) {
28561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_SetZoomControl" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28563 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28564 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28565 if (!SWIG_IsOK(ecode2
)) {
28566 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PreviewControlBar_SetZoomControl" "', expected argument " "2"" of type '" "int""'");
28568 arg2
= static_cast< int >(val2
);
28570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28571 (arg1
)->SetZoomControl(arg2
);
28572 wxPyEndAllowThreads(__tstate
);
28573 if (PyErr_Occurred()) SWIG_fail
;
28575 resultobj
= SWIG_Py_Void();
28582 SWIGINTERN PyObject
*_wrap_PreviewControlBar_GetPrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28583 PyObject
*resultobj
= 0;
28584 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28585 wxPrintPreview
*result
= 0 ;
28588 PyObject
*swig_obj
[1] ;
28590 if (!args
) SWIG_fail
;
28591 swig_obj
[0] = args
;
28592 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28593 if (!SWIG_IsOK(res1
)) {
28594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_GetPrintPreview" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28596 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28599 result
= (wxPrintPreview
*)(arg1
)->GetPrintPreview();
28600 wxPyEndAllowThreads(__tstate
);
28601 if (PyErr_Occurred()) SWIG_fail
;
28603 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28610 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28611 PyObject
*resultobj
= 0;
28612 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28615 PyObject
*swig_obj
[1] ;
28617 if (!args
) SWIG_fail
;
28618 swig_obj
[0] = args
;
28619 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28620 if (!SWIG_IsOK(res1
)) {
28621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnNext" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28623 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28625 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28627 wxPyEndAllowThreads(__tstate
);
28628 if (PyErr_Occurred()) SWIG_fail
;
28630 resultobj
= SWIG_Py_Void();
28637 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnPrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28638 PyObject
*resultobj
= 0;
28639 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28642 PyObject
*swig_obj
[1] ;
28644 if (!args
) SWIG_fail
;
28645 swig_obj
[0] = args
;
28646 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28647 if (!SWIG_IsOK(res1
)) {
28648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnPrevious" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28650 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28653 (arg1
)->OnPrevious();
28654 wxPyEndAllowThreads(__tstate
);
28655 if (PyErr_Occurred()) SWIG_fail
;
28657 resultobj
= SWIG_Py_Void();
28664 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnFirst(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28665 PyObject
*resultobj
= 0;
28666 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28669 PyObject
*swig_obj
[1] ;
28671 if (!args
) SWIG_fail
;
28672 swig_obj
[0] = args
;
28673 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28674 if (!SWIG_IsOK(res1
)) {
28675 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnFirst" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28677 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28681 wxPyEndAllowThreads(__tstate
);
28682 if (PyErr_Occurred()) SWIG_fail
;
28684 resultobj
= SWIG_Py_Void();
28691 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnLast(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28692 PyObject
*resultobj
= 0;
28693 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28696 PyObject
*swig_obj
[1] ;
28698 if (!args
) SWIG_fail
;
28699 swig_obj
[0] = args
;
28700 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28701 if (!SWIG_IsOK(res1
)) {
28702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnLast" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28704 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28706 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28708 wxPyEndAllowThreads(__tstate
);
28709 if (PyErr_Occurred()) SWIG_fail
;
28711 resultobj
= SWIG_Py_Void();
28718 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnGoto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28719 PyObject
*resultobj
= 0;
28720 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28723 PyObject
*swig_obj
[1] ;
28725 if (!args
) SWIG_fail
;
28726 swig_obj
[0] = args
;
28727 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28728 if (!SWIG_IsOK(res1
)) {
28729 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnGoto" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28731 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28735 wxPyEndAllowThreads(__tstate
);
28736 if (PyErr_Occurred()) SWIG_fail
;
28738 resultobj
= SWIG_Py_Void();
28745 SWIGINTERN PyObject
*PreviewControlBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28747 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28748 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewControlBar
, SWIG_NewClientData(obj
));
28749 return SWIG_Py_Void();
28752 SWIGINTERN PyObject
*PreviewControlBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28753 return SWIG_Python_InitShadowInstance(args
);
28756 SWIGINTERN PyObject
*_wrap_new_PrintPreview__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
28757 PyObject
*resultobj
= 0;
28758 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28759 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
28760 wxPrintDialogData
*arg3
= (wxPrintDialogData
*) NULL
;
28761 wxPrintPreview
*result
= 0 ;
28767 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
28768 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
28769 if (!SWIG_IsOK(res1
)) {
28770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28772 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
28773 if (!SWIG_IsOK(res2
)) {
28774 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
28777 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
28778 if (!SWIG_IsOK(res3
)) {
28779 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PrintPreview" "', expected argument " "3"" of type '" "wxPrintDialogData *""'");
28781 arg3
= reinterpret_cast< wxPrintDialogData
* >(argp3
);
28784 if (!wxPyCheckForApp()) SWIG_fail
;
28785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28786 result
= (wxPrintPreview
*)new wxPrintPreview(arg1
,arg2
,arg3
);
28787 wxPyEndAllowThreads(__tstate
);
28788 if (PyErr_Occurred()) SWIG_fail
;
28790 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_NEW
| 0 );
28797 SWIGINTERN PyObject
*_wrap_new_PrintPreview__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
28798 PyObject
*resultobj
= 0;
28799 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28800 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
28801 wxPrintData
*arg3
= (wxPrintData
*) 0 ;
28802 wxPrintPreview
*result
= 0 ;
28808 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
28809 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
28810 if (!SWIG_IsOK(res1
)) {
28811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28813 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
28814 if (!SWIG_IsOK(res2
)) {
28815 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
28817 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
28818 if (!SWIG_IsOK(res3
)) {
28819 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PrintPreview" "', expected argument " "3"" of type '" "wxPrintData *""'");
28821 arg3
= reinterpret_cast< wxPrintData
* >(argp3
);
28823 if (!wxPyCheckForApp()) SWIG_fail
;
28824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28825 result
= (wxPrintPreview
*)new wxPrintPreview(arg1
,arg2
,arg3
);
28826 wxPyEndAllowThreads(__tstate
);
28827 if (PyErr_Occurred()) SWIG_fail
;
28829 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_NEW
| 0 );
28836 SWIGINTERN PyObject
*_wrap_new_PrintPreview(PyObject
*self
, PyObject
*args
) {
28840 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintPreview",0,3,argv
))) SWIG_fail
;
28842 if ((argc
>= 2) && (argc
<= 3)) {
28847 int res
= SWIG_ConvertPtr(argv
[2], &vptr
, SWIGTYPE_p_wxPrintDialogData
, 0);
28848 _v
= SWIG_CheckState(res
);
28850 if (!_v
) goto check_1
;
28852 return _wrap_new_PrintPreview__SWIG_0(self
, argc
, argv
);
28857 return _wrap_new_PrintPreview__SWIG_1(self
, argc
, argv
);
28861 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintPreview'");
28866 SWIGINTERN PyObject
*_wrap_delete_PrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28867 PyObject
*resultobj
= 0;
28868 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28871 PyObject
*swig_obj
[1] ;
28873 if (!args
) SWIG_fail
;
28874 swig_obj
[0] = args
;
28875 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_DISOWN
| 0 );
28876 if (!SWIG_IsOK(res1
)) {
28877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintPreview" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28879 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28884 wxPyEndAllowThreads(__tstate
);
28885 if (PyErr_Occurred()) SWIG_fail
;
28887 resultobj
= SWIG_Py_Void();
28894 SWIGINTERN PyObject
*_wrap_PrintPreview_SetCurrentPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28895 PyObject
*resultobj
= 0;
28896 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28903 PyObject
* obj0
= 0 ;
28904 PyObject
* obj1
= 0 ;
28905 char * kwnames
[] = {
28906 (char *) "self",(char *) "pageNum", NULL
28909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCurrentPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28911 if (!SWIG_IsOK(res1
)) {
28912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetCurrentPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28914 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28915 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28916 if (!SWIG_IsOK(ecode2
)) {
28917 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetCurrentPage" "', expected argument " "2"" of type '" "int""'");
28919 arg2
= static_cast< int >(val2
);
28921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28922 result
= (bool)(arg1
)->SetCurrentPage(arg2
);
28923 wxPyEndAllowThreads(__tstate
);
28924 if (PyErr_Occurred()) SWIG_fail
;
28927 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28935 SWIGINTERN PyObject
*_wrap_PrintPreview_GetCurrentPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28936 PyObject
*resultobj
= 0;
28937 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28941 PyObject
*swig_obj
[1] ;
28943 if (!args
) SWIG_fail
;
28944 swig_obj
[0] = args
;
28945 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28946 if (!SWIG_IsOK(res1
)) {
28947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetCurrentPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28949 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28952 result
= (int)(arg1
)->GetCurrentPage();
28953 wxPyEndAllowThreads(__tstate
);
28954 if (PyErr_Occurred()) SWIG_fail
;
28956 resultobj
= SWIG_From_int(static_cast< int >(result
));
28963 SWIGINTERN PyObject
*_wrap_PrintPreview_SetPrintout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28964 PyObject
*resultobj
= 0;
28965 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28966 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
28970 PyObject
* obj0
= 0 ;
28971 PyObject
* obj1
= 0 ;
28972 char * kwnames
[] = {
28973 (char *) "self",(char *) "printout", NULL
28976 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetPrintout",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28977 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28978 if (!SWIG_IsOK(res1
)) {
28979 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetPrintout" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28981 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28982 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
28983 if (!SWIG_IsOK(res2
)) {
28984 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetPrintout" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
28987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28988 (arg1
)->SetPrintout(arg2
);
28989 wxPyEndAllowThreads(__tstate
);
28990 if (PyErr_Occurred()) SWIG_fail
;
28992 resultobj
= SWIG_Py_Void();
28999 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29000 PyObject
*resultobj
= 0;
29001 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29002 wxPyPrintout
*result
= 0 ;
29005 PyObject
*swig_obj
[1] ;
29007 if (!args
) SWIG_fail
;
29008 swig_obj
[0] = args
;
29009 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29010 if (!SWIG_IsOK(res1
)) {
29011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintout" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29013 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29016 result
= (wxPyPrintout
*)(arg1
)->GetPrintout();
29017 wxPyEndAllowThreads(__tstate
);
29018 if (PyErr_Occurred()) SWIG_fail
;
29021 resultobj
= wxPyMake_wxObject(result
, 0);
29029 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintoutForPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29030 PyObject
*resultobj
= 0;
29031 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29032 wxPyPrintout
*result
= 0 ;
29035 PyObject
*swig_obj
[1] ;
29037 if (!args
) SWIG_fail
;
29038 swig_obj
[0] = args
;
29039 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29040 if (!SWIG_IsOK(res1
)) {
29041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintoutForPrinting" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29043 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29046 result
= (wxPyPrintout
*)(arg1
)->GetPrintoutForPrinting();
29047 wxPyEndAllowThreads(__tstate
);
29048 if (PyErr_Occurred()) SWIG_fail
;
29051 resultobj
= wxPyMake_wxObject(result
, 0);
29059 SWIGINTERN PyObject
*_wrap_PrintPreview_SetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29060 PyObject
*resultobj
= 0;
29061 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29062 wxFrame
*arg2
= (wxFrame
*) 0 ;
29067 PyObject
* obj0
= 0 ;
29068 PyObject
* obj1
= 0 ;
29069 char * kwnames
[] = {
29070 (char *) "self",(char *) "frame", NULL
29073 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29074 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29075 if (!SWIG_IsOK(res1
)) {
29076 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29078 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29079 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
29080 if (!SWIG_IsOK(res2
)) {
29081 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
29083 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
29085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29086 (arg1
)->SetFrame(arg2
);
29087 wxPyEndAllowThreads(__tstate
);
29088 if (PyErr_Occurred()) SWIG_fail
;
29090 resultobj
= SWIG_Py_Void();
29097 SWIGINTERN PyObject
*_wrap_PrintPreview_SetCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29098 PyObject
*resultobj
= 0;
29099 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29100 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29105 PyObject
* obj0
= 0 ;
29106 PyObject
* obj1
= 0 ;
29107 char * kwnames
[] = {
29108 (char *) "self",(char *) "canvas", NULL
29111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCanvas",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29113 if (!SWIG_IsOK(res1
)) {
29114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29116 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29117 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29118 if (!SWIG_IsOK(res2
)) {
29119 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetCanvas" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29121 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29124 (arg1
)->SetCanvas(arg2
);
29125 wxPyEndAllowThreads(__tstate
);
29126 if (PyErr_Occurred()) SWIG_fail
;
29128 resultobj
= SWIG_Py_Void();
29135 SWIGINTERN PyObject
*_wrap_PrintPreview_GetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29136 PyObject
*resultobj
= 0;
29137 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29138 wxFrame
*result
= 0 ;
29141 PyObject
*swig_obj
[1] ;
29143 if (!args
) SWIG_fail
;
29144 swig_obj
[0] = args
;
29145 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29146 if (!SWIG_IsOK(res1
)) {
29147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29149 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29152 result
= (wxFrame
*)(arg1
)->GetFrame();
29153 wxPyEndAllowThreads(__tstate
);
29154 if (PyErr_Occurred()) SWIG_fail
;
29157 resultobj
= wxPyMake_wxObject(result
, 0);
29165 SWIGINTERN PyObject
*_wrap_PrintPreview_GetCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29166 PyObject
*resultobj
= 0;
29167 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29168 wxPreviewCanvas
*result
= 0 ;
29171 PyObject
*swig_obj
[1] ;
29173 if (!args
) SWIG_fail
;
29174 swig_obj
[0] = args
;
29175 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29176 if (!SWIG_IsOK(res1
)) {
29177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29179 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29182 result
= (wxPreviewCanvas
*)(arg1
)->GetCanvas();
29183 wxPyEndAllowThreads(__tstate
);
29184 if (PyErr_Occurred()) SWIG_fail
;
29186 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29193 SWIGINTERN PyObject
*_wrap_PrintPreview_PaintPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29194 PyObject
*resultobj
= 0;
29195 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29196 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29205 PyObject
* obj0
= 0 ;
29206 PyObject
* obj1
= 0 ;
29207 PyObject
* obj2
= 0 ;
29208 char * kwnames
[] = {
29209 (char *) "self",(char *) "canvas",(char *) "dc", NULL
29212 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_PaintPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29213 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29214 if (!SWIG_IsOK(res1
)) {
29215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_PaintPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29217 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29218 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29219 if (!SWIG_IsOK(res2
)) {
29220 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_PaintPage" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29222 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29223 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
29224 if (!SWIG_IsOK(res3
)) {
29225 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PrintPreview_PaintPage" "', expected argument " "3"" of type '" "wxDC &""'");
29228 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintPreview_PaintPage" "', expected argument " "3"" of type '" "wxDC &""'");
29230 arg3
= reinterpret_cast< wxDC
* >(argp3
);
29232 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29233 result
= (bool)(arg1
)->PaintPage(arg2
,*arg3
);
29234 wxPyEndAllowThreads(__tstate
);
29235 if (PyErr_Occurred()) SWIG_fail
;
29238 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29246 SWIGINTERN PyObject
*_wrap_PrintPreview_DrawBlankPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29247 PyObject
*resultobj
= 0;
29248 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29249 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29258 PyObject
* obj0
= 0 ;
29259 PyObject
* obj1
= 0 ;
29260 PyObject
* obj2
= 0 ;
29261 char * kwnames
[] = {
29262 (char *) "self",(char *) "canvas",(char *) "dc", NULL
29265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_DrawBlankPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29267 if (!SWIG_IsOK(res1
)) {
29268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29270 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29271 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29272 if (!SWIG_IsOK(res2
)) {
29273 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29275 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29276 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
29277 if (!SWIG_IsOK(res3
)) {
29278 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "3"" of type '" "wxDC &""'");
29281 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "3"" of type '" "wxDC &""'");
29283 arg3
= reinterpret_cast< wxDC
* >(argp3
);
29285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29286 result
= (bool)(arg1
)->DrawBlankPage(arg2
,*arg3
);
29287 wxPyEndAllowThreads(__tstate
);
29288 if (PyErr_Occurred()) SWIG_fail
;
29291 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29299 SWIGINTERN PyObject
*_wrap_PrintPreview_RenderPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29300 PyObject
*resultobj
= 0;
29301 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29308 PyObject
* obj0
= 0 ;
29309 PyObject
* obj1
= 0 ;
29310 char * kwnames
[] = {
29311 (char *) "self",(char *) "pageNum", NULL
29314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_RenderPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29315 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29316 if (!SWIG_IsOK(res1
)) {
29317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_RenderPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29319 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29320 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29321 if (!SWIG_IsOK(ecode2
)) {
29322 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_RenderPage" "', expected argument " "2"" of type '" "int""'");
29324 arg2
= static_cast< int >(val2
);
29326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29327 result
= (bool)(arg1
)->RenderPage(arg2
);
29328 wxPyEndAllowThreads(__tstate
);
29329 if (PyErr_Occurred()) SWIG_fail
;
29332 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29340 SWIGINTERN PyObject
*_wrap_PrintPreview_AdjustScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29341 PyObject
*resultobj
= 0;
29342 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29343 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29348 PyObject
* obj0
= 0 ;
29349 PyObject
* obj1
= 0 ;
29350 char * kwnames
[] = {
29351 (char *) "self",(char *) "canvas", NULL
29354 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_AdjustScrollbars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29355 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29356 if (!SWIG_IsOK(res1
)) {
29357 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_AdjustScrollbars" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29359 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29360 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29361 if (!SWIG_IsOK(res2
)) {
29362 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_AdjustScrollbars" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29364 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29367 (arg1
)->AdjustScrollbars(arg2
);
29368 wxPyEndAllowThreads(__tstate
);
29369 if (PyErr_Occurred()) SWIG_fail
;
29371 resultobj
= SWIG_Py_Void();
29378 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29379 PyObject
*resultobj
= 0;
29380 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29381 wxPrintDialogData
*result
= 0 ;
29384 PyObject
*swig_obj
[1] ;
29386 if (!args
) SWIG_fail
;
29387 swig_obj
[0] = args
;
29388 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29389 if (!SWIG_IsOK(res1
)) {
29390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29392 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29396 wxPrintDialogData
&_result_ref
= (arg1
)->GetPrintDialogData();
29397 result
= (wxPrintDialogData
*) &_result_ref
;
29399 wxPyEndAllowThreads(__tstate
);
29400 if (PyErr_Occurred()) SWIG_fail
;
29402 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
29409 SWIGINTERN PyObject
*_wrap_PrintPreview_SetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29410 PyObject
*resultobj
= 0;
29411 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29417 PyObject
* obj0
= 0 ;
29418 PyObject
* obj1
= 0 ;
29419 char * kwnames
[] = {
29420 (char *) "self",(char *) "percent", NULL
29423 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29424 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29425 if (!SWIG_IsOK(res1
)) {
29426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetZoom" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29428 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29429 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29430 if (!SWIG_IsOK(ecode2
)) {
29431 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetZoom" "', expected argument " "2"" of type '" "int""'");
29433 arg2
= static_cast< int >(val2
);
29435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29436 (arg1
)->SetZoom(arg2
);
29437 wxPyEndAllowThreads(__tstate
);
29438 if (PyErr_Occurred()) SWIG_fail
;
29440 resultobj
= SWIG_Py_Void();
29447 SWIGINTERN PyObject
*_wrap_PrintPreview_GetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29448 PyObject
*resultobj
= 0;
29449 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29453 PyObject
*swig_obj
[1] ;
29455 if (!args
) SWIG_fail
;
29456 swig_obj
[0] = args
;
29457 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29458 if (!SWIG_IsOK(res1
)) {
29459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetZoom" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29461 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29464 result
= (int)(arg1
)->GetZoom();
29465 wxPyEndAllowThreads(__tstate
);
29466 if (PyErr_Occurred()) SWIG_fail
;
29468 resultobj
= SWIG_From_int(static_cast< int >(result
));
29475 SWIGINTERN PyObject
*_wrap_PrintPreview_GetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29476 PyObject
*resultobj
= 0;
29477 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29481 PyObject
*swig_obj
[1] ;
29483 if (!args
) SWIG_fail
;
29484 swig_obj
[0] = args
;
29485 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29486 if (!SWIG_IsOK(res1
)) {
29487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetMaxPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29489 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29492 result
= (int)(arg1
)->GetMaxPage();
29493 wxPyEndAllowThreads(__tstate
);
29494 if (PyErr_Occurred()) SWIG_fail
;
29496 resultobj
= SWIG_From_int(static_cast< int >(result
));
29503 SWIGINTERN PyObject
*_wrap_PrintPreview_GetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29504 PyObject
*resultobj
= 0;
29505 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29509 PyObject
*swig_obj
[1] ;
29511 if (!args
) SWIG_fail
;
29512 swig_obj
[0] = args
;
29513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29514 if (!SWIG_IsOK(res1
)) {
29515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetMinPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29517 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29520 result
= (int)(arg1
)->GetMinPage();
29521 wxPyEndAllowThreads(__tstate
);
29522 if (PyErr_Occurred()) SWIG_fail
;
29524 resultobj
= SWIG_From_int(static_cast< int >(result
));
29531 SWIGINTERN PyObject
*_wrap_PrintPreview_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29532 PyObject
*resultobj
= 0;
29533 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29537 PyObject
*swig_obj
[1] ;
29539 if (!args
) SWIG_fail
;
29540 swig_obj
[0] = args
;
29541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29542 if (!SWIG_IsOK(res1
)) {
29543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_Ok" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29545 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29548 result
= (bool)(arg1
)->Ok();
29549 wxPyEndAllowThreads(__tstate
);
29550 if (PyErr_Occurred()) SWIG_fail
;
29553 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29561 SWIGINTERN PyObject
*_wrap_PrintPreview_SetOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29562 PyObject
*resultobj
= 0;
29563 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29569 PyObject
* obj0
= 0 ;
29570 PyObject
* obj1
= 0 ;
29571 char * kwnames
[] = {
29572 (char *) "self",(char *) "ok", NULL
29575 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetOk",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29576 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29577 if (!SWIG_IsOK(res1
)) {
29578 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetOk" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29580 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29581 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
29582 if (!SWIG_IsOK(ecode2
)) {
29583 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetOk" "', expected argument " "2"" of type '" "bool""'");
29585 arg2
= static_cast< bool >(val2
);
29587 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29588 (arg1
)->SetOk(arg2
);
29589 wxPyEndAllowThreads(__tstate
);
29590 if (PyErr_Occurred()) SWIG_fail
;
29592 resultobj
= SWIG_Py_Void();
29599 SWIGINTERN PyObject
*_wrap_PrintPreview_Print(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29600 PyObject
*resultobj
= 0;
29601 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29608 PyObject
* obj0
= 0 ;
29609 PyObject
* obj1
= 0 ;
29610 char * kwnames
[] = {
29611 (char *) "self",(char *) "interactive", NULL
29614 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_Print",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29615 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29616 if (!SWIG_IsOK(res1
)) {
29617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_Print" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29619 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29620 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
29621 if (!SWIG_IsOK(ecode2
)) {
29622 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_Print" "', expected argument " "2"" of type '" "bool""'");
29624 arg2
= static_cast< bool >(val2
);
29626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29627 result
= (bool)(arg1
)->Print(arg2
);
29628 wxPyEndAllowThreads(__tstate
);
29629 if (PyErr_Occurred()) SWIG_fail
;
29632 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29640 SWIGINTERN PyObject
*_wrap_PrintPreview_DetermineScaling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29641 PyObject
*resultobj
= 0;
29642 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29645 PyObject
*swig_obj
[1] ;
29647 if (!args
) SWIG_fail
;
29648 swig_obj
[0] = args
;
29649 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29650 if (!SWIG_IsOK(res1
)) {
29651 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_DetermineScaling" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29653 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29656 (arg1
)->DetermineScaling();
29657 wxPyEndAllowThreads(__tstate
);
29658 if (PyErr_Occurred()) SWIG_fail
;
29660 resultobj
= SWIG_Py_Void();
29667 SWIGINTERN PyObject
*PrintPreview_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29669 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29670 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintPreview
, SWIG_NewClientData(obj
));
29671 return SWIG_Py_Void();
29674 SWIGINTERN PyObject
*PrintPreview_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29675 return SWIG_Python_InitShadowInstance(args
);
29678 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
29679 PyObject
*resultobj
= 0;
29680 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
29681 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29682 wxPrintDialogData
*arg3
= (wxPrintDialogData
*) NULL
;
29683 wxPyPrintPreview
*result
= 0 ;
29689 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
29690 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29691 if (!SWIG_IsOK(res1
)) {
29692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
29694 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29695 if (!SWIG_IsOK(res2
)) {
29696 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
29699 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
29700 if (!SWIG_IsOK(res3
)) {
29701 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPrintPreview" "', expected argument " "3"" of type '" "wxPrintDialogData *""'");
29703 arg3
= reinterpret_cast< wxPrintDialogData
* >(argp3
);
29706 if (!wxPyCheckForApp()) SWIG_fail
;
29707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29708 result
= (wxPyPrintPreview
*)new wxPyPrintPreview(arg1
,arg2
,arg3
);
29709 wxPyEndAllowThreads(__tstate
);
29710 if (PyErr_Occurred()) SWIG_fail
;
29712 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_NEW
| 0 );
29719 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
29720 PyObject
*resultobj
= 0;
29721 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
29722 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29723 wxPrintData
*arg3
= (wxPrintData
*) 0 ;
29724 wxPyPrintPreview
*result
= 0 ;
29730 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
29731 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29732 if (!SWIG_IsOK(res1
)) {
29733 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
29735 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29736 if (!SWIG_IsOK(res2
)) {
29737 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
29739 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
29740 if (!SWIG_IsOK(res3
)) {
29741 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPrintPreview" "', expected argument " "3"" of type '" "wxPrintData *""'");
29743 arg3
= reinterpret_cast< wxPrintData
* >(argp3
);
29745 if (!wxPyCheckForApp()) SWIG_fail
;
29746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29747 result
= (wxPyPrintPreview
*)new wxPyPrintPreview(arg1
,arg2
,arg3
);
29748 wxPyEndAllowThreads(__tstate
);
29749 if (PyErr_Occurred()) SWIG_fail
;
29751 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_NEW
| 0 );
29758 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview(PyObject
*self
, PyObject
*args
) {
29762 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PyPrintPreview",0,3,argv
))) SWIG_fail
;
29764 if ((argc
>= 2) && (argc
<= 3)) {
29769 int res
= SWIG_ConvertPtr(argv
[2], &vptr
, SWIGTYPE_p_wxPrintDialogData
, 0);
29770 _v
= SWIG_CheckState(res
);
29772 if (!_v
) goto check_1
;
29774 return _wrap_new_PyPrintPreview__SWIG_0(self
, argc
, argv
);
29779 return _wrap_new_PyPrintPreview__SWIG_1(self
, argc
, argv
);
29783 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PyPrintPreview'");
29788 SWIGINTERN PyObject
*_wrap_PyPrintPreview__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29789 PyObject
*resultobj
= 0;
29790 wxPyPrintPreview
*arg1
= (wxPyPrintPreview
*) 0 ;
29791 PyObject
*arg2
= (PyObject
*) 0 ;
29792 PyObject
*arg3
= (PyObject
*) 0 ;
29795 PyObject
* obj0
= 0 ;
29796 PyObject
* obj1
= 0 ;
29797 PyObject
* obj2
= 0 ;
29798 char * kwnames
[] = {
29799 (char *) "self",(char *) "self",(char *) "_class", NULL
29802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPrintPreview__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintPreview
, 0 | 0 );
29804 if (!SWIG_IsOK(res1
)) {
29805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPrintPreview__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPrintPreview *""'");
29807 arg1
= reinterpret_cast< wxPyPrintPreview
* >(argp1
);
29811 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29812 (arg1
)->_setCallbackInfo(arg2
,arg3
);
29813 wxPyEndAllowThreads(__tstate
);
29814 if (PyErr_Occurred()) SWIG_fail
;
29816 resultobj
= SWIG_Py_Void();
29823 SWIGINTERN PyObject
*PyPrintPreview_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29825 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29826 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPrintPreview
, SWIG_NewClientData(obj
));
29827 return SWIG_Py_Void();
29830 SWIGINTERN PyObject
*PyPrintPreview_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29831 return SWIG_Python_InitShadowInstance(args
);
29834 SWIGINTERN PyObject
*_wrap_new_PyPreviewFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29835 PyObject
*resultobj
= 0;
29836 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29837 wxFrame
*arg2
= (wxFrame
*) 0 ;
29838 wxString
*arg3
= 0 ;
29839 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
29840 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
29841 wxSize
const &arg5_defvalue
= wxDefaultSize
;
29842 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
29843 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
29844 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
29845 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
29846 wxPyPreviewFrame
*result
= 0 ;
29851 bool temp3
= false ;
29856 bool temp7
= false ;
29857 PyObject
* obj0
= 0 ;
29858 PyObject
* obj1
= 0 ;
29859 PyObject
* obj2
= 0 ;
29860 PyObject
* obj3
= 0 ;
29861 PyObject
* obj4
= 0 ;
29862 PyObject
* obj5
= 0 ;
29863 PyObject
* obj6
= 0 ;
29864 char * kwnames
[] = {
29865 (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
29868 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
29869 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29870 if (!SWIG_IsOK(res1
)) {
29871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPreviewFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29873 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29874 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
29875 if (!SWIG_IsOK(res2
)) {
29876 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPreviewFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
29878 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
29880 arg3
= wxString_in_helper(obj2
);
29881 if (arg3
== NULL
) SWIG_fail
;
29887 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
29893 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
29897 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
29898 if (!SWIG_IsOK(ecode6
)) {
29899 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PyPreviewFrame" "', expected argument " "6"" of type '" "long""'");
29901 arg6
= static_cast< long >(val6
);
29905 arg7
= wxString_in_helper(obj6
);
29906 if (arg7
== NULL
) SWIG_fail
;
29911 if (!wxPyCheckForApp()) SWIG_fail
;
29912 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29913 result
= (wxPyPreviewFrame
*)new wxPyPreviewFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
29914 wxPyEndAllowThreads(__tstate
);
29915 if (PyErr_Occurred()) SWIG_fail
;
29917 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_NEW
| 0 );
29940 SWIGINTERN PyObject
*_wrap_PyPreviewFrame__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29941 PyObject
*resultobj
= 0;
29942 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
29943 PyObject
*arg2
= (PyObject
*) 0 ;
29944 PyObject
*arg3
= (PyObject
*) 0 ;
29947 PyObject
* obj0
= 0 ;
29948 PyObject
* obj1
= 0 ;
29949 PyObject
* obj2
= 0 ;
29950 char * kwnames
[] = {
29951 (char *) "self",(char *) "self",(char *) "_class", NULL
29954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewFrame__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
29956 if (!SWIG_IsOK(res1
)) {
29957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
29959 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
29963 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29964 (arg1
)->_setCallbackInfo(arg2
,arg3
);
29965 wxPyEndAllowThreads(__tstate
);
29966 if (PyErr_Occurred()) SWIG_fail
;
29968 resultobj
= SWIG_Py_Void();
29975 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_SetPreviewCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29976 PyObject
*resultobj
= 0;
29977 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
29978 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29983 PyObject
* obj0
= 0 ;
29984 PyObject
* obj1
= 0 ;
29985 char * kwnames
[] = {
29986 (char *) "self",(char *) "canvas", NULL
29989 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetPreviewCanvas",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29990 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
29991 if (!SWIG_IsOK(res1
)) {
29992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_SetPreviewCanvas" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
29994 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
29995 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29996 if (!SWIG_IsOK(res2
)) {
29997 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewFrame_SetPreviewCanvas" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29999 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
30001 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30002 (arg1
)->SetPreviewCanvas(arg2
);
30003 wxPyEndAllowThreads(__tstate
);
30004 if (PyErr_Occurred()) SWIG_fail
;
30006 resultobj
= SWIG_Py_Void();
30013 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_SetControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30014 PyObject
*resultobj
= 0;
30015 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30016 wxPreviewControlBar
*arg2
= (wxPreviewControlBar
*) 0 ;
30021 PyObject
* obj0
= 0 ;
30022 PyObject
* obj1
= 0 ;
30023 char * kwnames
[] = {
30024 (char *) "self",(char *) "bar", NULL
30027 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetControlBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30028 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30029 if (!SWIG_IsOK(res1
)) {
30030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_SetControlBar" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30032 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30033 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
30034 if (!SWIG_IsOK(res2
)) {
30035 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewFrame_SetControlBar" "', expected argument " "2"" of type '" "wxPreviewControlBar *""'");
30037 arg2
= reinterpret_cast< wxPreviewControlBar
* >(argp2
);
30039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30040 (arg1
)->SetControlBar(arg2
);
30041 wxPyEndAllowThreads(__tstate
);
30042 if (PyErr_Occurred()) SWIG_fail
;
30044 resultobj
= SWIG_Py_Void();
30051 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30052 PyObject
*resultobj
= 0;
30053 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30056 PyObject
*swig_obj
[1] ;
30058 if (!args
) SWIG_fail
;
30059 swig_obj
[0] = args
;
30060 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30061 if (!SWIG_IsOK(res1
)) {
30062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_Initialize" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30064 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30067 (arg1
)->Initialize();
30068 wxPyEndAllowThreads(__tstate
);
30069 if (PyErr_Occurred()) SWIG_fail
;
30071 resultobj
= SWIG_Py_Void();
30078 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_CreateCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30079 PyObject
*resultobj
= 0;
30080 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30083 PyObject
*swig_obj
[1] ;
30085 if (!args
) SWIG_fail
;
30086 swig_obj
[0] = args
;
30087 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30088 if (!SWIG_IsOK(res1
)) {
30089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_CreateCanvas" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30091 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30094 (arg1
)->CreateCanvas();
30095 wxPyEndAllowThreads(__tstate
);
30096 if (PyErr_Occurred()) SWIG_fail
;
30098 resultobj
= SWIG_Py_Void();
30105 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_CreateControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30106 PyObject
*resultobj
= 0;
30107 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30110 PyObject
*swig_obj
[1] ;
30112 if (!args
) SWIG_fail
;
30113 swig_obj
[0] = args
;
30114 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30115 if (!SWIG_IsOK(res1
)) {
30116 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_CreateControlBar" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30118 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30121 (arg1
)->CreateControlBar();
30122 wxPyEndAllowThreads(__tstate
);
30123 if (PyErr_Occurred()) SWIG_fail
;
30125 resultobj
= SWIG_Py_Void();
30132 SWIGINTERN PyObject
*PyPreviewFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30134 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30135 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPreviewFrame
, SWIG_NewClientData(obj
));
30136 return SWIG_Py_Void();
30139 SWIGINTERN PyObject
*PyPreviewFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30140 return SWIG_Python_InitShadowInstance(args
);
30143 SWIGINTERN PyObject
*_wrap_new_PyPreviewControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30144 PyObject
*resultobj
= 0;
30145 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
30147 wxWindow
*arg3
= (wxWindow
*) 0 ;
30148 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
30149 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
30150 wxSize
const &arg5_defvalue
= wxDefaultSize
;
30151 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
30152 long arg6
= (long) 0 ;
30153 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
30154 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
30155 wxPyPreviewControlBar
*result
= 0 ;
30166 bool temp7
= false ;
30167 PyObject
* obj0
= 0 ;
30168 PyObject
* obj1
= 0 ;
30169 PyObject
* obj2
= 0 ;
30170 PyObject
* obj3
= 0 ;
30171 PyObject
* obj4
= 0 ;
30172 PyObject
* obj5
= 0 ;
30173 PyObject
* obj6
= 0 ;
30174 char * kwnames
[] = {
30175 (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
30178 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30179 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
30180 if (!SWIG_IsOK(res1
)) {
30181 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPreviewControlBar" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
30183 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
30184 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
30185 if (!SWIG_IsOK(ecode2
)) {
30186 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyPreviewControlBar" "', expected argument " "2"" of type '" "long""'");
30188 arg2
= static_cast< long >(val2
);
30189 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30190 if (!SWIG_IsOK(res3
)) {
30191 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPreviewControlBar" "', expected argument " "3"" of type '" "wxWindow *""'");
30193 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
30197 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
30203 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
30207 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
30208 if (!SWIG_IsOK(ecode6
)) {
30209 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PyPreviewControlBar" "', expected argument " "6"" of type '" "long""'");
30211 arg6
= static_cast< long >(val6
);
30215 arg7
= wxString_in_helper(obj6
);
30216 if (arg7
== NULL
) SWIG_fail
;
30221 if (!wxPyCheckForApp()) SWIG_fail
;
30222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30223 result
= (wxPyPreviewControlBar
*)new wxPyPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
30224 wxPyEndAllowThreads(__tstate
);
30225 if (PyErr_Occurred()) SWIG_fail
;
30227 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_NEW
| 0 );
30242 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30243 PyObject
*resultobj
= 0;
30244 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30245 PyObject
*arg2
= (PyObject
*) 0 ;
30246 PyObject
*arg3
= (PyObject
*) 0 ;
30249 PyObject
* obj0
= 0 ;
30250 PyObject
* obj1
= 0 ;
30251 PyObject
* obj2
= 0 ;
30252 char * kwnames
[] = {
30253 (char *) "self",(char *) "self",(char *) "_class", NULL
30256 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewControlBar__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30257 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30258 if (!SWIG_IsOK(res1
)) {
30259 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30261 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30266 (arg1
)->_setCallbackInfo(arg2
,arg3
);
30267 wxPyEndAllowThreads(__tstate
);
30268 if (PyErr_Occurred()) SWIG_fail
;
30270 resultobj
= SWIG_Py_Void();
30277 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_SetPrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30278 PyObject
*resultobj
= 0;
30279 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30280 wxPrintPreview
*arg2
= (wxPrintPreview
*) 0 ;
30285 PyObject
* obj0
= 0 ;
30286 PyObject
* obj1
= 0 ;
30287 char * kwnames
[] = {
30288 (char *) "self",(char *) "preview", NULL
30291 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_SetPrintPreview",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30292 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30293 if (!SWIG_IsOK(res1
)) {
30294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_SetPrintPreview" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30296 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30297 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
30298 if (!SWIG_IsOK(res2
)) {
30299 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewControlBar_SetPrintPreview" "', expected argument " "2"" of type '" "wxPrintPreview *""'");
30301 arg2
= reinterpret_cast< wxPrintPreview
* >(argp2
);
30303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30304 (arg1
)->SetPrintPreview(arg2
);
30305 wxPyEndAllowThreads(__tstate
);
30306 if (PyErr_Occurred()) SWIG_fail
;
30308 resultobj
= SWIG_Py_Void();
30315 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_CreateButtons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30316 PyObject
*resultobj
= 0;
30317 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30320 PyObject
*swig_obj
[1] ;
30322 if (!args
) SWIG_fail
;
30323 swig_obj
[0] = args
;
30324 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30325 if (!SWIG_IsOK(res1
)) {
30326 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_CreateButtons" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30328 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30331 (arg1
)->CreateButtons();
30332 wxPyEndAllowThreads(__tstate
);
30333 if (PyErr_Occurred()) SWIG_fail
;
30335 resultobj
= SWIG_Py_Void();
30342 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_SetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30343 PyObject
*resultobj
= 0;
30344 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30350 PyObject
* obj0
= 0 ;
30351 PyObject
* obj1
= 0 ;
30352 char * kwnames
[] = {
30353 (char *) "self",(char *) "zoom", NULL
30356 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_SetZoomControl",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30357 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30358 if (!SWIG_IsOK(res1
)) {
30359 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_SetZoomControl" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30361 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30362 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30363 if (!SWIG_IsOK(ecode2
)) {
30364 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPreviewControlBar_SetZoomControl" "', expected argument " "2"" of type '" "int""'");
30366 arg2
= static_cast< int >(val2
);
30368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30369 (arg1
)->SetZoomControl(arg2
);
30370 wxPyEndAllowThreads(__tstate
);
30371 if (PyErr_Occurred()) SWIG_fail
;
30373 resultobj
= SWIG_Py_Void();
30380 SWIGINTERN PyObject
*PyPreviewControlBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30382 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30383 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_NewClientData(obj
));
30384 return SWIG_Py_Void();
30387 SWIGINTERN PyObject
*PyPreviewControlBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30388 return SWIG_Python_InitShadowInstance(args
);
30391 static PyMethodDef SwigMethods
[] = {
30392 { (char *)"new_Panel", (PyCFunction
) _wrap_new_Panel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30393 { (char *)"new_PrePanel", (PyCFunction
)_wrap_new_PrePanel
, METH_NOARGS
, NULL
},
30394 { (char *)"Panel_Create", (PyCFunction
) _wrap_Panel_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30395 { (char *)"Panel_SetFocusIgnoringChildren", (PyCFunction
)_wrap_Panel_SetFocusIgnoringChildren
, METH_O
, NULL
},
30396 { (char *)"Panel_GetClassDefaultAttributes", (PyCFunction
) _wrap_Panel_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30397 { (char *)"Panel_swigregister", Panel_swigregister
, METH_VARARGS
, NULL
},
30398 { (char *)"Panel_swiginit", Panel_swiginit
, METH_VARARGS
, NULL
},
30399 { (char *)"new_ScrolledWindow", (PyCFunction
) _wrap_new_ScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30400 { (char *)"new_PreScrolledWindow", (PyCFunction
)_wrap_new_PreScrolledWindow
, METH_NOARGS
, NULL
},
30401 { (char *)"ScrolledWindow_Create", (PyCFunction
) _wrap_ScrolledWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30402 { (char *)"ScrolledWindow_SetScrollbars", (PyCFunction
) _wrap_ScrolledWindow_SetScrollbars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30403 { (char *)"ScrolledWindow_Scroll", (PyCFunction
) _wrap_ScrolledWindow_Scroll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30404 { (char *)"ScrolledWindow_GetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_GetScrollPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30405 { (char *)"ScrolledWindow_SetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_SetScrollPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30406 { (char *)"ScrolledWindow_SetScrollRate", (PyCFunction
) _wrap_ScrolledWindow_SetScrollRate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30407 { (char *)"ScrolledWindow_GetScrollPixelsPerUnit", (PyCFunction
)_wrap_ScrolledWindow_GetScrollPixelsPerUnit
, METH_O
, NULL
},
30408 { (char *)"ScrolledWindow_EnableScrolling", (PyCFunction
) _wrap_ScrolledWindow_EnableScrolling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30409 { (char *)"ScrolledWindow_GetViewStart", (PyCFunction
)_wrap_ScrolledWindow_GetViewStart
, METH_O
, NULL
},
30410 { (char *)"ScrolledWindow_SetScale", (PyCFunction
) _wrap_ScrolledWindow_SetScale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30411 { (char *)"ScrolledWindow_GetScaleX", (PyCFunction
)_wrap_ScrolledWindow_GetScaleX
, METH_O
, NULL
},
30412 { (char *)"ScrolledWindow_GetScaleY", (PyCFunction
)_wrap_ScrolledWindow_GetScaleY
, METH_O
, NULL
},
30413 { (char *)"ScrolledWindow_CalcScrolledPosition", _wrap_ScrolledWindow_CalcScrolledPosition
, METH_VARARGS
, NULL
},
30414 { (char *)"ScrolledWindow_CalcUnscrolledPosition", _wrap_ScrolledWindow_CalcUnscrolledPosition
, METH_VARARGS
, NULL
},
30415 { (char *)"ScrolledWindow_AdjustScrollbars", (PyCFunction
)_wrap_ScrolledWindow_AdjustScrollbars
, METH_O
, NULL
},
30416 { (char *)"ScrolledWindow_CalcScrollInc", (PyCFunction
) _wrap_ScrolledWindow_CalcScrollInc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30417 { (char *)"ScrolledWindow_SetTargetWindow", (PyCFunction
) _wrap_ScrolledWindow_SetTargetWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30418 { (char *)"ScrolledWindow_GetTargetWindow", (PyCFunction
)_wrap_ScrolledWindow_GetTargetWindow
, METH_O
, NULL
},
30419 { (char *)"ScrolledWindow_SetTargetRect", (PyCFunction
) _wrap_ScrolledWindow_SetTargetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30420 { (char *)"ScrolledWindow_GetTargetRect", (PyCFunction
)_wrap_ScrolledWindow_GetTargetRect
, METH_O
, NULL
},
30421 { (char *)"ScrolledWindow_DoPrepareDC", (PyCFunction
) _wrap_ScrolledWindow_DoPrepareDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30422 { (char *)"ScrolledWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_ScrolledWindow_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30423 { (char *)"ScrolledWindow_swigregister", ScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
30424 { (char *)"ScrolledWindow_swiginit", ScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
30425 { (char *)"TopLevelWindow_Maximize", (PyCFunction
) _wrap_TopLevelWindow_Maximize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30426 { (char *)"TopLevelWindow_Restore", (PyCFunction
)_wrap_TopLevelWindow_Restore
, METH_O
, NULL
},
30427 { (char *)"TopLevelWindow_Iconize", (PyCFunction
) _wrap_TopLevelWindow_Iconize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30428 { (char *)"TopLevelWindow_IsMaximized", (PyCFunction
)_wrap_TopLevelWindow_IsMaximized
, METH_O
, NULL
},
30429 { (char *)"TopLevelWindow_IsIconized", (PyCFunction
)_wrap_TopLevelWindow_IsIconized
, METH_O
, NULL
},
30430 { (char *)"TopLevelWindow_GetIcon", (PyCFunction
)_wrap_TopLevelWindow_GetIcon
, METH_O
, NULL
},
30431 { (char *)"TopLevelWindow_SetIcon", (PyCFunction
) _wrap_TopLevelWindow_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30432 { (char *)"TopLevelWindow_SetIcons", (PyCFunction
) _wrap_TopLevelWindow_SetIcons
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30433 { (char *)"TopLevelWindow_ShowFullScreen", (PyCFunction
) _wrap_TopLevelWindow_ShowFullScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30434 { (char *)"TopLevelWindow_IsFullScreen", (PyCFunction
)_wrap_TopLevelWindow_IsFullScreen
, METH_O
, NULL
},
30435 { (char *)"TopLevelWindow_SetTitle", (PyCFunction
) _wrap_TopLevelWindow_SetTitle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30436 { (char *)"TopLevelWindow_GetTitle", (PyCFunction
)_wrap_TopLevelWindow_GetTitle
, METH_O
, NULL
},
30437 { (char *)"TopLevelWindow_SetShape", (PyCFunction
) _wrap_TopLevelWindow_SetShape
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30438 { (char *)"TopLevelWindow_RequestUserAttention", (PyCFunction
) _wrap_TopLevelWindow_RequestUserAttention
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30439 { (char *)"TopLevelWindow_IsActive", (PyCFunction
)_wrap_TopLevelWindow_IsActive
, METH_O
, NULL
},
30440 { (char *)"TopLevelWindow_MacSetMetalAppearance", (PyCFunction
) _wrap_TopLevelWindow_MacSetMetalAppearance
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30441 { (char *)"TopLevelWindow_MacGetMetalAppearance", (PyCFunction
)_wrap_TopLevelWindow_MacGetMetalAppearance
, METH_O
, NULL
},
30442 { (char *)"TopLevelWindow_CenterOnScreen", (PyCFunction
) _wrap_TopLevelWindow_CenterOnScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30443 { (char *)"TopLevelWindow_swigregister", TopLevelWindow_swigregister
, METH_VARARGS
, NULL
},
30444 { (char *)"new_Frame", (PyCFunction
) _wrap_new_Frame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30445 { (char *)"new_PreFrame", (PyCFunction
)_wrap_new_PreFrame
, METH_NOARGS
, NULL
},
30446 { (char *)"Frame_Create", (PyCFunction
) _wrap_Frame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30447 { (char *)"Frame_SendSizeEvent", (PyCFunction
)_wrap_Frame_SendSizeEvent
, METH_O
, NULL
},
30448 { (char *)"Frame_SetMenuBar", (PyCFunction
) _wrap_Frame_SetMenuBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30449 { (char *)"Frame_GetMenuBar", (PyCFunction
)_wrap_Frame_GetMenuBar
, METH_O
, NULL
},
30450 { (char *)"Frame_ProcessCommand", (PyCFunction
) _wrap_Frame_ProcessCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30451 { (char *)"Frame_CreateStatusBar", (PyCFunction
) _wrap_Frame_CreateStatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30452 { (char *)"Frame_GetStatusBar", (PyCFunction
)_wrap_Frame_GetStatusBar
, METH_O
, NULL
},
30453 { (char *)"Frame_SetStatusBar", (PyCFunction
) _wrap_Frame_SetStatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30454 { (char *)"Frame_SetStatusText", (PyCFunction
) _wrap_Frame_SetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30455 { (char *)"Frame_SetStatusWidths", (PyCFunction
) _wrap_Frame_SetStatusWidths
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30456 { (char *)"Frame_PushStatusText", (PyCFunction
) _wrap_Frame_PushStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30457 { (char *)"Frame_PopStatusText", (PyCFunction
) _wrap_Frame_PopStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30458 { (char *)"Frame_SetStatusBarPane", (PyCFunction
) _wrap_Frame_SetStatusBarPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30459 { (char *)"Frame_GetStatusBarPane", (PyCFunction
)_wrap_Frame_GetStatusBarPane
, METH_O
, NULL
},
30460 { (char *)"Frame_CreateToolBar", (PyCFunction
) _wrap_Frame_CreateToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30461 { (char *)"Frame_GetToolBar", (PyCFunction
)_wrap_Frame_GetToolBar
, METH_O
, NULL
},
30462 { (char *)"Frame_SetToolBar", (PyCFunction
) _wrap_Frame_SetToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30463 { (char *)"Frame_DoGiveHelp", (PyCFunction
) _wrap_Frame_DoGiveHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30464 { (char *)"Frame_DoMenuUpdates", (PyCFunction
) _wrap_Frame_DoMenuUpdates
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30465 { (char *)"Frame_GetClassDefaultAttributes", (PyCFunction
) _wrap_Frame_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30466 { (char *)"Frame_swigregister", Frame_swigregister
, METH_VARARGS
, NULL
},
30467 { (char *)"Frame_swiginit", Frame_swiginit
, METH_VARARGS
, NULL
},
30468 { (char *)"new_Dialog", (PyCFunction
) _wrap_new_Dialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30469 { (char *)"new_PreDialog", (PyCFunction
)_wrap_new_PreDialog
, METH_NOARGS
, NULL
},
30470 { (char *)"Dialog_Create", (PyCFunction
) _wrap_Dialog_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30471 { (char *)"Dialog_SetReturnCode", (PyCFunction
) _wrap_Dialog_SetReturnCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30472 { (char *)"Dialog_GetReturnCode", (PyCFunction
)_wrap_Dialog_GetReturnCode
, METH_O
, NULL
},
30473 { (char *)"Dialog_SetAffirmativeId", (PyCFunction
) _wrap_Dialog_SetAffirmativeId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30474 { (char *)"Dialog_GetAffirmativeId", (PyCFunction
)_wrap_Dialog_GetAffirmativeId
, METH_O
, NULL
},
30475 { (char *)"Dialog_SetEscapeId", (PyCFunction
) _wrap_Dialog_SetEscapeId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30476 { (char *)"Dialog_GetEscapeId", (PyCFunction
)_wrap_Dialog_GetEscapeId
, METH_O
, NULL
},
30477 { (char *)"Dialog_CreateTextSizer", (PyCFunction
) _wrap_Dialog_CreateTextSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30478 { (char *)"Dialog_CreateButtonSizer", (PyCFunction
) _wrap_Dialog_CreateButtonSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30479 { (char *)"Dialog_CreateStdDialogButtonSizer", (PyCFunction
) _wrap_Dialog_CreateStdDialogButtonSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30480 { (char *)"Dialog_IsModal", (PyCFunction
)_wrap_Dialog_IsModal
, METH_O
, NULL
},
30481 { (char *)"Dialog_ShowModal", (PyCFunction
)_wrap_Dialog_ShowModal
, METH_O
, NULL
},
30482 { (char *)"Dialog_EndModal", (PyCFunction
) _wrap_Dialog_EndModal
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30483 { (char *)"Dialog_GetClassDefaultAttributes", (PyCFunction
) _wrap_Dialog_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30484 { (char *)"Dialog_swigregister", Dialog_swigregister
, METH_VARARGS
, NULL
},
30485 { (char *)"Dialog_swiginit", Dialog_swiginit
, METH_VARARGS
, NULL
},
30486 { (char *)"new_MiniFrame", (PyCFunction
) _wrap_new_MiniFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30487 { (char *)"new_PreMiniFrame", (PyCFunction
)_wrap_new_PreMiniFrame
, METH_NOARGS
, NULL
},
30488 { (char *)"MiniFrame_Create", (PyCFunction
) _wrap_MiniFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30489 { (char *)"MiniFrame_swigregister", MiniFrame_swigregister
, METH_VARARGS
, NULL
},
30490 { (char *)"MiniFrame_swiginit", MiniFrame_swiginit
, METH_VARARGS
, NULL
},
30491 { (char *)"new_SplashScreenWindow", (PyCFunction
) _wrap_new_SplashScreenWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30492 { (char *)"SplashScreenWindow_SetBitmap", (PyCFunction
) _wrap_SplashScreenWindow_SetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30493 { (char *)"SplashScreenWindow_GetBitmap", (PyCFunction
)_wrap_SplashScreenWindow_GetBitmap
, METH_O
, NULL
},
30494 { (char *)"SplashScreenWindow_swigregister", SplashScreenWindow_swigregister
, METH_VARARGS
, NULL
},
30495 { (char *)"SplashScreenWindow_swiginit", SplashScreenWindow_swiginit
, METH_VARARGS
, NULL
},
30496 { (char *)"new_SplashScreen", (PyCFunction
) _wrap_new_SplashScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30497 { (char *)"SplashScreen_GetSplashStyle", (PyCFunction
)_wrap_SplashScreen_GetSplashStyle
, METH_O
, NULL
},
30498 { (char *)"SplashScreen_GetSplashWindow", (PyCFunction
)_wrap_SplashScreen_GetSplashWindow
, METH_O
, NULL
},
30499 { (char *)"SplashScreen_GetTimeout", (PyCFunction
)_wrap_SplashScreen_GetTimeout
, METH_O
, NULL
},
30500 { (char *)"SplashScreen_swigregister", SplashScreen_swigregister
, METH_VARARGS
, NULL
},
30501 { (char *)"SplashScreen_swiginit", SplashScreen_swiginit
, METH_VARARGS
, NULL
},
30502 { (char *)"new_StatusBar", (PyCFunction
) _wrap_new_StatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30503 { (char *)"new_PreStatusBar", (PyCFunction
)_wrap_new_PreStatusBar
, METH_NOARGS
, NULL
},
30504 { (char *)"StatusBar_Create", (PyCFunction
) _wrap_StatusBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30505 { (char *)"StatusBar_SetFieldsCount", (PyCFunction
) _wrap_StatusBar_SetFieldsCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30506 { (char *)"StatusBar_GetFieldsCount", (PyCFunction
)_wrap_StatusBar_GetFieldsCount
, METH_O
, NULL
},
30507 { (char *)"StatusBar_SetStatusText", (PyCFunction
) _wrap_StatusBar_SetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30508 { (char *)"StatusBar_GetStatusText", (PyCFunction
) _wrap_StatusBar_GetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30509 { (char *)"StatusBar_PushStatusText", (PyCFunction
) _wrap_StatusBar_PushStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30510 { (char *)"StatusBar_PopStatusText", (PyCFunction
) _wrap_StatusBar_PopStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30511 { (char *)"StatusBar_SetStatusWidths", (PyCFunction
) _wrap_StatusBar_SetStatusWidths
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30512 { (char *)"StatusBar_SetStatusStyles", (PyCFunction
) _wrap_StatusBar_SetStatusStyles
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30513 { (char *)"StatusBar_GetFieldRect", (PyCFunction
) _wrap_StatusBar_GetFieldRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30514 { (char *)"StatusBar_SetMinHeight", (PyCFunction
) _wrap_StatusBar_SetMinHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30515 { (char *)"StatusBar_GetBorderX", (PyCFunction
)_wrap_StatusBar_GetBorderX
, METH_O
, NULL
},
30516 { (char *)"StatusBar_GetBorderY", (PyCFunction
)_wrap_StatusBar_GetBorderY
, METH_O
, NULL
},
30517 { (char *)"StatusBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_StatusBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30518 { (char *)"StatusBar_swigregister", StatusBar_swigregister
, METH_VARARGS
, NULL
},
30519 { (char *)"StatusBar_swiginit", StatusBar_swiginit
, METH_VARARGS
, NULL
},
30520 { (char *)"new_SplitterWindow", (PyCFunction
) _wrap_new_SplitterWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30521 { (char *)"new_PreSplitterWindow", (PyCFunction
)_wrap_new_PreSplitterWindow
, METH_NOARGS
, NULL
},
30522 { (char *)"SplitterWindow_Create", (PyCFunction
) _wrap_SplitterWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30523 { (char *)"SplitterWindow_GetWindow1", (PyCFunction
)_wrap_SplitterWindow_GetWindow1
, METH_O
, NULL
},
30524 { (char *)"SplitterWindow_GetWindow2", (PyCFunction
)_wrap_SplitterWindow_GetWindow2
, METH_O
, NULL
},
30525 { (char *)"SplitterWindow_SetSplitMode", (PyCFunction
) _wrap_SplitterWindow_SetSplitMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30526 { (char *)"SplitterWindow_GetSplitMode", (PyCFunction
)_wrap_SplitterWindow_GetSplitMode
, METH_O
, NULL
},
30527 { (char *)"SplitterWindow_Initialize", (PyCFunction
) _wrap_SplitterWindow_Initialize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30528 { (char *)"SplitterWindow_SplitVertically", (PyCFunction
) _wrap_SplitterWindow_SplitVertically
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30529 { (char *)"SplitterWindow_SplitHorizontally", (PyCFunction
) _wrap_SplitterWindow_SplitHorizontally
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30530 { (char *)"SplitterWindow_Unsplit", (PyCFunction
) _wrap_SplitterWindow_Unsplit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30531 { (char *)"SplitterWindow_ReplaceWindow", (PyCFunction
) _wrap_SplitterWindow_ReplaceWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30532 { (char *)"SplitterWindow_UpdateSize", (PyCFunction
)_wrap_SplitterWindow_UpdateSize
, METH_O
, NULL
},
30533 { (char *)"SplitterWindow_IsSplit", (PyCFunction
)_wrap_SplitterWindow_IsSplit
, METH_O
, NULL
},
30534 { (char *)"SplitterWindow_SetSashSize", (PyCFunction
) _wrap_SplitterWindow_SetSashSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30535 { (char *)"SplitterWindow_SetBorderSize", (PyCFunction
) _wrap_SplitterWindow_SetBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30536 { (char *)"SplitterWindow_GetSashSize", (PyCFunction
)_wrap_SplitterWindow_GetSashSize
, METH_O
, NULL
},
30537 { (char *)"SplitterWindow_GetBorderSize", (PyCFunction
)_wrap_SplitterWindow_GetBorderSize
, METH_O
, NULL
},
30538 { (char *)"SplitterWindow_SetSashPosition", (PyCFunction
) _wrap_SplitterWindow_SetSashPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30539 { (char *)"SplitterWindow_GetSashPosition", (PyCFunction
)_wrap_SplitterWindow_GetSashPosition
, METH_O
, NULL
},
30540 { (char *)"SplitterWindow_SetSashGravity", (PyCFunction
) _wrap_SplitterWindow_SetSashGravity
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30541 { (char *)"SplitterWindow_GetSashGravity", (PyCFunction
)_wrap_SplitterWindow_GetSashGravity
, METH_O
, NULL
},
30542 { (char *)"SplitterWindow_SetMinimumPaneSize", (PyCFunction
) _wrap_SplitterWindow_SetMinimumPaneSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30543 { (char *)"SplitterWindow_GetMinimumPaneSize", (PyCFunction
)_wrap_SplitterWindow_GetMinimumPaneSize
, METH_O
, NULL
},
30544 { (char *)"SplitterWindow_SashHitTest", (PyCFunction
) _wrap_SplitterWindow_SashHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30545 { (char *)"SplitterWindow_SizeWindows", (PyCFunction
)_wrap_SplitterWindow_SizeWindows
, METH_O
, NULL
},
30546 { (char *)"SplitterWindow_SetNeedUpdating", (PyCFunction
) _wrap_SplitterWindow_SetNeedUpdating
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30547 { (char *)"SplitterWindow_GetNeedUpdating", (PyCFunction
)_wrap_SplitterWindow_GetNeedUpdating
, METH_O
, NULL
},
30548 { (char *)"SplitterWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_SplitterWindow_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30549 { (char *)"SplitterWindow_swigregister", SplitterWindow_swigregister
, METH_VARARGS
, NULL
},
30550 { (char *)"SplitterWindow_swiginit", SplitterWindow_swiginit
, METH_VARARGS
, NULL
},
30551 { (char *)"new_SplitterEvent", (PyCFunction
) _wrap_new_SplitterEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30552 { (char *)"SplitterEvent_SetSashPosition", (PyCFunction
) _wrap_SplitterEvent_SetSashPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30553 { (char *)"SplitterEvent_GetSashPosition", (PyCFunction
)_wrap_SplitterEvent_GetSashPosition
, METH_O
, NULL
},
30554 { (char *)"SplitterEvent_GetWindowBeingRemoved", (PyCFunction
)_wrap_SplitterEvent_GetWindowBeingRemoved
, METH_O
, NULL
},
30555 { (char *)"SplitterEvent_GetX", (PyCFunction
)_wrap_SplitterEvent_GetX
, METH_O
, NULL
},
30556 { (char *)"SplitterEvent_GetY", (PyCFunction
)_wrap_SplitterEvent_GetY
, METH_O
, NULL
},
30557 { (char *)"SplitterEvent_swigregister", SplitterEvent_swigregister
, METH_VARARGS
, NULL
},
30558 { (char *)"SplitterEvent_swiginit", SplitterEvent_swiginit
, METH_VARARGS
, NULL
},
30559 { (char *)"new_SashWindow", (PyCFunction
) _wrap_new_SashWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30560 { (char *)"new_PreSashWindow", (PyCFunction
)_wrap_new_PreSashWindow
, METH_NOARGS
, NULL
},
30561 { (char *)"SashWindow_Create", (PyCFunction
) _wrap_SashWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30562 { (char *)"SashWindow_SetSashVisible", (PyCFunction
) _wrap_SashWindow_SetSashVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30563 { (char *)"SashWindow_GetSashVisible", (PyCFunction
) _wrap_SashWindow_GetSashVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30564 { (char *)"SashWindow_SetSashBorder", (PyCFunction
) _wrap_SashWindow_SetSashBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30565 { (char *)"SashWindow_HasBorder", (PyCFunction
) _wrap_SashWindow_HasBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30566 { (char *)"SashWindow_GetEdgeMargin", (PyCFunction
) _wrap_SashWindow_GetEdgeMargin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30567 { (char *)"SashWindow_SetDefaultBorderSize", (PyCFunction
) _wrap_SashWindow_SetDefaultBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30568 { (char *)"SashWindow_GetDefaultBorderSize", (PyCFunction
)_wrap_SashWindow_GetDefaultBorderSize
, METH_O
, NULL
},
30569 { (char *)"SashWindow_SetExtraBorderSize", (PyCFunction
) _wrap_SashWindow_SetExtraBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30570 { (char *)"SashWindow_GetExtraBorderSize", (PyCFunction
)_wrap_SashWindow_GetExtraBorderSize
, METH_O
, NULL
},
30571 { (char *)"SashWindow_SetMinimumSizeX", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30572 { (char *)"SashWindow_SetMinimumSizeY", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30573 { (char *)"SashWindow_GetMinimumSizeX", (PyCFunction
)_wrap_SashWindow_GetMinimumSizeX
, METH_O
, NULL
},
30574 { (char *)"SashWindow_GetMinimumSizeY", (PyCFunction
)_wrap_SashWindow_GetMinimumSizeY
, METH_O
, NULL
},
30575 { (char *)"SashWindow_SetMaximumSizeX", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30576 { (char *)"SashWindow_SetMaximumSizeY", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30577 { (char *)"SashWindow_GetMaximumSizeX", (PyCFunction
)_wrap_SashWindow_GetMaximumSizeX
, METH_O
, NULL
},
30578 { (char *)"SashWindow_GetMaximumSizeY", (PyCFunction
)_wrap_SashWindow_GetMaximumSizeY
, METH_O
, NULL
},
30579 { (char *)"SashWindow_SashHitTest", (PyCFunction
) _wrap_SashWindow_SashHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30580 { (char *)"SashWindow_SizeWindows", (PyCFunction
)_wrap_SashWindow_SizeWindows
, METH_O
, NULL
},
30581 { (char *)"SashWindow_swigregister", SashWindow_swigregister
, METH_VARARGS
, NULL
},
30582 { (char *)"SashWindow_swiginit", SashWindow_swiginit
, METH_VARARGS
, NULL
},
30583 { (char *)"new_SashEvent", (PyCFunction
) _wrap_new_SashEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30584 { (char *)"SashEvent_SetEdge", (PyCFunction
) _wrap_SashEvent_SetEdge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30585 { (char *)"SashEvent_GetEdge", (PyCFunction
)_wrap_SashEvent_GetEdge
, METH_O
, NULL
},
30586 { (char *)"SashEvent_SetDragRect", (PyCFunction
) _wrap_SashEvent_SetDragRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30587 { (char *)"SashEvent_GetDragRect", (PyCFunction
)_wrap_SashEvent_GetDragRect
, METH_O
, NULL
},
30588 { (char *)"SashEvent_SetDragStatus", (PyCFunction
) _wrap_SashEvent_SetDragStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30589 { (char *)"SashEvent_GetDragStatus", (PyCFunction
)_wrap_SashEvent_GetDragStatus
, METH_O
, NULL
},
30590 { (char *)"SashEvent_swigregister", SashEvent_swigregister
, METH_VARARGS
, NULL
},
30591 { (char *)"SashEvent_swiginit", SashEvent_swiginit
, METH_VARARGS
, NULL
},
30592 { (char *)"new_QueryLayoutInfoEvent", (PyCFunction
) _wrap_new_QueryLayoutInfoEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30593 { (char *)"QueryLayoutInfoEvent_SetRequestedLength", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetRequestedLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30594 { (char *)"QueryLayoutInfoEvent_GetRequestedLength", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetRequestedLength
, METH_O
, NULL
},
30595 { (char *)"QueryLayoutInfoEvent_SetFlags", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30596 { (char *)"QueryLayoutInfoEvent_GetFlags", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetFlags
, METH_O
, NULL
},
30597 { (char *)"QueryLayoutInfoEvent_SetSize", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30598 { (char *)"QueryLayoutInfoEvent_GetSize", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetSize
, METH_O
, NULL
},
30599 { (char *)"QueryLayoutInfoEvent_SetOrientation", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30600 { (char *)"QueryLayoutInfoEvent_GetOrientation", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetOrientation
, METH_O
, NULL
},
30601 { (char *)"QueryLayoutInfoEvent_SetAlignment", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30602 { (char *)"QueryLayoutInfoEvent_GetAlignment", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetAlignment
, METH_O
, NULL
},
30603 { (char *)"QueryLayoutInfoEvent_swigregister", QueryLayoutInfoEvent_swigregister
, METH_VARARGS
, NULL
},
30604 { (char *)"QueryLayoutInfoEvent_swiginit", QueryLayoutInfoEvent_swiginit
, METH_VARARGS
, NULL
},
30605 { (char *)"new_CalculateLayoutEvent", (PyCFunction
) _wrap_new_CalculateLayoutEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30606 { (char *)"CalculateLayoutEvent_SetFlags", (PyCFunction
) _wrap_CalculateLayoutEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30607 { (char *)"CalculateLayoutEvent_GetFlags", (PyCFunction
)_wrap_CalculateLayoutEvent_GetFlags
, METH_O
, NULL
},
30608 { (char *)"CalculateLayoutEvent_SetRect", (PyCFunction
) _wrap_CalculateLayoutEvent_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30609 { (char *)"CalculateLayoutEvent_GetRect", (PyCFunction
)_wrap_CalculateLayoutEvent_GetRect
, METH_O
, NULL
},
30610 { (char *)"CalculateLayoutEvent_swigregister", CalculateLayoutEvent_swigregister
, METH_VARARGS
, NULL
},
30611 { (char *)"CalculateLayoutEvent_swiginit", CalculateLayoutEvent_swiginit
, METH_VARARGS
, NULL
},
30612 { (char *)"new_SashLayoutWindow", (PyCFunction
) _wrap_new_SashLayoutWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30613 { (char *)"new_PreSashLayoutWindow", (PyCFunction
)_wrap_new_PreSashLayoutWindow
, METH_NOARGS
, NULL
},
30614 { (char *)"SashLayoutWindow_Create", (PyCFunction
) _wrap_SashLayoutWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30615 { (char *)"SashLayoutWindow_GetAlignment", (PyCFunction
)_wrap_SashLayoutWindow_GetAlignment
, METH_O
, NULL
},
30616 { (char *)"SashLayoutWindow_GetOrientation", (PyCFunction
)_wrap_SashLayoutWindow_GetOrientation
, METH_O
, NULL
},
30617 { (char *)"SashLayoutWindow_SetAlignment", (PyCFunction
) _wrap_SashLayoutWindow_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30618 { (char *)"SashLayoutWindow_SetDefaultSize", (PyCFunction
) _wrap_SashLayoutWindow_SetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30619 { (char *)"SashLayoutWindow_SetOrientation", (PyCFunction
) _wrap_SashLayoutWindow_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30620 { (char *)"SashLayoutWindow_swigregister", SashLayoutWindow_swigregister
, METH_VARARGS
, NULL
},
30621 { (char *)"SashLayoutWindow_swiginit", SashLayoutWindow_swiginit
, METH_VARARGS
, NULL
},
30622 { (char *)"new_LayoutAlgorithm", (PyCFunction
)_wrap_new_LayoutAlgorithm
, METH_NOARGS
, NULL
},
30623 { (char *)"delete_LayoutAlgorithm", (PyCFunction
)_wrap_delete_LayoutAlgorithm
, METH_O
, NULL
},
30624 { (char *)"LayoutAlgorithm_LayoutMDIFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutMDIFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30625 { (char *)"LayoutAlgorithm_LayoutFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30626 { (char *)"LayoutAlgorithm_LayoutWindow", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30627 { (char *)"LayoutAlgorithm_swigregister", LayoutAlgorithm_swigregister
, METH_VARARGS
, NULL
},
30628 { (char *)"LayoutAlgorithm_swiginit", LayoutAlgorithm_swiginit
, METH_VARARGS
, NULL
},
30629 { (char *)"new_PopupWindow", (PyCFunction
) _wrap_new_PopupWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30630 { (char *)"new_PrePopupWindow", (PyCFunction
)_wrap_new_PrePopupWindow
, METH_NOARGS
, NULL
},
30631 { (char *)"PopupWindow_swigregister", PopupWindow_swigregister
, METH_VARARGS
, NULL
},
30632 { (char *)"PopupWindow_swiginit", PopupWindow_swiginit
, METH_VARARGS
, NULL
},
30633 { (char *)"new_PopupTransientWindow", (PyCFunction
) _wrap_new_PopupTransientWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30634 { (char *)"new_PrePopupTransientWindow", (PyCFunction
)_wrap_new_PrePopupTransientWindow
, METH_NOARGS
, NULL
},
30635 { (char *)"PopupTransientWindow_swigregister", PopupTransientWindow_swigregister
, METH_VARARGS
, NULL
},
30636 { (char *)"PopupTransientWindow_swiginit", PopupTransientWindow_swiginit
, METH_VARARGS
, NULL
},
30637 { (char *)"new_TipWindow", (PyCFunction
) _wrap_new_TipWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30638 { (char *)"TipWindow_SetBoundingRect", (PyCFunction
) _wrap_TipWindow_SetBoundingRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30639 { (char *)"TipWindow_Close", (PyCFunction
)_wrap_TipWindow_Close
, METH_O
, NULL
},
30640 { (char *)"TipWindow_swigregister", TipWindow_swigregister
, METH_VARARGS
, NULL
},
30641 { (char *)"TipWindow_swiginit", TipWindow_swiginit
, METH_VARARGS
, NULL
},
30642 { (char *)"new_VScrolledWindow", (PyCFunction
) _wrap_new_VScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30643 { (char *)"new_PreVScrolledWindow", (PyCFunction
)_wrap_new_PreVScrolledWindow
, METH_NOARGS
, NULL
},
30644 { (char *)"VScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_VScrolledWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30645 { (char *)"VScrolledWindow_Create", (PyCFunction
) _wrap_VScrolledWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30646 { (char *)"VScrolledWindow_SetLineCount", (PyCFunction
) _wrap_VScrolledWindow_SetLineCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30647 { (char *)"VScrolledWindow_ScrollToLine", (PyCFunction
) _wrap_VScrolledWindow_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30648 { (char *)"VScrolledWindow_RefreshLine", (PyCFunction
) _wrap_VScrolledWindow_RefreshLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30649 { (char *)"VScrolledWindow_RefreshLines", (PyCFunction
) _wrap_VScrolledWindow_RefreshLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30650 { (char *)"VScrolledWindow_HitTestXY", (PyCFunction
) _wrap_VScrolledWindow_HitTestXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30651 { (char *)"VScrolledWindow_HitTest", (PyCFunction
) _wrap_VScrolledWindow_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30652 { (char *)"VScrolledWindow_RefreshAll", (PyCFunction
)_wrap_VScrolledWindow_RefreshAll
, METH_O
, NULL
},
30653 { (char *)"VScrolledWindow_GetLineCount", (PyCFunction
)_wrap_VScrolledWindow_GetLineCount
, METH_O
, NULL
},
30654 { (char *)"VScrolledWindow_GetVisibleBegin", (PyCFunction
)_wrap_VScrolledWindow_GetVisibleBegin
, METH_O
, NULL
},
30655 { (char *)"VScrolledWindow_GetVisibleEnd", (PyCFunction
)_wrap_VScrolledWindow_GetVisibleEnd
, METH_O
, NULL
},
30656 { (char *)"VScrolledWindow_IsVisible", (PyCFunction
) _wrap_VScrolledWindow_IsVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30657 { (char *)"VScrolledWindow_GetFirstVisibleLine", (PyCFunction
)_wrap_VScrolledWindow_GetFirstVisibleLine
, METH_O
, NULL
},
30658 { (char *)"VScrolledWindow_GetLastVisibleLine", (PyCFunction
)_wrap_VScrolledWindow_GetLastVisibleLine
, METH_O
, NULL
},
30659 { (char *)"VScrolledWindow_FindFirstFromBottom", (PyCFunction
) _wrap_VScrolledWindow_FindFirstFromBottom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30660 { (char *)"VScrolledWindow_GetLinesHeight", (PyCFunction
) _wrap_VScrolledWindow_GetLinesHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30661 { (char *)"VScrolledWindow_swigregister", VScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
30662 { (char *)"VScrolledWindow_swiginit", VScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
30663 { (char *)"new_VListBox", (PyCFunction
) _wrap_new_VListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30664 { (char *)"new_PreVListBox", (PyCFunction
)_wrap_new_PreVListBox
, METH_NOARGS
, NULL
},
30665 { (char *)"VListBox__setCallbackInfo", (PyCFunction
) _wrap_VListBox__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30666 { (char *)"VListBox_Create", (PyCFunction
) _wrap_VListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30667 { (char *)"VListBox_GetItemCount", (PyCFunction
)_wrap_VListBox_GetItemCount
, METH_O
, NULL
},
30668 { (char *)"VListBox_HasMultipleSelection", (PyCFunction
)_wrap_VListBox_HasMultipleSelection
, METH_O
, NULL
},
30669 { (char *)"VListBox_GetSelection", (PyCFunction
)_wrap_VListBox_GetSelection
, METH_O
, NULL
},
30670 { (char *)"VListBox_IsCurrent", (PyCFunction
) _wrap_VListBox_IsCurrent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30671 { (char *)"VListBox_IsSelected", (PyCFunction
) _wrap_VListBox_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30672 { (char *)"VListBox_GetSelectedCount", (PyCFunction
)_wrap_VListBox_GetSelectedCount
, METH_O
, NULL
},
30673 { (char *)"VListBox_GetFirstSelected", (PyCFunction
)_wrap_VListBox_GetFirstSelected
, METH_O
, NULL
},
30674 { (char *)"VListBox_GetNextSelected", (PyCFunction
) _wrap_VListBox_GetNextSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30675 { (char *)"VListBox_GetMargins", (PyCFunction
)_wrap_VListBox_GetMargins
, METH_O
, NULL
},
30676 { (char *)"VListBox_GetSelectionBackground", (PyCFunction
)_wrap_VListBox_GetSelectionBackground
, METH_O
, NULL
},
30677 { (char *)"VListBox_SetItemCount", (PyCFunction
) _wrap_VListBox_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30678 { (char *)"VListBox_Clear", (PyCFunction
)_wrap_VListBox_Clear
, METH_O
, NULL
},
30679 { (char *)"VListBox_SetSelection", (PyCFunction
) _wrap_VListBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30680 { (char *)"VListBox_Select", (PyCFunction
) _wrap_VListBox_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30681 { (char *)"VListBox_SelectRange", (PyCFunction
) _wrap_VListBox_SelectRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30682 { (char *)"VListBox_Toggle", (PyCFunction
) _wrap_VListBox_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30683 { (char *)"VListBox_SelectAll", (PyCFunction
)_wrap_VListBox_SelectAll
, METH_O
, NULL
},
30684 { (char *)"VListBox_DeselectAll", (PyCFunction
)_wrap_VListBox_DeselectAll
, METH_O
, NULL
},
30685 { (char *)"VListBox_SetMargins", (PyCFunction
) _wrap_VListBox_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30686 { (char *)"VListBox_SetMarginsXY", (PyCFunction
) _wrap_VListBox_SetMarginsXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30687 { (char *)"VListBox_SetSelectionBackground", (PyCFunction
) _wrap_VListBox_SetSelectionBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30688 { (char *)"VListBox_OnDrawSeparator", (PyCFunction
) _wrap_VListBox_OnDrawSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30689 { (char *)"VListBox_OnDrawBackground", (PyCFunction
) _wrap_VListBox_OnDrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30690 { (char *)"VListBox_swigregister", VListBox_swigregister
, METH_VARARGS
, NULL
},
30691 { (char *)"VListBox_swiginit", VListBox_swiginit
, METH_VARARGS
, NULL
},
30692 { (char *)"new_HtmlListBox", (PyCFunction
) _wrap_new_HtmlListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30693 { (char *)"new_PreHtmlListBox", (PyCFunction
)_wrap_new_PreHtmlListBox
, METH_NOARGS
, NULL
},
30694 { (char *)"HtmlListBox__setCallbackInfo", (PyCFunction
) _wrap_HtmlListBox__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30695 { (char *)"HtmlListBox_Create", (PyCFunction
) _wrap_HtmlListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30696 { (char *)"HtmlListBox_SetItemCount", (PyCFunction
) _wrap_HtmlListBox_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30697 { (char *)"HtmlListBox_GetFileSystem", (PyCFunction
)_wrap_HtmlListBox_GetFileSystem
, METH_O
, NULL
},
30698 { (char *)"HtmlListBox_OnLinkClicked", (PyCFunction
) _wrap_HtmlListBox_OnLinkClicked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30699 { (char *)"HtmlListBox_swigregister", HtmlListBox_swigregister
, METH_VARARGS
, NULL
},
30700 { (char *)"HtmlListBox_swiginit", HtmlListBox_swiginit
, METH_VARARGS
, NULL
},
30701 { (char *)"new_TaskBarIcon", (PyCFunction
)_wrap_new_TaskBarIcon
, METH_NOARGS
, NULL
},
30702 { (char *)"delete_TaskBarIcon", (PyCFunction
)_wrap_delete_TaskBarIcon
, METH_O
, NULL
},
30703 { (char *)"TaskBarIcon__setCallbackInfo", (PyCFunction
) _wrap_TaskBarIcon__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30704 { (char *)"TaskBarIcon_Destroy", (PyCFunction
)_wrap_TaskBarIcon_Destroy
, METH_O
, NULL
},
30705 { (char *)"TaskBarIcon_IsOk", (PyCFunction
)_wrap_TaskBarIcon_IsOk
, METH_O
, NULL
},
30706 { (char *)"TaskBarIcon_IsIconInstalled", (PyCFunction
)_wrap_TaskBarIcon_IsIconInstalled
, METH_O
, NULL
},
30707 { (char *)"TaskBarIcon_SetIcon", (PyCFunction
) _wrap_TaskBarIcon_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30708 { (char *)"TaskBarIcon_RemoveIcon", (PyCFunction
)_wrap_TaskBarIcon_RemoveIcon
, METH_O
, NULL
},
30709 { (char *)"TaskBarIcon_PopupMenu", (PyCFunction
) _wrap_TaskBarIcon_PopupMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30710 { (char *)"TaskBarIcon_swigregister", TaskBarIcon_swigregister
, METH_VARARGS
, NULL
},
30711 { (char *)"TaskBarIcon_swiginit", TaskBarIcon_swiginit
, METH_VARARGS
, NULL
},
30712 { (char *)"new_TaskBarIconEvent", (PyCFunction
) _wrap_new_TaskBarIconEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30713 { (char *)"TaskBarIconEvent_swigregister", TaskBarIconEvent_swigregister
, METH_VARARGS
, NULL
},
30714 { (char *)"TaskBarIconEvent_swiginit", TaskBarIconEvent_swiginit
, METH_VARARGS
, NULL
},
30715 { (char *)"new_ColourData", (PyCFunction
)_wrap_new_ColourData
, METH_NOARGS
, NULL
},
30716 { (char *)"delete_ColourData", (PyCFunction
)_wrap_delete_ColourData
, METH_O
, NULL
},
30717 { (char *)"ColourData_GetChooseFull", (PyCFunction
)_wrap_ColourData_GetChooseFull
, METH_O
, NULL
},
30718 { (char *)"ColourData_GetColour", (PyCFunction
)_wrap_ColourData_GetColour
, METH_O
, NULL
},
30719 { (char *)"ColourData_GetCustomColour", (PyCFunction
) _wrap_ColourData_GetCustomColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30720 { (char *)"ColourData_SetChooseFull", (PyCFunction
) _wrap_ColourData_SetChooseFull
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30721 { (char *)"ColourData_SetColour", (PyCFunction
) _wrap_ColourData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30722 { (char *)"ColourData_SetCustomColour", (PyCFunction
) _wrap_ColourData_SetCustomColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30723 { (char *)"ColourData_swigregister", ColourData_swigregister
, METH_VARARGS
, NULL
},
30724 { (char *)"ColourData_swiginit", ColourData_swiginit
, METH_VARARGS
, NULL
},
30725 { (char *)"new_ColourDialog", (PyCFunction
) _wrap_new_ColourDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30726 { (char *)"ColourDialog_GetColourData", (PyCFunction
)_wrap_ColourDialog_GetColourData
, METH_O
, NULL
},
30727 { (char *)"ColourDialog_swigregister", ColourDialog_swigregister
, METH_VARARGS
, NULL
},
30728 { (char *)"ColourDialog_swiginit", ColourDialog_swiginit
, METH_VARARGS
, NULL
},
30729 { (char *)"GetColourFromUser", (PyCFunction
) _wrap_GetColourFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30730 { (char *)"new_DirDialog", (PyCFunction
) _wrap_new_DirDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30731 { (char *)"DirDialog_GetPath", (PyCFunction
)_wrap_DirDialog_GetPath
, METH_O
, NULL
},
30732 { (char *)"DirDialog_GetMessage", (PyCFunction
)_wrap_DirDialog_GetMessage
, METH_O
, NULL
},
30733 { (char *)"DirDialog_GetStyle", (PyCFunction
)_wrap_DirDialog_GetStyle
, METH_O
, NULL
},
30734 { (char *)"DirDialog_SetMessage", (PyCFunction
) _wrap_DirDialog_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30735 { (char *)"DirDialog_SetPath", (PyCFunction
) _wrap_DirDialog_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30736 { (char *)"DirDialog_swigregister", DirDialog_swigregister
, METH_VARARGS
, NULL
},
30737 { (char *)"DirDialog_swiginit", DirDialog_swiginit
, METH_VARARGS
, NULL
},
30738 { (char *)"new_FileDialog", (PyCFunction
) _wrap_new_FileDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30739 { (char *)"FileDialog_SetMessage", (PyCFunction
) _wrap_FileDialog_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30740 { (char *)"FileDialog_SetPath", (PyCFunction
) _wrap_FileDialog_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30741 { (char *)"FileDialog_SetDirectory", (PyCFunction
) _wrap_FileDialog_SetDirectory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30742 { (char *)"FileDialog_SetFilename", (PyCFunction
) _wrap_FileDialog_SetFilename
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30743 { (char *)"FileDialog_SetWildcard", (PyCFunction
) _wrap_FileDialog_SetWildcard
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30744 { (char *)"FileDialog_SetStyle", (PyCFunction
) _wrap_FileDialog_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30745 { (char *)"FileDialog_SetFilterIndex", (PyCFunction
) _wrap_FileDialog_SetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30746 { (char *)"FileDialog_GetMessage", (PyCFunction
)_wrap_FileDialog_GetMessage
, METH_O
, NULL
},
30747 { (char *)"FileDialog_GetPath", (PyCFunction
)_wrap_FileDialog_GetPath
, METH_O
, NULL
},
30748 { (char *)"FileDialog_GetDirectory", (PyCFunction
)_wrap_FileDialog_GetDirectory
, METH_O
, NULL
},
30749 { (char *)"FileDialog_GetFilename", (PyCFunction
)_wrap_FileDialog_GetFilename
, METH_O
, NULL
},
30750 { (char *)"FileDialog_GetWildcard", (PyCFunction
)_wrap_FileDialog_GetWildcard
, METH_O
, NULL
},
30751 { (char *)"FileDialog_GetStyle", (PyCFunction
)_wrap_FileDialog_GetStyle
, METH_O
, NULL
},
30752 { (char *)"FileDialog_GetFilterIndex", (PyCFunction
)_wrap_FileDialog_GetFilterIndex
, METH_O
, NULL
},
30753 { (char *)"FileDialog_GetFilenames", (PyCFunction
)_wrap_FileDialog_GetFilenames
, METH_O
, NULL
},
30754 { (char *)"FileDialog_GetPaths", (PyCFunction
)_wrap_FileDialog_GetPaths
, METH_O
, NULL
},
30755 { (char *)"FileDialog_swigregister", FileDialog_swigregister
, METH_VARARGS
, NULL
},
30756 { (char *)"FileDialog_swiginit", FileDialog_swiginit
, METH_VARARGS
, NULL
},
30757 { (char *)"new_MultiChoiceDialog", (PyCFunction
) _wrap_new_MultiChoiceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30758 { (char *)"MultiChoiceDialog_SetSelections", (PyCFunction
) _wrap_MultiChoiceDialog_SetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30759 { (char *)"MultiChoiceDialog_GetSelections", (PyCFunction
)_wrap_MultiChoiceDialog_GetSelections
, METH_O
, NULL
},
30760 { (char *)"MultiChoiceDialog_swigregister", MultiChoiceDialog_swigregister
, METH_VARARGS
, NULL
},
30761 { (char *)"MultiChoiceDialog_swiginit", MultiChoiceDialog_swiginit
, METH_VARARGS
, NULL
},
30762 { (char *)"new_SingleChoiceDialog", (PyCFunction
) _wrap_new_SingleChoiceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30763 { (char *)"SingleChoiceDialog_GetSelection", (PyCFunction
)_wrap_SingleChoiceDialog_GetSelection
, METH_O
, NULL
},
30764 { (char *)"SingleChoiceDialog_GetStringSelection", (PyCFunction
)_wrap_SingleChoiceDialog_GetStringSelection
, METH_O
, NULL
},
30765 { (char *)"SingleChoiceDialog_SetSelection", (PyCFunction
) _wrap_SingleChoiceDialog_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30766 { (char *)"SingleChoiceDialog_swigregister", SingleChoiceDialog_swigregister
, METH_VARARGS
, NULL
},
30767 { (char *)"SingleChoiceDialog_swiginit", SingleChoiceDialog_swiginit
, METH_VARARGS
, NULL
},
30768 { (char *)"new_TextEntryDialog", (PyCFunction
) _wrap_new_TextEntryDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30769 { (char *)"TextEntryDialog_GetValue", (PyCFunction
)_wrap_TextEntryDialog_GetValue
, METH_O
, NULL
},
30770 { (char *)"TextEntryDialog_SetValue", (PyCFunction
) _wrap_TextEntryDialog_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30771 { (char *)"TextEntryDialog_swigregister", TextEntryDialog_swigregister
, METH_VARARGS
, NULL
},
30772 { (char *)"TextEntryDialog_swiginit", TextEntryDialog_swiginit
, METH_VARARGS
, NULL
},
30773 { (char *)"new_PasswordEntryDialog", (PyCFunction
) _wrap_new_PasswordEntryDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30774 { (char *)"PasswordEntryDialog_swigregister", PasswordEntryDialog_swigregister
, METH_VARARGS
, NULL
},
30775 { (char *)"PasswordEntryDialog_swiginit", PasswordEntryDialog_swiginit
, METH_VARARGS
, NULL
},
30776 { (char *)"new_FontData", (PyCFunction
)_wrap_new_FontData
, METH_NOARGS
, NULL
},
30777 { (char *)"delete_FontData", (PyCFunction
)_wrap_delete_FontData
, METH_O
, NULL
},
30778 { (char *)"FontData_EnableEffects", (PyCFunction
) _wrap_FontData_EnableEffects
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30779 { (char *)"FontData_GetAllowSymbols", (PyCFunction
)_wrap_FontData_GetAllowSymbols
, METH_O
, NULL
},
30780 { (char *)"FontData_GetColour", (PyCFunction
)_wrap_FontData_GetColour
, METH_O
, NULL
},
30781 { (char *)"FontData_GetChosenFont", (PyCFunction
)_wrap_FontData_GetChosenFont
, METH_O
, NULL
},
30782 { (char *)"FontData_GetEnableEffects", (PyCFunction
)_wrap_FontData_GetEnableEffects
, METH_O
, NULL
},
30783 { (char *)"FontData_GetInitialFont", (PyCFunction
)_wrap_FontData_GetInitialFont
, METH_O
, NULL
},
30784 { (char *)"FontData_GetShowHelp", (PyCFunction
)_wrap_FontData_GetShowHelp
, METH_O
, NULL
},
30785 { (char *)"FontData_SetAllowSymbols", (PyCFunction
) _wrap_FontData_SetAllowSymbols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30786 { (char *)"FontData_SetChosenFont", (PyCFunction
) _wrap_FontData_SetChosenFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30787 { (char *)"FontData_SetColour", (PyCFunction
) _wrap_FontData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30788 { (char *)"FontData_SetInitialFont", (PyCFunction
) _wrap_FontData_SetInitialFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30789 { (char *)"FontData_SetRange", (PyCFunction
) _wrap_FontData_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30790 { (char *)"FontData_SetShowHelp", (PyCFunction
) _wrap_FontData_SetShowHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30791 { (char *)"FontData_swigregister", FontData_swigregister
, METH_VARARGS
, NULL
},
30792 { (char *)"FontData_swiginit", FontData_swiginit
, METH_VARARGS
, NULL
},
30793 { (char *)"new_FontDialog", (PyCFunction
) _wrap_new_FontDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30794 { (char *)"FontDialog_GetFontData", (PyCFunction
)_wrap_FontDialog_GetFontData
, METH_O
, NULL
},
30795 { (char *)"FontDialog_swigregister", FontDialog_swigregister
, METH_VARARGS
, NULL
},
30796 { (char *)"FontDialog_swiginit", FontDialog_swiginit
, METH_VARARGS
, NULL
},
30797 { (char *)"GetFontFromUser", (PyCFunction
) _wrap_GetFontFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30798 { (char *)"new_MessageDialog", (PyCFunction
) _wrap_new_MessageDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30799 { (char *)"MessageDialog_swigregister", MessageDialog_swigregister
, METH_VARARGS
, NULL
},
30800 { (char *)"MessageDialog_swiginit", MessageDialog_swiginit
, METH_VARARGS
, NULL
},
30801 { (char *)"new_ProgressDialog", (PyCFunction
) _wrap_new_ProgressDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30802 { (char *)"ProgressDialog_Update", (PyCFunction
) _wrap_ProgressDialog_Update
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30803 { (char *)"ProgressDialog_Resume", (PyCFunction
)_wrap_ProgressDialog_Resume
, METH_O
, NULL
},
30804 { (char *)"ProgressDialog_swigregister", ProgressDialog_swigregister
, METH_VARARGS
, NULL
},
30805 { (char *)"ProgressDialog_swiginit", ProgressDialog_swiginit
, METH_VARARGS
, NULL
},
30806 { (char *)"new_FindDialogEvent", (PyCFunction
) _wrap_new_FindDialogEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30807 { (char *)"FindDialogEvent_GetFlags", (PyCFunction
)_wrap_FindDialogEvent_GetFlags
, METH_O
, NULL
},
30808 { (char *)"FindDialogEvent_GetFindString", (PyCFunction
)_wrap_FindDialogEvent_GetFindString
, METH_O
, NULL
},
30809 { (char *)"FindDialogEvent_GetReplaceString", (PyCFunction
)_wrap_FindDialogEvent_GetReplaceString
, METH_O
, NULL
},
30810 { (char *)"FindDialogEvent_GetDialog", (PyCFunction
)_wrap_FindDialogEvent_GetDialog
, METH_O
, NULL
},
30811 { (char *)"FindDialogEvent_SetFlags", (PyCFunction
) _wrap_FindDialogEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30812 { (char *)"FindDialogEvent_SetFindString", (PyCFunction
) _wrap_FindDialogEvent_SetFindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30813 { (char *)"FindDialogEvent_SetReplaceString", (PyCFunction
) _wrap_FindDialogEvent_SetReplaceString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30814 { (char *)"FindDialogEvent_swigregister", FindDialogEvent_swigregister
, METH_VARARGS
, NULL
},
30815 { (char *)"FindDialogEvent_swiginit", FindDialogEvent_swiginit
, METH_VARARGS
, NULL
},
30816 { (char *)"new_FindReplaceData", (PyCFunction
) _wrap_new_FindReplaceData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30817 { (char *)"delete_FindReplaceData", (PyCFunction
)_wrap_delete_FindReplaceData
, METH_O
, NULL
},
30818 { (char *)"FindReplaceData_GetFindString", (PyCFunction
)_wrap_FindReplaceData_GetFindString
, METH_O
, NULL
},
30819 { (char *)"FindReplaceData_GetReplaceString", (PyCFunction
)_wrap_FindReplaceData_GetReplaceString
, METH_O
, NULL
},
30820 { (char *)"FindReplaceData_GetFlags", (PyCFunction
)_wrap_FindReplaceData_GetFlags
, METH_O
, NULL
},
30821 { (char *)"FindReplaceData_SetFlags", (PyCFunction
) _wrap_FindReplaceData_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30822 { (char *)"FindReplaceData_SetFindString", (PyCFunction
) _wrap_FindReplaceData_SetFindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30823 { (char *)"FindReplaceData_SetReplaceString", (PyCFunction
) _wrap_FindReplaceData_SetReplaceString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30824 { (char *)"FindReplaceData_swigregister", FindReplaceData_swigregister
, METH_VARARGS
, NULL
},
30825 { (char *)"FindReplaceData_swiginit", FindReplaceData_swiginit
, METH_VARARGS
, NULL
},
30826 { (char *)"new_FindReplaceDialog", (PyCFunction
) _wrap_new_FindReplaceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30827 { (char *)"new_PreFindReplaceDialog", (PyCFunction
)_wrap_new_PreFindReplaceDialog
, METH_NOARGS
, NULL
},
30828 { (char *)"FindReplaceDialog_Create", (PyCFunction
) _wrap_FindReplaceDialog_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30829 { (char *)"FindReplaceDialog_GetData", (PyCFunction
)_wrap_FindReplaceDialog_GetData
, METH_O
, NULL
},
30830 { (char *)"FindReplaceDialog_SetData", (PyCFunction
) _wrap_FindReplaceDialog_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30831 { (char *)"FindReplaceDialog_swigregister", FindReplaceDialog_swigregister
, METH_VARARGS
, NULL
},
30832 { (char *)"FindReplaceDialog_swiginit", FindReplaceDialog_swiginit
, METH_VARARGS
, NULL
},
30833 { (char *)"new_MDIParentFrame", (PyCFunction
) _wrap_new_MDIParentFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30834 { (char *)"new_PreMDIParentFrame", (PyCFunction
)_wrap_new_PreMDIParentFrame
, METH_NOARGS
, NULL
},
30835 { (char *)"MDIParentFrame_Create", (PyCFunction
) _wrap_MDIParentFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30836 { (char *)"MDIParentFrame_ActivateNext", (PyCFunction
)_wrap_MDIParentFrame_ActivateNext
, METH_O
, NULL
},
30837 { (char *)"MDIParentFrame_ActivatePrevious", (PyCFunction
)_wrap_MDIParentFrame_ActivatePrevious
, METH_O
, NULL
},
30838 { (char *)"MDIParentFrame_ArrangeIcons", (PyCFunction
)_wrap_MDIParentFrame_ArrangeIcons
, METH_O
, NULL
},
30839 { (char *)"MDIParentFrame_Cascade", (PyCFunction
)_wrap_MDIParentFrame_Cascade
, METH_O
, NULL
},
30840 { (char *)"MDIParentFrame_GetActiveChild", (PyCFunction
)_wrap_MDIParentFrame_GetActiveChild
, METH_O
, NULL
},
30841 { (char *)"MDIParentFrame_GetClientWindow", (PyCFunction
)_wrap_MDIParentFrame_GetClientWindow
, METH_O
, NULL
},
30842 { (char *)"MDIParentFrame_GetToolBar", (PyCFunction
)_wrap_MDIParentFrame_GetToolBar
, METH_O
, NULL
},
30843 { (char *)"MDIParentFrame_Tile", (PyCFunction
) _wrap_MDIParentFrame_Tile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30844 { (char *)"MDIParentFrame_swigregister", MDIParentFrame_swigregister
, METH_VARARGS
, NULL
},
30845 { (char *)"MDIParentFrame_swiginit", MDIParentFrame_swiginit
, METH_VARARGS
, NULL
},
30846 { (char *)"new_MDIChildFrame", (PyCFunction
) _wrap_new_MDIChildFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30847 { (char *)"new_PreMDIChildFrame", (PyCFunction
)_wrap_new_PreMDIChildFrame
, METH_NOARGS
, NULL
},
30848 { (char *)"MDIChildFrame_Create", (PyCFunction
) _wrap_MDIChildFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30849 { (char *)"MDIChildFrame_Activate", (PyCFunction
)_wrap_MDIChildFrame_Activate
, METH_O
, NULL
},
30850 { (char *)"MDIChildFrame_swigregister", MDIChildFrame_swigregister
, METH_VARARGS
, NULL
},
30851 { (char *)"MDIChildFrame_swiginit", MDIChildFrame_swiginit
, METH_VARARGS
, NULL
},
30852 { (char *)"new_MDIClientWindow", (PyCFunction
) _wrap_new_MDIClientWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30853 { (char *)"new_PreMDIClientWindow", (PyCFunction
)_wrap_new_PreMDIClientWindow
, METH_NOARGS
, NULL
},
30854 { (char *)"MDIClientWindow_Create", (PyCFunction
) _wrap_MDIClientWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30855 { (char *)"MDIClientWindow_swigregister", MDIClientWindow_swigregister
, METH_VARARGS
, NULL
},
30856 { (char *)"MDIClientWindow_swiginit", MDIClientWindow_swiginit
, METH_VARARGS
, NULL
},
30857 { (char *)"new_PyWindow", (PyCFunction
) _wrap_new_PyWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30858 { (char *)"new_PrePyWindow", (PyCFunction
)_wrap_new_PrePyWindow
, METH_NOARGS
, NULL
},
30859 { (char *)"PyWindow__setCallbackInfo", (PyCFunction
) _wrap_PyWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30860 { (char *)"PyWindow_SetBestSize", (PyCFunction
) _wrap_PyWindow_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30861 { (char *)"PyWindow_DoEraseBackground", (PyCFunction
) _wrap_PyWindow_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30862 { (char *)"PyWindow_DoMoveWindow", (PyCFunction
) _wrap_PyWindow_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30863 { (char *)"PyWindow_DoSetSize", (PyCFunction
) _wrap_PyWindow_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30864 { (char *)"PyWindow_DoSetClientSize", (PyCFunction
) _wrap_PyWindow_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30865 { (char *)"PyWindow_DoSetVirtualSize", (PyCFunction
) _wrap_PyWindow_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30866 { (char *)"PyWindow_DoGetSize", (PyCFunction
)_wrap_PyWindow_DoGetSize
, METH_O
, NULL
},
30867 { (char *)"PyWindow_DoGetClientSize", (PyCFunction
)_wrap_PyWindow_DoGetClientSize
, METH_O
, NULL
},
30868 { (char *)"PyWindow_DoGetPosition", (PyCFunction
)_wrap_PyWindow_DoGetPosition
, METH_O
, NULL
},
30869 { (char *)"PyWindow_DoGetVirtualSize", (PyCFunction
)_wrap_PyWindow_DoGetVirtualSize
, METH_O
, NULL
},
30870 { (char *)"PyWindow_DoGetBestSize", (PyCFunction
)_wrap_PyWindow_DoGetBestSize
, METH_O
, NULL
},
30871 { (char *)"PyWindow_GetDefaultAttributes", (PyCFunction
)_wrap_PyWindow_GetDefaultAttributes
, METH_O
, NULL
},
30872 { (char *)"PyWindow_OnInternalIdle", (PyCFunction
)_wrap_PyWindow_OnInternalIdle
, METH_O
, NULL
},
30873 { (char *)"PyWindow_swigregister", PyWindow_swigregister
, METH_VARARGS
, NULL
},
30874 { (char *)"PyWindow_swiginit", PyWindow_swiginit
, METH_VARARGS
, NULL
},
30875 { (char *)"new_PyPanel", (PyCFunction
) _wrap_new_PyPanel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30876 { (char *)"new_PrePyPanel", (PyCFunction
)_wrap_new_PrePyPanel
, METH_NOARGS
, NULL
},
30877 { (char *)"PyPanel__setCallbackInfo", (PyCFunction
) _wrap_PyPanel__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30878 { (char *)"PyPanel_SetBestSize", (PyCFunction
) _wrap_PyPanel_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30879 { (char *)"PyPanel_DoEraseBackground", (PyCFunction
) _wrap_PyPanel_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30880 { (char *)"PyPanel_DoMoveWindow", (PyCFunction
) _wrap_PyPanel_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30881 { (char *)"PyPanel_DoSetSize", (PyCFunction
) _wrap_PyPanel_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30882 { (char *)"PyPanel_DoSetClientSize", (PyCFunction
) _wrap_PyPanel_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30883 { (char *)"PyPanel_DoSetVirtualSize", (PyCFunction
) _wrap_PyPanel_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30884 { (char *)"PyPanel_DoGetSize", (PyCFunction
)_wrap_PyPanel_DoGetSize
, METH_O
, NULL
},
30885 { (char *)"PyPanel_DoGetClientSize", (PyCFunction
)_wrap_PyPanel_DoGetClientSize
, METH_O
, NULL
},
30886 { (char *)"PyPanel_DoGetPosition", (PyCFunction
)_wrap_PyPanel_DoGetPosition
, METH_O
, NULL
},
30887 { (char *)"PyPanel_DoGetVirtualSize", (PyCFunction
)_wrap_PyPanel_DoGetVirtualSize
, METH_O
, NULL
},
30888 { (char *)"PyPanel_DoGetBestSize", (PyCFunction
)_wrap_PyPanel_DoGetBestSize
, METH_O
, NULL
},
30889 { (char *)"PyPanel_GetDefaultAttributes", (PyCFunction
)_wrap_PyPanel_GetDefaultAttributes
, METH_O
, NULL
},
30890 { (char *)"PyPanel_OnInternalIdle", (PyCFunction
)_wrap_PyPanel_OnInternalIdle
, METH_O
, NULL
},
30891 { (char *)"PyPanel_swigregister", PyPanel_swigregister
, METH_VARARGS
, NULL
},
30892 { (char *)"PyPanel_swiginit", PyPanel_swiginit
, METH_VARARGS
, NULL
},
30893 { (char *)"new_PyScrolledWindow", (PyCFunction
) _wrap_new_PyScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30894 { (char *)"new_PrePyScrolledWindow", (PyCFunction
)_wrap_new_PrePyScrolledWindow
, METH_NOARGS
, NULL
},
30895 { (char *)"PyScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_PyScrolledWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30896 { (char *)"PyScrolledWindow_SetBestSize", (PyCFunction
) _wrap_PyScrolledWindow_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30897 { (char *)"PyScrolledWindow_DoEraseBackground", (PyCFunction
) _wrap_PyScrolledWindow_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30898 { (char *)"PyScrolledWindow_DoMoveWindow", (PyCFunction
) _wrap_PyScrolledWindow_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30899 { (char *)"PyScrolledWindow_DoSetSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30900 { (char *)"PyScrolledWindow_DoSetClientSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30901 { (char *)"PyScrolledWindow_DoSetVirtualSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30902 { (char *)"PyScrolledWindow_DoGetSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetSize
, METH_O
, NULL
},
30903 { (char *)"PyScrolledWindow_DoGetClientSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetClientSize
, METH_O
, NULL
},
30904 { (char *)"PyScrolledWindow_DoGetPosition", (PyCFunction
)_wrap_PyScrolledWindow_DoGetPosition
, METH_O
, NULL
},
30905 { (char *)"PyScrolledWindow_DoGetVirtualSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetVirtualSize
, METH_O
, NULL
},
30906 { (char *)"PyScrolledWindow_DoGetBestSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetBestSize
, METH_O
, NULL
},
30907 { (char *)"PyScrolledWindow_GetDefaultAttributes", (PyCFunction
)_wrap_PyScrolledWindow_GetDefaultAttributes
, METH_O
, NULL
},
30908 { (char *)"PyScrolledWindow_OnInternalIdle", (PyCFunction
)_wrap_PyScrolledWindow_OnInternalIdle
, METH_O
, NULL
},
30909 { (char *)"PyScrolledWindow_swigregister", PyScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
30910 { (char *)"PyScrolledWindow_swiginit", PyScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
30911 { (char *)"new_PrintData", _wrap_new_PrintData
, METH_VARARGS
, NULL
},
30912 { (char *)"delete_PrintData", (PyCFunction
)_wrap_delete_PrintData
, METH_O
, NULL
},
30913 { (char *)"PrintData_GetNoCopies", (PyCFunction
)_wrap_PrintData_GetNoCopies
, METH_O
, NULL
},
30914 { (char *)"PrintData_GetCollate", (PyCFunction
)_wrap_PrintData_GetCollate
, METH_O
, NULL
},
30915 { (char *)"PrintData_GetOrientation", (PyCFunction
)_wrap_PrintData_GetOrientation
, METH_O
, NULL
},
30916 { (char *)"PrintData_Ok", (PyCFunction
)_wrap_PrintData_Ok
, METH_O
, NULL
},
30917 { (char *)"PrintData_GetPrinterName", (PyCFunction
)_wrap_PrintData_GetPrinterName
, METH_O
, NULL
},
30918 { (char *)"PrintData_GetColour", (PyCFunction
)_wrap_PrintData_GetColour
, METH_O
, NULL
},
30919 { (char *)"PrintData_GetDuplex", (PyCFunction
)_wrap_PrintData_GetDuplex
, METH_O
, NULL
},
30920 { (char *)"PrintData_GetPaperId", (PyCFunction
)_wrap_PrintData_GetPaperId
, METH_O
, NULL
},
30921 { (char *)"PrintData_GetPaperSize", (PyCFunction
)_wrap_PrintData_GetPaperSize
, METH_O
, NULL
},
30922 { (char *)"PrintData_GetQuality", (PyCFunction
)_wrap_PrintData_GetQuality
, METH_O
, NULL
},
30923 { (char *)"PrintData_GetBin", (PyCFunction
)_wrap_PrintData_GetBin
, METH_O
, NULL
},
30924 { (char *)"PrintData_GetPrintMode", (PyCFunction
)_wrap_PrintData_GetPrintMode
, METH_O
, NULL
},
30925 { (char *)"PrintData_SetNoCopies", (PyCFunction
) _wrap_PrintData_SetNoCopies
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30926 { (char *)"PrintData_SetCollate", (PyCFunction
) _wrap_PrintData_SetCollate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30927 { (char *)"PrintData_SetOrientation", (PyCFunction
) _wrap_PrintData_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30928 { (char *)"PrintData_SetPrinterName", (PyCFunction
) _wrap_PrintData_SetPrinterName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30929 { (char *)"PrintData_SetColour", (PyCFunction
) _wrap_PrintData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30930 { (char *)"PrintData_SetDuplex", (PyCFunction
) _wrap_PrintData_SetDuplex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30931 { (char *)"PrintData_SetPaperId", (PyCFunction
) _wrap_PrintData_SetPaperId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30932 { (char *)"PrintData_SetPaperSize", (PyCFunction
) _wrap_PrintData_SetPaperSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30933 { (char *)"PrintData_SetQuality", (PyCFunction
) _wrap_PrintData_SetQuality
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30934 { (char *)"PrintData_SetBin", (PyCFunction
) _wrap_PrintData_SetBin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30935 { (char *)"PrintData_SetPrintMode", (PyCFunction
) _wrap_PrintData_SetPrintMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30936 { (char *)"PrintData_GetFilename", (PyCFunction
)_wrap_PrintData_GetFilename
, METH_O
, NULL
},
30937 { (char *)"PrintData_SetFilename", (PyCFunction
) _wrap_PrintData_SetFilename
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30938 { (char *)"PrintData_GetPrivData", (PyCFunction
)_wrap_PrintData_GetPrivData
, METH_O
, NULL
},
30939 { (char *)"PrintData_SetPrivData", (PyCFunction
) _wrap_PrintData_SetPrivData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30940 { (char *)"PrintData_swigregister", PrintData_swigregister
, METH_VARARGS
, NULL
},
30941 { (char *)"PrintData_swiginit", PrintData_swiginit
, METH_VARARGS
, NULL
},
30942 { (char *)"new_PageSetupDialogData", _wrap_new_PageSetupDialogData
, METH_VARARGS
, NULL
},
30943 { (char *)"delete_PageSetupDialogData", (PyCFunction
)_wrap_delete_PageSetupDialogData
, METH_O
, NULL
},
30944 { (char *)"PageSetupDialogData_EnableHelp", (PyCFunction
) _wrap_PageSetupDialogData_EnableHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30945 { (char *)"PageSetupDialogData_EnableMargins", (PyCFunction
) _wrap_PageSetupDialogData_EnableMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30946 { (char *)"PageSetupDialogData_EnableOrientation", (PyCFunction
) _wrap_PageSetupDialogData_EnableOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30947 { (char *)"PageSetupDialogData_EnablePaper", (PyCFunction
) _wrap_PageSetupDialogData_EnablePaper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30948 { (char *)"PageSetupDialogData_EnablePrinter", (PyCFunction
) _wrap_PageSetupDialogData_EnablePrinter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30949 { (char *)"PageSetupDialogData_GetDefaultMinMargins", (PyCFunction
)_wrap_PageSetupDialogData_GetDefaultMinMargins
, METH_O
, NULL
},
30950 { (char *)"PageSetupDialogData_GetEnableMargins", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableMargins
, METH_O
, NULL
},
30951 { (char *)"PageSetupDialogData_GetEnableOrientation", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableOrientation
, METH_O
, NULL
},
30952 { (char *)"PageSetupDialogData_GetEnablePaper", (PyCFunction
)_wrap_PageSetupDialogData_GetEnablePaper
, METH_O
, NULL
},
30953 { (char *)"PageSetupDialogData_GetEnablePrinter", (PyCFunction
)_wrap_PageSetupDialogData_GetEnablePrinter
, METH_O
, NULL
},
30954 { (char *)"PageSetupDialogData_GetEnableHelp", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableHelp
, METH_O
, NULL
},
30955 { (char *)"PageSetupDialogData_GetDefaultInfo", (PyCFunction
)_wrap_PageSetupDialogData_GetDefaultInfo
, METH_O
, NULL
},
30956 { (char *)"PageSetupDialogData_GetMarginTopLeft", (PyCFunction
)_wrap_PageSetupDialogData_GetMarginTopLeft
, METH_O
, NULL
},
30957 { (char *)"PageSetupDialogData_GetMarginBottomRight", (PyCFunction
)_wrap_PageSetupDialogData_GetMarginBottomRight
, METH_O
, NULL
},
30958 { (char *)"PageSetupDialogData_GetMinMarginTopLeft", (PyCFunction
)_wrap_PageSetupDialogData_GetMinMarginTopLeft
, METH_O
, NULL
},
30959 { (char *)"PageSetupDialogData_GetMinMarginBottomRight", (PyCFunction
)_wrap_PageSetupDialogData_GetMinMarginBottomRight
, METH_O
, NULL
},
30960 { (char *)"PageSetupDialogData_GetPaperId", (PyCFunction
)_wrap_PageSetupDialogData_GetPaperId
, METH_O
, NULL
},
30961 { (char *)"PageSetupDialogData_GetPaperSize", (PyCFunction
)_wrap_PageSetupDialogData_GetPaperSize
, METH_O
, NULL
},
30962 { (char *)"PageSetupDialogData_GetPrintData", (PyCFunction
)_wrap_PageSetupDialogData_GetPrintData
, METH_O
, NULL
},
30963 { (char *)"PageSetupDialogData_Ok", (PyCFunction
)_wrap_PageSetupDialogData_Ok
, METH_O
, NULL
},
30964 { (char *)"PageSetupDialogData_SetDefaultInfo", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30965 { (char *)"PageSetupDialogData_SetDefaultMinMargins", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultMinMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30966 { (char *)"PageSetupDialogData_SetMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginTopLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30967 { (char *)"PageSetupDialogData_SetMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginBottomRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30968 { (char *)"PageSetupDialogData_SetMinMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginTopLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30969 { (char *)"PageSetupDialogData_SetMinMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginBottomRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30970 { (char *)"PageSetupDialogData_SetPaperId", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30971 { (char *)"PageSetupDialogData_SetPaperSize", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30972 { (char *)"PageSetupDialogData_SetPrintData", (PyCFunction
) _wrap_PageSetupDialogData_SetPrintData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30973 { (char *)"PageSetupDialogData_CalculateIdFromPaperSize", (PyCFunction
)_wrap_PageSetupDialogData_CalculateIdFromPaperSize
, METH_O
, NULL
},
30974 { (char *)"PageSetupDialogData_CalculatePaperSizeFromId", (PyCFunction
)_wrap_PageSetupDialogData_CalculatePaperSizeFromId
, METH_O
, NULL
},
30975 { (char *)"PageSetupDialogData_swigregister", PageSetupDialogData_swigregister
, METH_VARARGS
, NULL
},
30976 { (char *)"PageSetupDialogData_swiginit", PageSetupDialogData_swiginit
, METH_VARARGS
, NULL
},
30977 { (char *)"new_PageSetupDialog", (PyCFunction
) _wrap_new_PageSetupDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30978 { (char *)"PageSetupDialog_GetPageSetupData", (PyCFunction
)_wrap_PageSetupDialog_GetPageSetupData
, METH_O
, NULL
},
30979 { (char *)"PageSetupDialog_GetPageSetupDialogData", (PyCFunction
)_wrap_PageSetupDialog_GetPageSetupDialogData
, METH_O
, NULL
},
30980 { (char *)"PageSetupDialog_ShowModal", (PyCFunction
)_wrap_PageSetupDialog_ShowModal
, METH_O
, NULL
},
30981 { (char *)"PageSetupDialog_swigregister", PageSetupDialog_swigregister
, METH_VARARGS
, NULL
},
30982 { (char *)"PageSetupDialog_swiginit", PageSetupDialog_swiginit
, METH_VARARGS
, NULL
},
30983 { (char *)"new_PrintDialogData", _wrap_new_PrintDialogData
, METH_VARARGS
, NULL
},
30984 { (char *)"delete_PrintDialogData", (PyCFunction
)_wrap_delete_PrintDialogData
, METH_O
, NULL
},
30985 { (char *)"PrintDialogData_GetFromPage", (PyCFunction
)_wrap_PrintDialogData_GetFromPage
, METH_O
, NULL
},
30986 { (char *)"PrintDialogData_GetToPage", (PyCFunction
)_wrap_PrintDialogData_GetToPage
, METH_O
, NULL
},
30987 { (char *)"PrintDialogData_GetMinPage", (PyCFunction
)_wrap_PrintDialogData_GetMinPage
, METH_O
, NULL
},
30988 { (char *)"PrintDialogData_GetMaxPage", (PyCFunction
)_wrap_PrintDialogData_GetMaxPage
, METH_O
, NULL
},
30989 { (char *)"PrintDialogData_GetNoCopies", (PyCFunction
)_wrap_PrintDialogData_GetNoCopies
, METH_O
, NULL
},
30990 { (char *)"PrintDialogData_GetAllPages", (PyCFunction
)_wrap_PrintDialogData_GetAllPages
, METH_O
, NULL
},
30991 { (char *)"PrintDialogData_GetSelection", (PyCFunction
)_wrap_PrintDialogData_GetSelection
, METH_O
, NULL
},
30992 { (char *)"PrintDialogData_GetCollate", (PyCFunction
)_wrap_PrintDialogData_GetCollate
, METH_O
, NULL
},
30993 { (char *)"PrintDialogData_GetPrintToFile", (PyCFunction
)_wrap_PrintDialogData_GetPrintToFile
, METH_O
, NULL
},
30994 { (char *)"PrintDialogData_SetFromPage", (PyCFunction
) _wrap_PrintDialogData_SetFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30995 { (char *)"PrintDialogData_SetToPage", (PyCFunction
) _wrap_PrintDialogData_SetToPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30996 { (char *)"PrintDialogData_SetMinPage", (PyCFunction
) _wrap_PrintDialogData_SetMinPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30997 { (char *)"PrintDialogData_SetMaxPage", (PyCFunction
) _wrap_PrintDialogData_SetMaxPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30998 { (char *)"PrintDialogData_SetNoCopies", (PyCFunction
) _wrap_PrintDialogData_SetNoCopies
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30999 { (char *)"PrintDialogData_SetAllPages", (PyCFunction
) _wrap_PrintDialogData_SetAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31000 { (char *)"PrintDialogData_SetSelection", (PyCFunction
) _wrap_PrintDialogData_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31001 { (char *)"PrintDialogData_SetCollate", (PyCFunction
) _wrap_PrintDialogData_SetCollate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31002 { (char *)"PrintDialogData_SetPrintToFile", (PyCFunction
) _wrap_PrintDialogData_SetPrintToFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31003 { (char *)"PrintDialogData_EnablePrintToFile", (PyCFunction
) _wrap_PrintDialogData_EnablePrintToFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31004 { (char *)"PrintDialogData_EnableSelection", (PyCFunction
) _wrap_PrintDialogData_EnableSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31005 { (char *)"PrintDialogData_EnablePageNumbers", (PyCFunction
) _wrap_PrintDialogData_EnablePageNumbers
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31006 { (char *)"PrintDialogData_EnableHelp", (PyCFunction
) _wrap_PrintDialogData_EnableHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31007 { (char *)"PrintDialogData_GetEnablePrintToFile", (PyCFunction
)_wrap_PrintDialogData_GetEnablePrintToFile
, METH_O
, NULL
},
31008 { (char *)"PrintDialogData_GetEnableSelection", (PyCFunction
)_wrap_PrintDialogData_GetEnableSelection
, METH_O
, NULL
},
31009 { (char *)"PrintDialogData_GetEnablePageNumbers", (PyCFunction
)_wrap_PrintDialogData_GetEnablePageNumbers
, METH_O
, NULL
},
31010 { (char *)"PrintDialogData_GetEnableHelp", (PyCFunction
)_wrap_PrintDialogData_GetEnableHelp
, METH_O
, NULL
},
31011 { (char *)"PrintDialogData_Ok", (PyCFunction
)_wrap_PrintDialogData_Ok
, METH_O
, NULL
},
31012 { (char *)"PrintDialogData_GetPrintData", (PyCFunction
)_wrap_PrintDialogData_GetPrintData
, METH_O
, NULL
},
31013 { (char *)"PrintDialogData_SetPrintData", (PyCFunction
) _wrap_PrintDialogData_SetPrintData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31014 { (char *)"PrintDialogData_swigregister", PrintDialogData_swigregister
, METH_VARARGS
, NULL
},
31015 { (char *)"PrintDialogData_swiginit", PrintDialogData_swiginit
, METH_VARARGS
, NULL
},
31016 { (char *)"new_PrintDialog", (PyCFunction
) _wrap_new_PrintDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31017 { (char *)"PrintDialog_ShowModal", (PyCFunction
)_wrap_PrintDialog_ShowModal
, METH_O
, NULL
},
31018 { (char *)"PrintDialog_GetPrintDialogData", (PyCFunction
)_wrap_PrintDialog_GetPrintDialogData
, METH_O
, NULL
},
31019 { (char *)"PrintDialog_GetPrintData", (PyCFunction
)_wrap_PrintDialog_GetPrintData
, METH_O
, NULL
},
31020 { (char *)"PrintDialog_GetPrintDC", (PyCFunction
)_wrap_PrintDialog_GetPrintDC
, METH_O
, NULL
},
31021 { (char *)"PrintDialog_swigregister", PrintDialog_swigregister
, METH_VARARGS
, NULL
},
31022 { (char *)"PrintDialog_swiginit", PrintDialog_swiginit
, METH_VARARGS
, NULL
},
31023 { (char *)"new_Printer", (PyCFunction
) _wrap_new_Printer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31024 { (char *)"delete_Printer", (PyCFunction
)_wrap_delete_Printer
, METH_O
, NULL
},
31025 { (char *)"Printer_CreateAbortWindow", (PyCFunction
) _wrap_Printer_CreateAbortWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31026 { (char *)"Printer_ReportError", (PyCFunction
) _wrap_Printer_ReportError
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31027 { (char *)"Printer_Setup", (PyCFunction
) _wrap_Printer_Setup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31028 { (char *)"Printer_Print", (PyCFunction
) _wrap_Printer_Print
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31029 { (char *)"Printer_PrintDialog", (PyCFunction
) _wrap_Printer_PrintDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31030 { (char *)"Printer_GetPrintDialogData", (PyCFunction
)_wrap_Printer_GetPrintDialogData
, METH_O
, NULL
},
31031 { (char *)"Printer_GetAbort", (PyCFunction
)_wrap_Printer_GetAbort
, METH_O
, NULL
},
31032 { (char *)"Printer_GetLastError", (PyCFunction
)_wrap_Printer_GetLastError
, METH_NOARGS
, NULL
},
31033 { (char *)"Printer_swigregister", Printer_swigregister
, METH_VARARGS
, NULL
},
31034 { (char *)"Printer_swiginit", Printer_swiginit
, METH_VARARGS
, NULL
},
31035 { (char *)"new_Printout", (PyCFunction
) _wrap_new_Printout
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31036 { (char *)"delete_Printout", (PyCFunction
)_wrap_delete_Printout
, METH_O
, NULL
},
31037 { (char *)"Printout__setCallbackInfo", (PyCFunction
) _wrap_Printout__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31038 { (char *)"Printout_GetTitle", (PyCFunction
)_wrap_Printout_GetTitle
, METH_O
, NULL
},
31039 { (char *)"Printout_GetDC", (PyCFunction
)_wrap_Printout_GetDC
, METH_O
, NULL
},
31040 { (char *)"Printout_SetDC", (PyCFunction
) _wrap_Printout_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31041 { (char *)"Printout_SetPageSizePixels", (PyCFunction
) _wrap_Printout_SetPageSizePixels
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31042 { (char *)"Printout_GetPageSizePixels", (PyCFunction
)_wrap_Printout_GetPageSizePixels
, METH_O
, NULL
},
31043 { (char *)"Printout_SetPageSizeMM", (PyCFunction
) _wrap_Printout_SetPageSizeMM
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31044 { (char *)"Printout_GetPageSizeMM", (PyCFunction
)_wrap_Printout_GetPageSizeMM
, METH_O
, NULL
},
31045 { (char *)"Printout_SetPPIScreen", (PyCFunction
) _wrap_Printout_SetPPIScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31046 { (char *)"Printout_GetPPIScreen", (PyCFunction
)_wrap_Printout_GetPPIScreen
, METH_O
, NULL
},
31047 { (char *)"Printout_SetPPIPrinter", (PyCFunction
) _wrap_Printout_SetPPIPrinter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31048 { (char *)"Printout_GetPPIPrinter", (PyCFunction
)_wrap_Printout_GetPPIPrinter
, METH_O
, NULL
},
31049 { (char *)"Printout_IsPreview", (PyCFunction
)_wrap_Printout_IsPreview
, METH_O
, NULL
},
31050 { (char *)"Printout_SetIsPreview", (PyCFunction
) _wrap_Printout_SetIsPreview
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31051 { (char *)"Printout_OnBeginDocument", (PyCFunction
) _wrap_Printout_OnBeginDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31052 { (char *)"Printout_OnEndDocument", (PyCFunction
)_wrap_Printout_OnEndDocument
, METH_O
, NULL
},
31053 { (char *)"Printout_OnBeginPrinting", (PyCFunction
)_wrap_Printout_OnBeginPrinting
, METH_O
, NULL
},
31054 { (char *)"Printout_OnEndPrinting", (PyCFunction
)_wrap_Printout_OnEndPrinting
, METH_O
, NULL
},
31055 { (char *)"Printout_OnPreparePrinting", (PyCFunction
)_wrap_Printout_OnPreparePrinting
, METH_O
, NULL
},
31056 { (char *)"Printout_HasPage", (PyCFunction
) _wrap_Printout_HasPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31057 { (char *)"Printout_GetPageInfo", (PyCFunction
)_wrap_Printout_GetPageInfo
, METH_O
, NULL
},
31058 { (char *)"Printout_swigregister", Printout_swigregister
, METH_VARARGS
, NULL
},
31059 { (char *)"Printout_swiginit", Printout_swiginit
, METH_VARARGS
, NULL
},
31060 { (char *)"new_PreviewCanvas", (PyCFunction
) _wrap_new_PreviewCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31061 { (char *)"PreviewCanvas_swigregister", PreviewCanvas_swigregister
, METH_VARARGS
, NULL
},
31062 { (char *)"PreviewCanvas_swiginit", PreviewCanvas_swiginit
, METH_VARARGS
, NULL
},
31063 { (char *)"new_PreviewFrame", (PyCFunction
) _wrap_new_PreviewFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31064 { (char *)"PreviewFrame_Initialize", (PyCFunction
)_wrap_PreviewFrame_Initialize
, METH_O
, NULL
},
31065 { (char *)"PreviewFrame_CreateControlBar", (PyCFunction
)_wrap_PreviewFrame_CreateControlBar
, METH_O
, NULL
},
31066 { (char *)"PreviewFrame_CreateCanvas", (PyCFunction
)_wrap_PreviewFrame_CreateCanvas
, METH_O
, NULL
},
31067 { (char *)"PreviewFrame_GetControlBar", (PyCFunction
)_wrap_PreviewFrame_GetControlBar
, METH_O
, NULL
},
31068 { (char *)"PreviewFrame_swigregister", PreviewFrame_swigregister
, METH_VARARGS
, NULL
},
31069 { (char *)"PreviewFrame_swiginit", PreviewFrame_swiginit
, METH_VARARGS
, NULL
},
31070 { (char *)"new_PreviewControlBar", (PyCFunction
) _wrap_new_PreviewControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31071 { (char *)"PreviewControlBar_GetZoomControl", (PyCFunction
)_wrap_PreviewControlBar_GetZoomControl
, METH_O
, NULL
},
31072 { (char *)"PreviewControlBar_SetZoomControl", (PyCFunction
) _wrap_PreviewControlBar_SetZoomControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31073 { (char *)"PreviewControlBar_GetPrintPreview", (PyCFunction
)_wrap_PreviewControlBar_GetPrintPreview
, METH_O
, NULL
},
31074 { (char *)"PreviewControlBar_OnNext", (PyCFunction
)_wrap_PreviewControlBar_OnNext
, METH_O
, NULL
},
31075 { (char *)"PreviewControlBar_OnPrevious", (PyCFunction
)_wrap_PreviewControlBar_OnPrevious
, METH_O
, NULL
},
31076 { (char *)"PreviewControlBar_OnFirst", (PyCFunction
)_wrap_PreviewControlBar_OnFirst
, METH_O
, NULL
},
31077 { (char *)"PreviewControlBar_OnLast", (PyCFunction
)_wrap_PreviewControlBar_OnLast
, METH_O
, NULL
},
31078 { (char *)"PreviewControlBar_OnGoto", (PyCFunction
)_wrap_PreviewControlBar_OnGoto
, METH_O
, NULL
},
31079 { (char *)"PreviewControlBar_swigregister", PreviewControlBar_swigregister
, METH_VARARGS
, NULL
},
31080 { (char *)"PreviewControlBar_swiginit", PreviewControlBar_swiginit
, METH_VARARGS
, NULL
},
31081 { (char *)"new_PrintPreview", _wrap_new_PrintPreview
, METH_VARARGS
, NULL
},
31082 { (char *)"delete_PrintPreview", (PyCFunction
)_wrap_delete_PrintPreview
, METH_O
, NULL
},
31083 { (char *)"PrintPreview_SetCurrentPage", (PyCFunction
) _wrap_PrintPreview_SetCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31084 { (char *)"PrintPreview_GetCurrentPage", (PyCFunction
)_wrap_PrintPreview_GetCurrentPage
, METH_O
, NULL
},
31085 { (char *)"PrintPreview_SetPrintout", (PyCFunction
) _wrap_PrintPreview_SetPrintout
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31086 { (char *)"PrintPreview_GetPrintout", (PyCFunction
)_wrap_PrintPreview_GetPrintout
, METH_O
, NULL
},
31087 { (char *)"PrintPreview_GetPrintoutForPrinting", (PyCFunction
)_wrap_PrintPreview_GetPrintoutForPrinting
, METH_O
, NULL
},
31088 { (char *)"PrintPreview_SetFrame", (PyCFunction
) _wrap_PrintPreview_SetFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31089 { (char *)"PrintPreview_SetCanvas", (PyCFunction
) _wrap_PrintPreview_SetCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31090 { (char *)"PrintPreview_GetFrame", (PyCFunction
)_wrap_PrintPreview_GetFrame
, METH_O
, NULL
},
31091 { (char *)"PrintPreview_GetCanvas", (PyCFunction
)_wrap_PrintPreview_GetCanvas
, METH_O
, NULL
},
31092 { (char *)"PrintPreview_PaintPage", (PyCFunction
) _wrap_PrintPreview_PaintPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31093 { (char *)"PrintPreview_DrawBlankPage", (PyCFunction
) _wrap_PrintPreview_DrawBlankPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31094 { (char *)"PrintPreview_RenderPage", (PyCFunction
) _wrap_PrintPreview_RenderPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31095 { (char *)"PrintPreview_AdjustScrollbars", (PyCFunction
) _wrap_PrintPreview_AdjustScrollbars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31096 { (char *)"PrintPreview_GetPrintDialogData", (PyCFunction
)_wrap_PrintPreview_GetPrintDialogData
, METH_O
, NULL
},
31097 { (char *)"PrintPreview_SetZoom", (PyCFunction
) _wrap_PrintPreview_SetZoom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31098 { (char *)"PrintPreview_GetZoom", (PyCFunction
)_wrap_PrintPreview_GetZoom
, METH_O
, NULL
},
31099 { (char *)"PrintPreview_GetMaxPage", (PyCFunction
)_wrap_PrintPreview_GetMaxPage
, METH_O
, NULL
},
31100 { (char *)"PrintPreview_GetMinPage", (PyCFunction
)_wrap_PrintPreview_GetMinPage
, METH_O
, NULL
},
31101 { (char *)"PrintPreview_Ok", (PyCFunction
)_wrap_PrintPreview_Ok
, METH_O
, NULL
},
31102 { (char *)"PrintPreview_SetOk", (PyCFunction
) _wrap_PrintPreview_SetOk
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31103 { (char *)"PrintPreview_Print", (PyCFunction
) _wrap_PrintPreview_Print
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31104 { (char *)"PrintPreview_DetermineScaling", (PyCFunction
)_wrap_PrintPreview_DetermineScaling
, METH_O
, NULL
},
31105 { (char *)"PrintPreview_swigregister", PrintPreview_swigregister
, METH_VARARGS
, NULL
},
31106 { (char *)"PrintPreview_swiginit", PrintPreview_swiginit
, METH_VARARGS
, NULL
},
31107 { (char *)"new_PyPrintPreview", _wrap_new_PyPrintPreview
, METH_VARARGS
, NULL
},
31108 { (char *)"PyPrintPreview__setCallbackInfo", (PyCFunction
) _wrap_PyPrintPreview__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31109 { (char *)"PyPrintPreview_swigregister", PyPrintPreview_swigregister
, METH_VARARGS
, NULL
},
31110 { (char *)"PyPrintPreview_swiginit", PyPrintPreview_swiginit
, METH_VARARGS
, NULL
},
31111 { (char *)"new_PyPreviewFrame", (PyCFunction
) _wrap_new_PyPreviewFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31112 { (char *)"PyPreviewFrame__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewFrame__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31113 { (char *)"PyPreviewFrame_SetPreviewCanvas", (PyCFunction
) _wrap_PyPreviewFrame_SetPreviewCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31114 { (char *)"PyPreviewFrame_SetControlBar", (PyCFunction
) _wrap_PyPreviewFrame_SetControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31115 { (char *)"PyPreviewFrame_Initialize", (PyCFunction
)_wrap_PyPreviewFrame_Initialize
, METH_O
, NULL
},
31116 { (char *)"PyPreviewFrame_CreateCanvas", (PyCFunction
)_wrap_PyPreviewFrame_CreateCanvas
, METH_O
, NULL
},
31117 { (char *)"PyPreviewFrame_CreateControlBar", (PyCFunction
)_wrap_PyPreviewFrame_CreateControlBar
, METH_O
, NULL
},
31118 { (char *)"PyPreviewFrame_swigregister", PyPreviewFrame_swigregister
, METH_VARARGS
, NULL
},
31119 { (char *)"PyPreviewFrame_swiginit", PyPreviewFrame_swiginit
, METH_VARARGS
, NULL
},
31120 { (char *)"new_PyPreviewControlBar", (PyCFunction
) _wrap_new_PyPreviewControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31121 { (char *)"PyPreviewControlBar__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewControlBar__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31122 { (char *)"PyPreviewControlBar_SetPrintPreview", (PyCFunction
) _wrap_PyPreviewControlBar_SetPrintPreview
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31123 { (char *)"PyPreviewControlBar_CreateButtons", (PyCFunction
)_wrap_PyPreviewControlBar_CreateButtons
, METH_O
, NULL
},
31124 { (char *)"PyPreviewControlBar_SetZoomControl", (PyCFunction
) _wrap_PyPreviewControlBar_SetZoomControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31125 { (char *)"PyPreviewControlBar_swigregister", PyPreviewControlBar_swigregister
, METH_VARARGS
, NULL
},
31126 { (char *)"PyPreviewControlBar_swiginit", PyPreviewControlBar_swiginit
, METH_VARARGS
, NULL
},
31127 { NULL
, NULL
, 0, NULL
}
31131 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
31133 static void *_p_wxPyPreviewFrameTo_p_wxPreviewFrame(void *x
) {
31134 return (void *)((wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31136 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
31137 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
31139 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
31140 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
31142 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
31143 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
31145 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
31146 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
31148 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
31149 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
31151 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
31152 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
31154 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
31155 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31157 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
31158 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
31160 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
31161 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
31163 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
31164 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
31166 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
31167 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
31169 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
31170 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
31172 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
31173 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
31175 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
31176 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
31178 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
31179 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
31181 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
31182 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
31184 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
31185 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
31187 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
31188 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
31190 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
31191 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
31193 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
31194 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
31196 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
31197 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
31199 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
31200 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
31202 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
31203 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
31205 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
31206 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
31208 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
31209 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
31211 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
31212 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
31214 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
31215 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
31217 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
31218 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
31220 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
31221 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
31223 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
31224 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
31226 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
31227 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
31229 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
31230 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
31232 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
31233 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
31235 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
31236 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
31238 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
31239 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
31241 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
31242 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
31244 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
31245 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
31247 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
31248 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
31250 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
31251 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
31253 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
31254 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
31256 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
31257 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
31259 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
31260 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
31262 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
31263 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31265 static void *_p_wxPasswordEntryDialogTo_p_wxTextEntryDialog(void *x
) {
31266 return (void *)((wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31268 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
31269 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
31271 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
31272 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
31274 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
31275 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
31277 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
31278 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
31280 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
31281 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
31283 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
31284 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
31286 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
31287 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
31289 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
31290 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31292 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
31293 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
31295 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
31296 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31298 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
31299 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31301 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
31302 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
31304 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
31305 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
31307 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
31308 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
31310 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
31311 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
31313 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
31314 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
31316 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
31317 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
31319 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
31320 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
31322 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
31323 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
31325 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
31326 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
31328 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
31329 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
31331 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
31332 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
31334 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
31335 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
31337 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
31338 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
31340 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
31341 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
31343 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
31344 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
31346 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
31347 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
31349 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
31350 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
31352 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
31353 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
31355 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
31356 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
31358 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
31359 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
31361 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
31362 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
31364 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
31365 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31367 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
31368 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
31370 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
31371 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
31373 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
31374 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
31376 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
31377 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
31379 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
31380 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
31382 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
31383 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31385 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
31386 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
31388 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
31389 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
31391 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
31392 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
31394 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
31395 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
31397 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
31398 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
31400 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
31401 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
31403 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
31404 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
31406 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
31407 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
31409 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
31410 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
31412 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
31413 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
31415 static void *_p_wxPyHtmlListBoxTo_p_wxPyVListBox(void *x
) {
31416 return (void *)((wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31418 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
31419 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
31421 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
31422 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
31424 static void *_p_wxTipWindowTo_p_wxFrame(void *x
) {
31425 return (void *)((wxFrame
*) ((wxTipWindow
*) x
));
31427 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
31428 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
31430 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
31431 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31433 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
31434 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
31436 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
31437 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
31439 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
31440 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
31442 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
31443 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
31445 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
31446 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
31448 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
31449 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
31451 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
31452 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31454 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
31455 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
31457 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
31458 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
31460 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
31461 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
31463 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
31464 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
31466 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
31467 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
31469 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
31470 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
31472 static void *_p_wxSizerTo_p_wxObject(void *x
) {
31473 return (void *)((wxObject
*) ((wxSizer
*) x
));
31475 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
31476 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
31478 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
31479 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
31481 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
31482 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
31484 static void *_p_wxEventTo_p_wxObject(void *x
) {
31485 return (void *)((wxObject
*) ((wxEvent
*) x
));
31487 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
31488 return (void *)((wxObject
*) ((wxFontData
*) x
));
31490 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
31491 return (void *)((wxObject
*) ((wxPrintData
*) x
));
31493 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
31494 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
31496 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
31497 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
31499 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
31500 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
31502 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
31503 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
31505 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
31506 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
31508 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
31509 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
31511 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
31512 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
31514 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
31515 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
31517 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
31518 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
31520 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
31521 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
31523 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
31524 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
31526 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
31527 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
31529 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
31530 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
31532 static void *_p_wxControlTo_p_wxObject(void *x
) {
31533 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
31535 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
31536 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
31538 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
31539 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31541 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
31542 return (void *)((wxObject
*) ((wxFSFile
*) x
));
31544 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
31545 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
31547 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
31548 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
31550 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
31551 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
31553 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
31554 return (void *)((wxObject
*) ((wxColourData
*) x
));
31556 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
31557 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
31559 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
31560 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
31562 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
31563 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
31565 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
31566 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
31568 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
31569 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
31571 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
31572 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31574 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
31575 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31577 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
31578 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
31580 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
31581 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31583 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
31584 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
31586 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
31587 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
31589 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
31590 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
31592 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
31593 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
31595 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
31596 return (void *)((wxObject
*) ((wxPrinter
*) x
));
31598 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
31599 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
31601 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
31602 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
31604 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
31605 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
31607 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
31608 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
31610 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
31611 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
31613 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
31614 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
31616 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
31617 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
31619 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
31620 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
31622 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
31623 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
31625 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
31626 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
31628 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
31629 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
31631 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
31632 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
31634 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
31635 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
31637 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
31638 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
31640 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
31641 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
31643 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
31644 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
31646 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
31647 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
31649 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
31650 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
31652 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
31653 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
31655 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
31656 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
31658 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
31659 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
31661 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
31662 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
31664 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
31665 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
31667 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
31668 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
31670 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
31671 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
31673 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
31674 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
31676 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
31677 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31679 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
31680 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
31682 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
31683 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
31685 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
31686 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
31688 static void *_p_wxImageTo_p_wxObject(void *x
) {
31689 return (void *)((wxObject
*) ((wxImage
*) x
));
31691 static void *_p_wxFrameTo_p_wxObject(void *x
) {
31692 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
31694 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
31695 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
31697 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
31698 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
31700 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
31701 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
31703 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
31704 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
31706 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
31707 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
31709 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
31710 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
31712 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
31713 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
31715 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
31716 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
31718 static void *_p_wxWindowTo_p_wxObject(void *x
) {
31719 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
31721 static void *_p_wxMenuTo_p_wxObject(void *x
) {
31722 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
31724 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
31725 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
31727 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
31728 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
31730 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
31731 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
31733 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
31734 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
31736 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
31737 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
31739 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
31740 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
31742 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
31743 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
31745 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
31746 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
31748 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
31749 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
31751 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
31752 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
31754 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
31755 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
31757 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
31758 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
31760 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
31761 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
31763 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
31764 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
31766 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
31767 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
31769 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
31770 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
31772 static void *_p_wxPanelTo_p_wxObject(void *x
) {
31773 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
31775 static void *_p_wxDialogTo_p_wxObject(void *x
) {
31776 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
31778 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
31779 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
31781 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
31782 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
31784 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
31785 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
31787 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
31788 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
31790 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
31791 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
31793 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
31794 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
31796 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
31797 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
31799 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
31800 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
31802 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
31803 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
31805 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
31806 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
31808 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
31809 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
31811 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
31812 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
31814 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
31815 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
31817 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
31818 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
31820 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
31821 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
31823 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
31824 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
31826 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
31827 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
31829 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
31830 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
31832 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
31833 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
31835 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
31836 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
31838 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
31839 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
31841 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
31842 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
31844 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
31845 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
31847 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
31848 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
31850 static void *_p_wxPyVListBoxTo_p_wxPyVScrolledWindow(void *x
) {
31851 return (void *)((wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
31853 static void *_p_wxPyHtmlListBoxTo_p_wxPyVScrolledWindow(void *x
) {
31854 return (void *)((wxPyVScrolledWindow
*) (wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31856 static void *_p_wxPyPopupTransientWindowTo_p_wxPopupWindow(void *x
) {
31857 return (void *)((wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
31859 static void *_p_wxSashLayoutWindowTo_p_wxSashWindow(void *x
) {
31860 return (void *)((wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
31862 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
31863 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
31865 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
31866 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
31868 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
31869 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
31871 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
31872 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
31874 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
31875 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
31877 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
31878 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
31880 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
31881 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
31883 static void *_p_wxTipWindowTo_p_wxTopLevelWindow(void *x
) {
31884 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxTipWindow
*) x
));
31886 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
31887 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
31889 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
31890 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
31892 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
31893 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
31895 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
31896 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31898 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
31899 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
31901 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
31902 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31904 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
31905 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31907 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
31908 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
31910 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
31911 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
31913 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
31914 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
31916 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
31917 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
31919 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
31920 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31922 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
31923 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
31925 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
31926 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
31928 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
31929 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
31931 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
31932 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
31934 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
31935 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
31937 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
31938 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
31940 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
31941 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
31943 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
31944 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31946 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
31947 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
31949 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
31950 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31952 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
31953 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31955 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
31956 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
31958 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
31959 return (void *)((wxWindow
*) ((wxPanel
*) x
));
31961 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
31962 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
31964 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
31965 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
31967 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
31968 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
31970 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
31971 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
31973 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
31974 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
31976 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
31977 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
31979 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
31980 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
31982 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
31983 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
31985 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
31986 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
31988 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
31989 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
31991 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
31992 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
31994 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
31995 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
31997 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
31998 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32000 static void *_p_wxControlTo_p_wxWindow(void *x
) {
32001 return (void *)((wxWindow
*) ((wxControl
*) x
));
32003 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
32004 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
32006 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
32007 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
32009 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
32010 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
32012 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
32013 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
32015 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
32016 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
32018 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
32019 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32021 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
32022 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
32024 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
32025 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
32027 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
32028 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
32030 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
32031 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32033 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
32034 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
32036 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
32037 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
32039 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
32040 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
32042 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
32043 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
32045 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
32046 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
32048 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
32049 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
32051 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) {
32052 return (void *)((wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32054 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) {
32055 return (void *)((wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32057 static void *_p_wxPyPrintPreviewTo_p_wxPrintPreview(void *x
) {
32058 return (void *)((wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
32060 static void *_p_wxColourDialogTo_p_wxDialog(void *x
) {
32061 return (void *)((wxDialog
*) ((wxColourDialog
*) x
));
32063 static void *_p_wxDirDialogTo_p_wxDialog(void *x
) {
32064 return (void *)((wxDialog
*) ((wxDirDialog
*) x
));
32066 static void *_p_wxFontDialogTo_p_wxDialog(void *x
) {
32067 return (void *)((wxDialog
*) ((wxFontDialog
*) x
));
32069 static void *_p_wxFileDialogTo_p_wxDialog(void *x
) {
32070 return (void *)((wxDialog
*) ((wxFileDialog
*) x
));
32072 static void *_p_wxMultiChoiceDialogTo_p_wxDialog(void *x
) {
32073 return (void *)((wxDialog
*) ((wxMultiChoiceDialog
*) x
));
32075 static void *_p_wxSingleChoiceDialogTo_p_wxDialog(void *x
) {
32076 return (void *)((wxDialog
*) ((wxSingleChoiceDialog
*) x
));
32078 static void *_p_wxTextEntryDialogTo_p_wxDialog(void *x
) {
32079 return (void *)((wxDialog
*) ((wxTextEntryDialog
*) x
));
32081 static void *_p_wxPasswordEntryDialogTo_p_wxDialog(void *x
) {
32082 return (void *)((wxDialog
*) (wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
32084 static void *_p_wxMessageDialogTo_p_wxDialog(void *x
) {
32085 return (void *)((wxDialog
*) ((wxMessageDialog
*) x
));
32087 static void *_p_wxFindReplaceDialogTo_p_wxDialog(void *x
) {
32088 return (void *)((wxDialog
*) ((wxFindReplaceDialog
*) x
));
32090 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) {
32091 return (void *)((wxPanel
*) ((wxScrolledWindow
*) x
));
32093 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) {
32094 return (void *)((wxPanel
*) ((wxPyVScrolledWindow
*) x
));
32096 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) {
32097 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32099 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) {
32100 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
32102 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) {
32103 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
32105 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) {
32106 return (void *)((wxPanel
*) ((wxPyPanel
*) x
));
32108 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) {
32109 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32111 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) {
32112 return (void *)((wxPanel
*) ((wxPreviewControlBar
*) x
));
32114 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) {
32115 return (void *)((wxPanel
*) (wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32117 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
32118 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
32120 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
32121 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
32123 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
32124 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
32126 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
32127 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
32129 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
32130 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
32132 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
32133 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
32135 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
32136 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
32138 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
32139 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
32141 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
32142 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
32144 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
32145 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
32147 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
32148 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
32150 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
32151 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
32153 static void *_p_wxPyPreviewControlBarTo_p_wxPreviewControlBar(void *x
) {
32154 return (void *)((wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32156 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
32157 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};
32158 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
32159 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
32160 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
32161 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
32162 static swig_type_info _swigt__p_wxArrayInt
= {"_p_wxArrayInt", "wxArrayInt *", 0, 0, (void*)0, 0};
32163 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
32164 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", "wxCalculateLayoutEvent *", 0, 0, (void*)0, 0};
32165 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
32166 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", "wxColourData *", 0, 0, (void*)0, 0};
32167 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", "wxColourDialog *", 0, 0, (void*)0, 0};
32168 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
32169 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
32170 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
32171 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
32172 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
32173 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
32174 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
32175 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
32176 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
32177 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
32178 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", "wxDialog *", 0, 0, (void*)0, 0};
32179 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", "wxDirDialog *", 0, 0, (void*)0, 0};
32180 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
32181 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
32182 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
32183 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
32184 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
32185 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
32186 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
32187 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
32188 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
32189 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
32190 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
32191 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
32192 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
32193 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
32194 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
32195 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
32196 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
32197 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
32198 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
32199 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
32200 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
32201 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
32202 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
32203 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
32204 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
32205 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
32206 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
32207 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
32208 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
32209 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
32210 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
32211 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
32212 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
32213 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", "wxFileDialog *", 0, 0, (void*)0, 0};
32214 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", "wxFileSystem *", 0, 0, (void*)0, 0};
32215 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", "wxFindDialogEvent *", 0, 0, (void*)0, 0};
32216 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", "wxFindReplaceData *", 0, 0, (void*)0, 0};
32217 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", "wxFindReplaceDialog *", 0, 0, (void*)0, 0};
32218 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
32219 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", "wxFontData *", 0, 0, (void*)0, 0};
32220 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", "wxFontDialog *", 0, 0, (void*)0, 0};
32221 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
32222 static swig_type_info _swigt__p_wxHtmlLinkInfo
= {"_p_wxHtmlLinkInfo", "wxHtmlLinkInfo *", 0, 0, (void*)0, 0};
32223 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0};
32224 static swig_type_info _swigt__p_wxIconBundle
= {"_p_wxIconBundle", "wxIconBundle *", 0, 0, (void*)0, 0};
32225 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", "wxLayoutAlgorithm *", 0, 0, (void*)0, 0};
32226 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", "wxMDIChildFrame *", 0, 0, (void*)0, 0};
32227 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", "wxMDIClientWindow *", 0, 0, (void*)0, 0};
32228 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", "wxMDIParentFrame *", 0, 0, (void*)0, 0};
32229 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", "wxMenu *", 0, 0, (void*)0, 0};
32230 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", "wxMenuBar *", 0, 0, (void*)0, 0};
32231 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", "wxMessageDialog *", 0, 0, (void*)0, 0};
32232 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
32233 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", "wxMultiChoiceDialog *", 0, 0, (void*)0, 0};
32234 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
32235 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
32236 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
32237 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
32238 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
32239 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
32240 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
32241 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
32242 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
32243 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
32244 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
32245 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
32246 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
32247 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
32248 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
32249 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
32250 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
32251 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
32252 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
32253 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
32254 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
32255 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
32256 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
32257 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
32258 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
32259 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
32260 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
32261 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
32262 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
32263 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
32264 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", "wxPageSetupDialog *", 0, 0, (void*)0, 0};
32265 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", "wxPageSetupDialogData *", 0, 0, (void*)0, 0};
32266 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", "wxPanel *", 0, 0, (void*)0, 0};
32267 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
32268 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", "wxPasswordEntryDialog *", 0, 0, (void*)0, 0};
32269 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
32270 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", "wxPopupWindow *", 0, 0, (void*)0, 0};
32271 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", "wxPreviewCanvas *", 0, 0, (void*)0, 0};
32272 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", "wxPreviewControlBar *", 0, 0, (void*)0, 0};
32273 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", "wxPreviewFrame *", 0, 0, (void*)0, 0};
32274 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", "wxPrintData *", 0, 0, (void*)0, 0};
32275 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", "wxPrintDialog *", 0, 0, (void*)0, 0};
32276 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", "wxPrintDialogData *", 0, 0, (void*)0, 0};
32277 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", "wxPrintPreview *", 0, 0, (void*)0, 0};
32278 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", "wxPrinter *", 0, 0, (void*)0, 0};
32279 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", "wxProgressDialog *", 0, 0, (void*)0, 0};
32280 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", "wxPyHtmlListBox *", 0, 0, (void*)0, 0};
32281 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", "wxPyPanel *", 0, 0, (void*)0, 0};
32282 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", "wxPyPopupTransientWindow *", 0, 0, (void*)0, 0};
32283 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", "wxPyPreviewControlBar *", 0, 0, (void*)0, 0};
32284 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", "wxPyPreviewFrame *", 0, 0, (void*)0, 0};
32285 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", "wxPyPrintPreview *", 0, 0, (void*)0, 0};
32286 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", "wxPyPrintout *", 0, 0, (void*)0, 0};
32287 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", "wxPyScrolledWindow *", 0, 0, (void*)0, 0};
32288 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", "wxPyTaskBarIcon *", 0, 0, (void*)0, 0};
32289 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", "wxPyVListBox *", 0, 0, (void*)0, 0};
32290 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", "wxPyVScrolledWindow *", 0, 0, (void*)0, 0};
32291 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", "wxPyWindow *", 0, 0, (void*)0, 0};
32292 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", "wxQueryLayoutInfoEvent *", 0, 0, (void*)0, 0};
32293 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
32294 static swig_type_info _swigt__p_wxRegion
= {"_p_wxRegion", "wxRegion *", 0, 0, (void*)0, 0};
32295 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", "wxSashEvent *", 0, 0, (void*)0, 0};
32296 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", "wxSashLayoutWindow *", 0, 0, (void*)0, 0};
32297 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", "wxSashWindow *", 0, 0, (void*)0, 0};
32298 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", "wxScrollWinEvent *", 0, 0, (void*)0, 0};
32299 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", "wxScrolledWindow *", 0, 0, (void*)0, 0};
32300 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", "wxSingleChoiceDialog *", 0, 0, (void*)0, 0};
32301 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
32302 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", "wxSplashScreen *", 0, 0, (void*)0, 0};
32303 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", "wxSplashScreenWindow *", 0, 0, (void*)0, 0};
32304 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", "wxSplitterEvent *", 0, 0, (void*)0, 0};
32305 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", "wxSplitterWindow *", 0, 0, (void*)0, 0};
32306 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", "wxStatusBar *", 0, 0, (void*)0, 0};
32307 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", "wxStdDialogButtonSizer *", 0, 0, (void*)0, 0};
32308 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
32309 static swig_type_info _swigt__p_wxTaskBarIcon
= {"_p_wxTaskBarIcon", "wxTaskBarIcon *", 0, 0, (void*)0, 0};
32310 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", "wxTaskBarIconEvent *", 0, 0, (void*)0, 0};
32311 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", "wxTextEntryDialog *", 0, 0, (void*)0, 0};
32312 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", "wxTipWindow *", 0, 0, (void*)0, 0};
32313 static swig_type_info _swigt__p_wxToolBar
= {"_p_wxToolBar", "wxToolBar *", 0, 0, (void*)0, 0};
32314 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
32315 static swig_type_info _swigt__p_wxVisualAttributes
= {"_p_wxVisualAttributes", "wxVisualAttributes *", 0, 0, (void*)0, 0};
32316 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
32318 static swig_type_info
*swig_type_initial
[] = {
32320 &_swigt__p_form_ops_t
,
32322 &_swigt__p_unsigned_char
,
32323 &_swigt__p_unsigned_int
,
32324 &_swigt__p_unsigned_long
,
32325 &_swigt__p_wxANIHandler
,
32326 &_swigt__p_wxAcceleratorTable
,
32327 &_swigt__p_wxActivateEvent
,
32328 &_swigt__p_wxArrayInt
,
32329 &_swigt__p_wxBMPHandler
,
32330 &_swigt__p_wxBitmap
,
32331 &_swigt__p_wxBoxSizer
,
32332 &_swigt__p_wxCURHandler
,
32333 &_swigt__p_wxCalculateLayoutEvent
,
32334 &_swigt__p_wxChildFocusEvent
,
32335 &_swigt__p_wxCloseEvent
,
32336 &_swigt__p_wxColour
,
32337 &_swigt__p_wxColourData
,
32338 &_swigt__p_wxColourDialog
,
32339 &_swigt__p_wxCommandEvent
,
32340 &_swigt__p_wxContextMenuEvent
,
32341 &_swigt__p_wxControl
,
32342 &_swigt__p_wxControlWithItems
,
32344 &_swigt__p_wxDateEvent
,
32345 &_swigt__p_wxDialog
,
32346 &_swigt__p_wxDirDialog
,
32347 &_swigt__p_wxDisplayChangedEvent
,
32348 &_swigt__p_wxDropFilesEvent
,
32349 &_swigt__p_wxDuplexMode
,
32350 &_swigt__p_wxEraseEvent
,
32351 &_swigt__p_wxEvent
,
32352 &_swigt__p_wxEvtHandler
,
32353 &_swigt__p_wxFSFile
,
32354 &_swigt__p_wxFileDialog
,
32355 &_swigt__p_wxFileSystem
,
32356 &_swigt__p_wxFindDialogEvent
,
32357 &_swigt__p_wxFindReplaceData
,
32358 &_swigt__p_wxFindReplaceDialog
,
32359 &_swigt__p_wxFlexGridSizer
,
32360 &_swigt__p_wxFocusEvent
,
32362 &_swigt__p_wxFontData
,
32363 &_swigt__p_wxFontDialog
,
32364 &_swigt__p_wxFrame
,
32365 &_swigt__p_wxGBSizerItem
,
32366 &_swigt__p_wxGIFHandler
,
32367 &_swigt__p_wxGridBagSizer
,
32368 &_swigt__p_wxGridSizer
,
32369 &_swigt__p_wxHtmlLinkInfo
,
32370 &_swigt__p_wxICOHandler
,
32372 &_swigt__p_wxIconBundle
,
32373 &_swigt__p_wxIconizeEvent
,
32374 &_swigt__p_wxIdleEvent
,
32375 &_swigt__p_wxImage
,
32376 &_swigt__p_wxImageHandler
,
32377 &_swigt__p_wxIndividualLayoutConstraint
,
32378 &_swigt__p_wxInitDialogEvent
,
32379 &_swigt__p_wxJPEGHandler
,
32380 &_swigt__p_wxKeyEvent
,
32381 &_swigt__p_wxLayoutAlgorithm
,
32382 &_swigt__p_wxLayoutConstraints
,
32383 &_swigt__p_wxMDIChildFrame
,
32384 &_swigt__p_wxMDIClientWindow
,
32385 &_swigt__p_wxMDIParentFrame
,
32386 &_swigt__p_wxMaximizeEvent
,
32388 &_swigt__p_wxMenuBar
,
32389 &_swigt__p_wxMenuEvent
,
32390 &_swigt__p_wxMenuItem
,
32391 &_swigt__p_wxMessageDialog
,
32392 &_swigt__p_wxMiniFrame
,
32393 &_swigt__p_wxMouseCaptureChangedEvent
,
32394 &_swigt__p_wxMouseEvent
,
32395 &_swigt__p_wxMoveEvent
,
32396 &_swigt__p_wxMultiChoiceDialog
,
32397 &_swigt__p_wxNavigationKeyEvent
,
32398 &_swigt__p_wxNcPaintEvent
,
32399 &_swigt__p_wxNotifyEvent
,
32400 &_swigt__p_wxObject
,
32401 &_swigt__p_wxPCXHandler
,
32402 &_swigt__p_wxPNGHandler
,
32403 &_swigt__p_wxPNMHandler
,
32404 &_swigt__p_wxPageSetupDialog
,
32405 &_swigt__p_wxPageSetupDialogData
,
32406 &_swigt__p_wxPaintEvent
,
32407 &_swigt__p_wxPaletteChangedEvent
,
32408 &_swigt__p_wxPanel
,
32409 &_swigt__p_wxPaperSize
,
32410 &_swigt__p_wxPasswordEntryDialog
,
32411 &_swigt__p_wxPoint
,
32412 &_swigt__p_wxPopupWindow
,
32413 &_swigt__p_wxPreviewCanvas
,
32414 &_swigt__p_wxPreviewControlBar
,
32415 &_swigt__p_wxPreviewFrame
,
32416 &_swigt__p_wxPrintData
,
32417 &_swigt__p_wxPrintDialog
,
32418 &_swigt__p_wxPrintDialogData
,
32419 &_swigt__p_wxPrintPreview
,
32420 &_swigt__p_wxPrinter
,
32421 &_swigt__p_wxProgressDialog
,
32422 &_swigt__p_wxPyApp
,
32423 &_swigt__p_wxPyCommandEvent
,
32424 &_swigt__p_wxPyEvent
,
32425 &_swigt__p_wxPyHtmlListBox
,
32426 &_swigt__p_wxPyImageHandler
,
32427 &_swigt__p_wxPyPanel
,
32428 &_swigt__p_wxPyPopupTransientWindow
,
32429 &_swigt__p_wxPyPreviewControlBar
,
32430 &_swigt__p_wxPyPreviewFrame
,
32431 &_swigt__p_wxPyPrintPreview
,
32432 &_swigt__p_wxPyPrintout
,
32433 &_swigt__p_wxPyScrolledWindow
,
32434 &_swigt__p_wxPySizer
,
32435 &_swigt__p_wxPyTaskBarIcon
,
32436 &_swigt__p_wxPyVListBox
,
32437 &_swigt__p_wxPyVScrolledWindow
,
32438 &_swigt__p_wxPyValidator
,
32439 &_swigt__p_wxPyWindow
,
32440 &_swigt__p_wxQueryLayoutInfoEvent
,
32441 &_swigt__p_wxQueryNewPaletteEvent
,
32443 &_swigt__p_wxRegion
,
32444 &_swigt__p_wxSashEvent
,
32445 &_swigt__p_wxSashLayoutWindow
,
32446 &_swigt__p_wxSashWindow
,
32447 &_swigt__p_wxScrollEvent
,
32448 &_swigt__p_wxScrollWinEvent
,
32449 &_swigt__p_wxScrolledWindow
,
32450 &_swigt__p_wxSetCursorEvent
,
32451 &_swigt__p_wxShowEvent
,
32452 &_swigt__p_wxSingleChoiceDialog
,
32454 &_swigt__p_wxSizeEvent
,
32455 &_swigt__p_wxSizer
,
32456 &_swigt__p_wxSizerItem
,
32457 &_swigt__p_wxSplashScreen
,
32458 &_swigt__p_wxSplashScreenWindow
,
32459 &_swigt__p_wxSplitterEvent
,
32460 &_swigt__p_wxSplitterWindow
,
32461 &_swigt__p_wxStaticBoxSizer
,
32462 &_swigt__p_wxStatusBar
,
32463 &_swigt__p_wxStdDialogButtonSizer
,
32464 &_swigt__p_wxString
,
32465 &_swigt__p_wxSysColourChangedEvent
,
32466 &_swigt__p_wxTIFFHandler
,
32467 &_swigt__p_wxTaskBarIcon
,
32468 &_swigt__p_wxTaskBarIconEvent
,
32469 &_swigt__p_wxTextEntryDialog
,
32470 &_swigt__p_wxTipWindow
,
32471 &_swigt__p_wxToolBar
,
32472 &_swigt__p_wxTopLevelWindow
,
32473 &_swigt__p_wxUpdateUIEvent
,
32474 &_swigt__p_wxValidator
,
32475 &_swigt__p_wxVisualAttributes
,
32476 &_swigt__p_wxWindow
,
32477 &_swigt__p_wxWindowCreateEvent
,
32478 &_swigt__p_wxWindowDestroyEvent
,
32479 &_swigt__p_wxXPMHandler
,
32482 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
32483 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
32484 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
32485 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
32486 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
32487 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
32488 static swig_cast_info _swigc__p_wxArrayInt
[] = { {&_swigt__p_wxArrayInt
, 0, 0, 0},{0, 0, 0, 0}};
32489 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
32490 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = { {&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
32491 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
32492 static swig_cast_info _swigc__p_wxColourData
[] = { {&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
32493 static swig_cast_info _swigc__p_wxColourDialog
[] = { {&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
32494 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
32495 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
32496 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32497 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32498 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
32499 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32500 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
32501 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
32502 static swig_cast_info _swigc__p_wxCommandEvent
[] = { {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, 0, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}};
32503 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
32504 static swig_cast_info _swigc__p_wxDialog
[] = { {&_swigt__p_wxDialog
, 0, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxDialog
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxDialog
, 0, 0},{0, 0, 0, 0}};
32505 static swig_cast_info _swigc__p_wxDirDialog
[] = { {&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
32506 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
32507 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
32508 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32509 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32510 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32511 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
32512 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
32513 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32514 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
32515 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
32516 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32517 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32518 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32519 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32520 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
32521 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
32522 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
32523 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32524 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32525 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32526 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32527 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
32528 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
32529 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
32530 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32531 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32532 static swig_cast_info _swigc__p_wxEvent
[] = { {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEvent
, 0, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}};
32533 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
32534 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
32535 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
32536 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
32537 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
32538 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
32539 static swig_cast_info _swigc__p_wxFileDialog
[] = { {&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
32540 static swig_cast_info _swigc__p_wxFileSystem
[] = { {&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
32541 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = { {&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
32542 static swig_cast_info _swigc__p_wxFindReplaceData
[] = { {&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
32543 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = { {&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32544 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
32545 static swig_cast_info _swigc__p_wxFontData
[] = { {&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
32546 static swig_cast_info _swigc__p_wxFontDialog
[] = { {&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
32547 static swig_cast_info _swigc__p_wxFrame
[] = { {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxFrame
, 0, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxFrame
, 0, 0},{0, 0, 0, 0}};
32548 static swig_cast_info _swigc__p_wxHtmlLinkInfo
[] = { {&_swigt__p_wxHtmlLinkInfo
, 0, 0, 0},{0, 0, 0, 0}};
32549 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
32550 static swig_cast_info _swigc__p_wxIconBundle
[] = { {&_swigt__p_wxIconBundle
, 0, 0, 0},{0, 0, 0, 0}};
32551 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = { {&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
32552 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = { {&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
32553 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = { {&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
32554 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = { {&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
32555 static swig_cast_info _swigc__p_wxMenu
[] = { {&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
32556 static swig_cast_info _swigc__p_wxMenuBar
[] = { {&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
32557 static swig_cast_info _swigc__p_wxMessageDialog
[] = { {&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
32558 static swig_cast_info _swigc__p_wxMiniFrame
[] = { {&_swigt__p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
32559 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = { {&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32560 static swig_cast_info _swigc__p_wxNotifyEvent
[] = { {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32561 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
32562 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
32563 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
32564 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
32565 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32566 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32567 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32568 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
32569 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
32570 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
32571 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
32572 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
32573 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
32574 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
32575 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
32576 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
32577 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
32578 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
32579 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
32580 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
32581 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
32582 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
32583 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
32584 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
32585 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
32586 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
32587 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
32588 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
32589 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontData
, _p_wxFontDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintData
, _p_wxPrintDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutAlgorithm
, _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceData
, _p_wxFindReplaceDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrinter
, _p_wxPrinterTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_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_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintout
, _p_wxPyPrintoutTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_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_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialogData
, _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialogData
, _p_wxPrintDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
32590 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = { {&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
32591 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = { {&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
32592 static swig_cast_info _swigc__p_wxPanel
[] = { {&_swigt__p_wxPanel
, 0, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxPanel
, 0, 0},{0, 0, 0, 0}};
32593 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
32594 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = { {&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
32595 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
32596 static swig_cast_info _swigc__p_wxPopupWindow
[] = { {&_swigt__p_wxPopupWindow
, 0, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxPopupWindow
, 0, 0},{0, 0, 0, 0}};
32597 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = { {&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
32598 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = { {&_swigt__p_wxPreviewControlBar
, 0, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxPreviewControlBar
, 0, 0},{0, 0, 0, 0}};
32599 static swig_cast_info _swigc__p_wxPreviewFrame
[] = { {&_swigt__p_wxPreviewFrame
, 0, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxPreviewFrame
, 0, 0},{0, 0, 0, 0}};
32600 static swig_cast_info _swigc__p_wxPrintData
[] = { {&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
32601 static swig_cast_info _swigc__p_wxPrintDialog
[] = { {&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
32602 static swig_cast_info _swigc__p_wxPrintDialogData
[] = { {&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
32603 static swig_cast_info _swigc__p_wxPrintPreview
[] = { {&_swigt__p_wxPrintPreview
, 0, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxPrintPreview
, 0, 0},{0, 0, 0, 0}};
32604 static swig_cast_info _swigc__p_wxPrinter
[] = { {&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
32605 static swig_cast_info _swigc__p_wxProgressDialog
[] = { {&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
32606 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = { {&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
32607 static swig_cast_info _swigc__p_wxPyPanel
[] = { {&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
32608 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = { {&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
32609 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = { {&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
32610 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = { {&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
32611 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = { {&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
32612 static swig_cast_info _swigc__p_wxPyPrintout
[] = { {&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
32613 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = { {&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
32614 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = { {&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
32615 static swig_cast_info _swigc__p_wxPyVListBox
[] = { {&_swigt__p_wxPyVListBox
, 0, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxPyVListBox
, 0, 0},{0, 0, 0, 0}};
32616 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = { {&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxPyVScrolledWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxPyVScrolledWindow
, 0, 0},{0, 0, 0, 0}};
32617 static swig_cast_info _swigc__p_wxPyWindow
[] = { {&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
32618 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = { {&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
32619 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
32620 static swig_cast_info _swigc__p_wxRegion
[] = { {&_swigt__p_wxRegion
, 0, 0, 0},{0, 0, 0, 0}};
32621 static swig_cast_info _swigc__p_wxSashEvent
[] = { {&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
32622 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = { {&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
32623 static swig_cast_info _swigc__p_wxSashWindow
[] = { {&_swigt__p_wxSashWindow
, 0, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxSashWindow
, 0, 0},{0, 0, 0, 0}};
32624 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = { {&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
32625 static swig_cast_info _swigc__p_wxScrolledWindow
[] = { {&_swigt__p_wxScrolledWindow
, 0, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxScrolledWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxScrolledWindow
, 0, 0},{0, 0, 0, 0}};
32626 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = { {&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32627 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
32628 static swig_cast_info _swigc__p_wxSplashScreen
[] = { {&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
32629 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = { {&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
32630 static swig_cast_info _swigc__p_wxSplitterEvent
[] = { {&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
32631 static swig_cast_info _swigc__p_wxSplitterWindow
[] = { {&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
32632 static swig_cast_info _swigc__p_wxStatusBar
[] = { {&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
32633 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = { {&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
32634 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
32635 static swig_cast_info _swigc__p_wxTaskBarIcon
[] = { {&_swigt__p_wxTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
32636 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = { {&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
32637 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = { {&_swigt__p_wxTextEntryDialog
, 0, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTextEntryDialog
, 0, 0},{0, 0, 0, 0}};
32638 static swig_cast_info _swigc__p_wxTipWindow
[] = { {&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
32639 static swig_cast_info _swigc__p_wxToolBar
[] = { {&_swigt__p_wxToolBar
, 0, 0, 0},{0, 0, 0, 0}};
32640 static swig_cast_info _swigc__p_wxTopLevelWindow
[] = { {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},{0, 0, 0, 0}};
32641 static swig_cast_info _swigc__p_wxVisualAttributes
[] = { {&_swigt__p_wxVisualAttributes
, 0, 0, 0},{0, 0, 0, 0}};
32642 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
32644 static swig_cast_info
*swig_cast_initial
[] = {
32646 _swigc__p_form_ops_t
,
32648 _swigc__p_unsigned_char
,
32649 _swigc__p_unsigned_int
,
32650 _swigc__p_unsigned_long
,
32651 _swigc__p_wxANIHandler
,
32652 _swigc__p_wxAcceleratorTable
,
32653 _swigc__p_wxActivateEvent
,
32654 _swigc__p_wxArrayInt
,
32655 _swigc__p_wxBMPHandler
,
32656 _swigc__p_wxBitmap
,
32657 _swigc__p_wxBoxSizer
,
32658 _swigc__p_wxCURHandler
,
32659 _swigc__p_wxCalculateLayoutEvent
,
32660 _swigc__p_wxChildFocusEvent
,
32661 _swigc__p_wxCloseEvent
,
32662 _swigc__p_wxColour
,
32663 _swigc__p_wxColourData
,
32664 _swigc__p_wxColourDialog
,
32665 _swigc__p_wxCommandEvent
,
32666 _swigc__p_wxContextMenuEvent
,
32667 _swigc__p_wxControl
,
32668 _swigc__p_wxControlWithItems
,
32670 _swigc__p_wxDateEvent
,
32671 _swigc__p_wxDialog
,
32672 _swigc__p_wxDirDialog
,
32673 _swigc__p_wxDisplayChangedEvent
,
32674 _swigc__p_wxDropFilesEvent
,
32675 _swigc__p_wxDuplexMode
,
32676 _swigc__p_wxEraseEvent
,
32678 _swigc__p_wxEvtHandler
,
32679 _swigc__p_wxFSFile
,
32680 _swigc__p_wxFileDialog
,
32681 _swigc__p_wxFileSystem
,
32682 _swigc__p_wxFindDialogEvent
,
32683 _swigc__p_wxFindReplaceData
,
32684 _swigc__p_wxFindReplaceDialog
,
32685 _swigc__p_wxFlexGridSizer
,
32686 _swigc__p_wxFocusEvent
,
32688 _swigc__p_wxFontData
,
32689 _swigc__p_wxFontDialog
,
32691 _swigc__p_wxGBSizerItem
,
32692 _swigc__p_wxGIFHandler
,
32693 _swigc__p_wxGridBagSizer
,
32694 _swigc__p_wxGridSizer
,
32695 _swigc__p_wxHtmlLinkInfo
,
32696 _swigc__p_wxICOHandler
,
32698 _swigc__p_wxIconBundle
,
32699 _swigc__p_wxIconizeEvent
,
32700 _swigc__p_wxIdleEvent
,
32702 _swigc__p_wxImageHandler
,
32703 _swigc__p_wxIndividualLayoutConstraint
,
32704 _swigc__p_wxInitDialogEvent
,
32705 _swigc__p_wxJPEGHandler
,
32706 _swigc__p_wxKeyEvent
,
32707 _swigc__p_wxLayoutAlgorithm
,
32708 _swigc__p_wxLayoutConstraints
,
32709 _swigc__p_wxMDIChildFrame
,
32710 _swigc__p_wxMDIClientWindow
,
32711 _swigc__p_wxMDIParentFrame
,
32712 _swigc__p_wxMaximizeEvent
,
32714 _swigc__p_wxMenuBar
,
32715 _swigc__p_wxMenuEvent
,
32716 _swigc__p_wxMenuItem
,
32717 _swigc__p_wxMessageDialog
,
32718 _swigc__p_wxMiniFrame
,
32719 _swigc__p_wxMouseCaptureChangedEvent
,
32720 _swigc__p_wxMouseEvent
,
32721 _swigc__p_wxMoveEvent
,
32722 _swigc__p_wxMultiChoiceDialog
,
32723 _swigc__p_wxNavigationKeyEvent
,
32724 _swigc__p_wxNcPaintEvent
,
32725 _swigc__p_wxNotifyEvent
,
32726 _swigc__p_wxObject
,
32727 _swigc__p_wxPCXHandler
,
32728 _swigc__p_wxPNGHandler
,
32729 _swigc__p_wxPNMHandler
,
32730 _swigc__p_wxPageSetupDialog
,
32731 _swigc__p_wxPageSetupDialogData
,
32732 _swigc__p_wxPaintEvent
,
32733 _swigc__p_wxPaletteChangedEvent
,
32735 _swigc__p_wxPaperSize
,
32736 _swigc__p_wxPasswordEntryDialog
,
32738 _swigc__p_wxPopupWindow
,
32739 _swigc__p_wxPreviewCanvas
,
32740 _swigc__p_wxPreviewControlBar
,
32741 _swigc__p_wxPreviewFrame
,
32742 _swigc__p_wxPrintData
,
32743 _swigc__p_wxPrintDialog
,
32744 _swigc__p_wxPrintDialogData
,
32745 _swigc__p_wxPrintPreview
,
32746 _swigc__p_wxPrinter
,
32747 _swigc__p_wxProgressDialog
,
32749 _swigc__p_wxPyCommandEvent
,
32750 _swigc__p_wxPyEvent
,
32751 _swigc__p_wxPyHtmlListBox
,
32752 _swigc__p_wxPyImageHandler
,
32753 _swigc__p_wxPyPanel
,
32754 _swigc__p_wxPyPopupTransientWindow
,
32755 _swigc__p_wxPyPreviewControlBar
,
32756 _swigc__p_wxPyPreviewFrame
,
32757 _swigc__p_wxPyPrintPreview
,
32758 _swigc__p_wxPyPrintout
,
32759 _swigc__p_wxPyScrolledWindow
,
32760 _swigc__p_wxPySizer
,
32761 _swigc__p_wxPyTaskBarIcon
,
32762 _swigc__p_wxPyVListBox
,
32763 _swigc__p_wxPyVScrolledWindow
,
32764 _swigc__p_wxPyValidator
,
32765 _swigc__p_wxPyWindow
,
32766 _swigc__p_wxQueryLayoutInfoEvent
,
32767 _swigc__p_wxQueryNewPaletteEvent
,
32769 _swigc__p_wxRegion
,
32770 _swigc__p_wxSashEvent
,
32771 _swigc__p_wxSashLayoutWindow
,
32772 _swigc__p_wxSashWindow
,
32773 _swigc__p_wxScrollEvent
,
32774 _swigc__p_wxScrollWinEvent
,
32775 _swigc__p_wxScrolledWindow
,
32776 _swigc__p_wxSetCursorEvent
,
32777 _swigc__p_wxShowEvent
,
32778 _swigc__p_wxSingleChoiceDialog
,
32780 _swigc__p_wxSizeEvent
,
32782 _swigc__p_wxSizerItem
,
32783 _swigc__p_wxSplashScreen
,
32784 _swigc__p_wxSplashScreenWindow
,
32785 _swigc__p_wxSplitterEvent
,
32786 _swigc__p_wxSplitterWindow
,
32787 _swigc__p_wxStaticBoxSizer
,
32788 _swigc__p_wxStatusBar
,
32789 _swigc__p_wxStdDialogButtonSizer
,
32790 _swigc__p_wxString
,
32791 _swigc__p_wxSysColourChangedEvent
,
32792 _swigc__p_wxTIFFHandler
,
32793 _swigc__p_wxTaskBarIcon
,
32794 _swigc__p_wxTaskBarIconEvent
,
32795 _swigc__p_wxTextEntryDialog
,
32796 _swigc__p_wxTipWindow
,
32797 _swigc__p_wxToolBar
,
32798 _swigc__p_wxTopLevelWindow
,
32799 _swigc__p_wxUpdateUIEvent
,
32800 _swigc__p_wxValidator
,
32801 _swigc__p_wxVisualAttributes
,
32802 _swigc__p_wxWindow
,
32803 _swigc__p_wxWindowCreateEvent
,
32804 _swigc__p_wxWindowDestroyEvent
,
32805 _swigc__p_wxXPMHandler
,
32809 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
32811 static swig_const_info swig_const_table
[] = {
32812 {0, 0, 0, 0.0, 0, 0}};
32817 /* -----------------------------------------------------------------------------
32818 * Type initialization:
32819 * This problem is tough by the requirement that no dynamic
32820 * memory is used. Also, since swig_type_info structures store pointers to
32821 * swig_cast_info structures and swig_cast_info structures store pointers back
32822 * to swig_type_info structures, we need some lookup code at initialization.
32823 * The idea is that swig generates all the structures that are needed.
32824 * The runtime then collects these partially filled structures.
32825 * The SWIG_InitializeModule function takes these initial arrays out of
32826 * swig_module, and does all the lookup, filling in the swig_module.types
32827 * array with the correct data and linking the correct swig_cast_info
32828 * structures together.
32830 * The generated swig_type_info structures are assigned staticly to an initial
32831 * array. We just loop though that array, and handle each type individually.
32832 * First we lookup if this type has been already loaded, and if so, use the
32833 * loaded structure instead of the generated one. Then we have to fill in the
32834 * cast linked list. The cast data is initially stored in something like a
32835 * two-dimensional array. Each row corresponds to a type (there are the same
32836 * number of rows as there are in the swig_type_initial array). Each entry in
32837 * a column is one of the swig_cast_info structures for that type.
32838 * The cast_initial array is actually an array of arrays, because each row has
32839 * a variable number of columns. So to actually build the cast linked list,
32840 * we find the array of casts associated with the type, and loop through it
32841 * adding the casts to the list. The one last trick we need to do is making
32842 * sure the type pointer in the swig_cast_info struct is correct.
32844 * First off, we lookup the cast->type name to see if it is already loaded.
32845 * There are three cases to handle:
32846 * 1) If the cast->type has already been loaded AND the type we are adding
32847 * casting info to has not been loaded (it is in this module), THEN we
32848 * replace the cast->type pointer with the type pointer that has already
32850 * 2) If BOTH types (the one we are adding casting info to, and the
32851 * cast->type) are loaded, THEN the cast info has already been loaded by
32852 * the previous module so we just ignore it.
32853 * 3) Finally, if cast->type has not already been loaded, then we add that
32854 * swig_cast_info to the linked list (because the cast->type) pointer will
32856 * ----------------------------------------------------------------------------- */
32866 #define SWIGRUNTIME_DEBUG
32870 SWIG_InitializeModule(void *clientdata
) {
32872 swig_module_info
*module_head
;
32873 static int init_run
= 0;
32875 clientdata
= clientdata
;
32877 if (init_run
) return;
32880 /* Initialize the swig_module */
32881 swig_module
.type_initial
= swig_type_initial
;
32882 swig_module
.cast_initial
= swig_cast_initial
;
32884 /* Try and load any already created modules */
32885 module_head
= SWIG_GetModule(clientdata
);
32887 swig_module
.next
= module_head
->next
;
32888 module_head
->next
= &swig_module
;
32890 /* This is the first module loaded */
32891 swig_module
.next
= &swig_module
;
32892 SWIG_SetModule(clientdata
, &swig_module
);
32895 /* Now work on filling in swig_module.types */
32896 #ifdef SWIGRUNTIME_DEBUG
32897 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
32899 for (i
= 0; i
< swig_module
.size
; ++i
) {
32900 swig_type_info
*type
= 0;
32901 swig_type_info
*ret
;
32902 swig_cast_info
*cast
;
32904 #ifdef SWIGRUNTIME_DEBUG
32905 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
32908 /* if there is another module already loaded */
32909 if (swig_module
.next
!= &swig_module
) {
32910 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
32913 /* Overwrite clientdata field */
32914 #ifdef SWIGRUNTIME_DEBUG
32915 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
32917 if (swig_module
.type_initial
[i
]->clientdata
) {
32918 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
32919 #ifdef SWIGRUNTIME_DEBUG
32920 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
32924 type
= swig_module
.type_initial
[i
];
32927 /* Insert casting types */
32928 cast
= swig_module
.cast_initial
[i
];
32929 while (cast
->type
) {
32930 /* Don't need to add information already in the list */
32932 #ifdef SWIGRUNTIME_DEBUG
32933 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
32935 if (swig_module
.next
!= &swig_module
) {
32936 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
32937 #ifdef SWIGRUNTIME_DEBUG
32938 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
32942 if (type
== swig_module
.type_initial
[i
]) {
32943 #ifdef SWIGRUNTIME_DEBUG
32944 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
32949 /* Check for casting already in the list */
32950 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
32951 #ifdef SWIGRUNTIME_DEBUG
32952 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
32954 if (!ocast
) ret
= 0;
32959 #ifdef SWIGRUNTIME_DEBUG
32960 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
32963 type
->cast
->prev
= cast
;
32964 cast
->next
= type
->cast
;
32970 /* Set entry in modules->types array equal to the type */
32971 swig_module
.types
[i
] = type
;
32973 swig_module
.types
[i
] = 0;
32975 #ifdef SWIGRUNTIME_DEBUG
32976 printf("**** SWIG_InitializeModule: Cast List ******\n");
32977 for (i
= 0; i
< swig_module
.size
; ++i
) {
32979 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
32980 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
32981 while (cast
->type
) {
32982 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
32986 printf("---- Total casts: %d\n",j
);
32988 printf("**** SWIG_InitializeModule: Cast List ******\n");
32992 /* This function will propagate the clientdata field of type to
32993 * any new swig_type_info structures that have been added into the list
32994 * of equivalent types. It is like calling
32995 * SWIG_TypeClientData(type, clientdata) a second time.
32998 SWIG_PropagateClientData(void) {
33000 swig_cast_info
*equiv
;
33001 static int init_run
= 0;
33003 if (init_run
) return;
33006 for (i
= 0; i
< swig_module
.size
; i
++) {
33007 if (swig_module
.types
[i
]->clientdata
) {
33008 equiv
= swig_module
.types
[i
]->cast
;
33010 if (!equiv
->converter
) {
33011 if (equiv
->type
&& !equiv
->type
->clientdata
)
33012 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
33014 equiv
= equiv
->next
;
33034 /* Python-specific SWIG API */
33035 #define SWIG_newvarlink() SWIG_Python_newvarlink()
33036 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
33037 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
33039 /* -----------------------------------------------------------------------------
33040 * global variable support code.
33041 * ----------------------------------------------------------------------------- */
33043 typedef struct swig_globalvar
{
33044 char *name
; /* Name of global variable */
33045 PyObject
*(*get_attr
)(void); /* Return the current value */
33046 int (*set_attr
)(PyObject
*); /* Set the value */
33047 struct swig_globalvar
*next
;
33050 typedef struct swig_varlinkobject
{
33052 swig_globalvar
*vars
;
33053 } swig_varlinkobject
;
33055 SWIGINTERN PyObject
*
33056 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
33057 return PyString_FromString("<Swig global variables>");
33060 SWIGINTERN PyObject
*
33061 swig_varlink_str(swig_varlinkobject
*v
) {
33062 PyObject
*str
= PyString_FromString("(");
33063 swig_globalvar
*var
;
33064 for (var
= v
->vars
; var
; var
=var
->next
) {
33065 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
33066 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
33068 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
33073 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
33074 PyObject
*str
= swig_varlink_str(v
);
33075 fprintf(fp
,"Swig global variables ");
33076 fprintf(fp
,"%s\n", PyString_AsString(str
));
33082 swig_varlink_dealloc(swig_varlinkobject
*v
) {
33083 swig_globalvar
*var
= v
->vars
;
33085 swig_globalvar
*n
= var
->next
;
33092 SWIGINTERN PyObject
*
33093 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
33094 PyObject
*res
= NULL
;
33095 swig_globalvar
*var
= v
->vars
;
33097 if (strcmp(var
->name
,n
) == 0) {
33098 res
= (*var
->get_attr
)();
33103 if (res
== NULL
&& !PyErr_Occurred()) {
33104 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
33110 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
33112 swig_globalvar
*var
= v
->vars
;
33114 if (strcmp(var
->name
,n
) == 0) {
33115 res
= (*var
->set_attr
)(p
);
33120 if (res
== 1 && !PyErr_Occurred()) {
33121 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
33126 SWIGINTERN PyTypeObject
*
33127 swig_varlink_type(void) {
33128 static char varlink__doc__
[] = "Swig var link object";
33129 static PyTypeObject varlink_type
;
33130 static int type_init
= 0;
33132 const PyTypeObject tmp
33134 PyObject_HEAD_INIT(NULL
)
33135 0, /* Number of items in variable part (ob_size) */
33136 (char *)"swigvarlink", /* Type name (tp_name) */
33137 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
33138 0, /* Itemsize (tp_itemsize) */
33139 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
33140 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
33141 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
33142 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
33143 0, /* tp_compare */
33144 (reprfunc
) swig_varlink_repr
, /* tp_repr */
33145 0, /* tp_as_number */
33146 0, /* tp_as_sequence */
33147 0, /* tp_as_mapping */
33150 (reprfunc
)swig_varlink_str
, /* tp_str */
33151 0, /* tp_getattro */
33152 0, /* tp_setattro */
33153 0, /* tp_as_buffer */
33155 varlink__doc__
, /* tp_doc */
33156 0, /* tp_traverse */
33158 0, /* tp_richcompare */
33159 0, /* tp_weaklistoffset */
33160 #if PY_VERSION_HEX >= 0x02020000
33161 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
33163 #if PY_VERSION_HEX >= 0x02030000
33166 #ifdef COUNT_ALLOCS
33167 0,0,0,0 /* tp_alloc -> tp_next */
33170 varlink_type
= tmp
;
33171 varlink_type
.ob_type
= &PyType_Type
;
33174 return &varlink_type
;
33177 /* Create a variable linking object for use later */
33178 SWIGINTERN PyObject
*
33179 SWIG_Python_newvarlink(void) {
33180 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
33184 return ((PyObject
*) result
);
33188 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
33189 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
33190 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
33192 size_t size
= strlen(name
)+1;
33193 gv
->name
= (char *)malloc(size
);
33195 strncpy(gv
->name
,name
,size
);
33196 gv
->get_attr
= get_attr
;
33197 gv
->set_attr
= set_attr
;
33198 gv
->next
= v
->vars
;
33204 SWIGINTERN PyObject
*
33206 static PyObject
*_SWIG_globals
= 0;
33207 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
33208 return _SWIG_globals
;
33211 /* -----------------------------------------------------------------------------
33212 * constants/methods manipulation
33213 * ----------------------------------------------------------------------------- */
33215 /* Install Constants */
33217 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
33220 for (i
= 0; constants
[i
].type
; ++i
) {
33221 switch(constants
[i
].type
) {
33222 case SWIG_PY_POINTER
:
33223 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
33225 case SWIG_PY_BINARY
:
33226 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
33233 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
33239 /* -----------------------------------------------------------------------------*/
33240 /* Fix SwigMethods to carry the callback ptrs when needed */
33241 /* -----------------------------------------------------------------------------*/
33244 SWIG_Python_FixMethods(PyMethodDef
*methods
,
33245 swig_const_info
*const_table
,
33246 swig_type_info
**types
,
33247 swig_type_info
**types_initial
) {
33249 for (i
= 0; methods
[i
].ml_name
; ++i
) {
33250 char *c
= methods
[i
].ml_doc
;
33251 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
33253 swig_const_info
*ci
= 0;
33254 char *name
= c
+ 10;
33255 for (j
= 0; const_table
[j
].type
; ++j
) {
33256 if (strncmp(const_table
[j
].name
, name
,
33257 strlen(const_table
[j
].name
)) == 0) {
33258 ci
= &(const_table
[j
]);
33263 size_t shift
= (ci
->ptype
) - types
;
33264 swig_type_info
*ty
= types_initial
[shift
];
33265 size_t ldoc
= (c
- methods
[i
].ml_doc
);
33266 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
33267 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
33270 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
33272 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
33274 strncpy(buff
, "swig_ptr: ", 10);
33276 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
33277 methods
[i
].ml_doc
= ndoc
;
33289 /* -----------------------------------------------------------------------------*
33290 * Partial Init method
33291 * -----------------------------------------------------------------------------*/
33296 SWIGEXPORT
void SWIG_init(void) {
33299 /* Fix SwigMethods to carry the callback ptrs when needed */
33300 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
33302 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
33303 d
= PyModule_GetDict(m
);
33305 SWIG_InitializeModule(0);
33306 SWIG_InstallConstants(d
,swig_const_table
);
33309 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
33310 SWIG_addvarlink(SWIG_globals(),(char*)"FrameNameStr",FrameNameStr_get
, FrameNameStr_set
);
33311 SWIG_addvarlink(SWIG_globals(),(char*)"DialogNameStr",DialogNameStr_get
, DialogNameStr_set
);
33312 SWIG_addvarlink(SWIG_globals(),(char*)"StatusLineNameStr",StatusLineNameStr_get
, StatusLineNameStr_set
);
33313 SWIG_addvarlink(SWIG_globals(),(char*)"ToolBarNameStr",ToolBarNameStr_get
, ToolBarNameStr_set
);
33314 SWIG_Python_SetConstant(d
, "STAY_ON_TOP",SWIG_From_int(static_cast< int >(wxSTAY_ON_TOP
)));
33315 SWIG_Python_SetConstant(d
, "ICONIZE",SWIG_From_int(static_cast< int >(wxICONIZE
)));
33316 SWIG_Python_SetConstant(d
, "MINIMIZE",SWIG_From_int(static_cast< int >(wxMINIMIZE
)));
33317 SWIG_Python_SetConstant(d
, "MAXIMIZE",SWIG_From_int(static_cast< int >(wxMAXIMIZE
)));
33318 SWIG_Python_SetConstant(d
, "CLOSE_BOX",SWIG_From_int(static_cast< int >(wxCLOSE_BOX
)));
33319 SWIG_Python_SetConstant(d
, "THICK_FRAME",SWIG_From_int(static_cast< int >(wxTHICK_FRAME
)));
33320 SWIG_Python_SetConstant(d
, "SYSTEM_MENU",SWIG_From_int(static_cast< int >(wxSYSTEM_MENU
)));
33321 SWIG_Python_SetConstant(d
, "MINIMIZE_BOX",SWIG_From_int(static_cast< int >(wxMINIMIZE_BOX
)));
33322 SWIG_Python_SetConstant(d
, "MAXIMIZE_BOX",SWIG_From_int(static_cast< int >(wxMAXIMIZE_BOX
)));
33323 SWIG_Python_SetConstant(d
, "TINY_CAPTION_HORIZ",SWIG_From_int(static_cast< int >(wxTINY_CAPTION_HORIZ
)));
33324 SWIG_Python_SetConstant(d
, "TINY_CAPTION_VERT",SWIG_From_int(static_cast< int >(wxTINY_CAPTION_VERT
)));
33325 SWIG_Python_SetConstant(d
, "RESIZE_BOX",SWIG_From_int(static_cast< int >(wxRESIZE_BOX
)));
33326 SWIG_Python_SetConstant(d
, "RESIZE_BORDER",SWIG_From_int(static_cast< int >(wxRESIZE_BORDER
)));
33327 SWIG_Python_SetConstant(d
, "DIALOG_NO_PARENT",SWIG_From_int(static_cast< int >(wxDIALOG_NO_PARENT
)));
33328 SWIG_Python_SetConstant(d
, "DEFAULT_FRAME_STYLE",SWIG_From_int(static_cast< int >(wxDEFAULT_FRAME_STYLE
)));
33329 SWIG_Python_SetConstant(d
, "DEFAULT_DIALOG_STYLE",SWIG_From_int(static_cast< int >(wxDEFAULT_DIALOG_STYLE
)));
33330 SWIG_Python_SetConstant(d
, "FRAME_TOOL_WINDOW",SWIG_From_int(static_cast< int >(wxFRAME_TOOL_WINDOW
)));
33331 SWIG_Python_SetConstant(d
, "FRAME_FLOAT_ON_PARENT",SWIG_From_int(static_cast< int >(wxFRAME_FLOAT_ON_PARENT
)));
33332 SWIG_Python_SetConstant(d
, "FRAME_NO_WINDOW_MENU",SWIG_From_int(static_cast< int >(wxFRAME_NO_WINDOW_MENU
)));
33333 SWIG_Python_SetConstant(d
, "FRAME_NO_TASKBAR",SWIG_From_int(static_cast< int >(wxFRAME_NO_TASKBAR
)));
33334 SWIG_Python_SetConstant(d
, "FRAME_SHAPED",SWIG_From_int(static_cast< int >(wxFRAME_SHAPED
)));
33335 SWIG_Python_SetConstant(d
, "FRAME_DRAWER",SWIG_From_int(static_cast< int >(wxFRAME_DRAWER
)));
33336 SWIG_Python_SetConstant(d
, "FRAME_EX_METAL",SWIG_From_int(static_cast< int >(wxFRAME_EX_METAL
)));
33337 SWIG_Python_SetConstant(d
, "DIALOG_EX_METAL",SWIG_From_int(static_cast< int >(wxDIALOG_EX_METAL
)));
33338 SWIG_Python_SetConstant(d
, "DIALOG_MODAL",SWIG_From_int(static_cast< int >(wxDIALOG_MODAL
)));
33339 SWIG_Python_SetConstant(d
, "DIALOG_MODELESS",SWIG_From_int(static_cast< int >(wxDIALOG_MODELESS
)));
33340 SWIG_Python_SetConstant(d
, "USER_COLOURS",SWIG_From_int(static_cast< int >(wxUSER_COLOURS
)));
33341 SWIG_Python_SetConstant(d
, "NO_3D",SWIG_From_int(static_cast< int >(wxNO_3D
)));
33342 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOMENUBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOMENUBAR
)));
33343 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOTOOLBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOTOOLBAR
)));
33344 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOSTATUSBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOSTATUSBAR
)));
33345 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOBORDER",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOBORDER
)));
33346 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOCAPTION",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOCAPTION
)));
33347 SWIG_Python_SetConstant(d
, "FULLSCREEN_ALL",SWIG_From_int(static_cast< int >(wxFULLSCREEN_ALL
)));
33348 SWIG_Python_SetConstant(d
, "TOPLEVEL_EX_DIALOG",SWIG_From_int(static_cast< int >(wxTOPLEVEL_EX_DIALOG
)));
33349 SWIG_Python_SetConstant(d
, "USER_ATTENTION_INFO",SWIG_From_int(static_cast< int >(wxUSER_ATTENTION_INFO
)));
33350 SWIG_Python_SetConstant(d
, "USER_ATTENTION_ERROR",SWIG_From_int(static_cast< int >(wxUSER_ATTENTION_ERROR
)));
33351 SWIG_Python_SetConstant(d
, "Dialog_ButtonSizerFlags",SWIG_From_int(static_cast< int >(wxDialog::ButtonSizerFlags
)));
33352 SWIG_Python_SetConstant(d
, "SPLASH_CENTRE_ON_PARENT",SWIG_From_int(static_cast< int >(wxSPLASH_CENTRE_ON_PARENT
)));
33353 SWIG_Python_SetConstant(d
, "SPLASH_CENTRE_ON_SCREEN",SWIG_From_int(static_cast< int >(wxSPLASH_CENTRE_ON_SCREEN
)));
33354 SWIG_Python_SetConstant(d
, "SPLASH_NO_CENTRE",SWIG_From_int(static_cast< int >(wxSPLASH_NO_CENTRE
)));
33355 SWIG_Python_SetConstant(d
, "SPLASH_TIMEOUT",SWIG_From_int(static_cast< int >(wxSPLASH_TIMEOUT
)));
33356 SWIG_Python_SetConstant(d
, "SPLASH_NO_TIMEOUT",SWIG_From_int(static_cast< int >(wxSPLASH_NO_TIMEOUT
)));
33357 SWIG_Python_SetConstant(d
, "SB_NORMAL",SWIG_From_int(static_cast< int >(wxSB_NORMAL
)));
33358 SWIG_Python_SetConstant(d
, "SB_FLAT",SWIG_From_int(static_cast< int >(wxSB_FLAT
)));
33359 SWIG_Python_SetConstant(d
, "SB_RAISED",SWIG_From_int(static_cast< int >(wxSB_RAISED
)));
33360 SWIG_addvarlink(SWIG_globals(),(char*)"SplitterNameStr",SplitterNameStr_get
, SplitterNameStr_set
);
33361 SWIG_Python_SetConstant(d
, "SP_NOBORDER",SWIG_From_int(static_cast< int >(wxSP_NOBORDER
)));
33362 SWIG_Python_SetConstant(d
, "SP_NOSASH",SWIG_From_int(static_cast< int >(wxSP_NOSASH
)));
33363 SWIG_Python_SetConstant(d
, "SP_PERMIT_UNSPLIT",SWIG_From_int(static_cast< int >(wxSP_PERMIT_UNSPLIT
)));
33364 SWIG_Python_SetConstant(d
, "SP_LIVE_UPDATE",SWIG_From_int(static_cast< int >(wxSP_LIVE_UPDATE
)));
33365 SWIG_Python_SetConstant(d
, "SP_3DSASH",SWIG_From_int(static_cast< int >(wxSP_3DSASH
)));
33366 SWIG_Python_SetConstant(d
, "SP_3DBORDER",SWIG_From_int(static_cast< int >(wxSP_3DBORDER
)));
33367 SWIG_Python_SetConstant(d
, "SP_NO_XP_THEME",SWIG_From_int(static_cast< int >(wxSP_NO_XP_THEME
)));
33368 SWIG_Python_SetConstant(d
, "SP_BORDER",SWIG_From_int(static_cast< int >(wxSP_BORDER
)));
33369 SWIG_Python_SetConstant(d
, "SP_3D",SWIG_From_int(static_cast< int >(wxSP_3D
)));
33370 SWIG_Python_SetConstant(d
, "SPLIT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxSPLIT_HORIZONTAL
)));
33371 SWIG_Python_SetConstant(d
, "SPLIT_VERTICAL",SWIG_From_int(static_cast< int >(wxSPLIT_VERTICAL
)));
33372 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_NONE",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_NONE
)));
33373 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_DRAGGING",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_DRAGGING
)));
33374 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_LEFT_DOWN",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_LEFT_DOWN
)));
33375 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
));
33376 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
));
33377 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
));
33378 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_UNSPLIT
));
33379 SWIG_addvarlink(SWIG_globals(),(char*)"SashNameStr",SashNameStr_get
, SashNameStr_set
);
33380 SWIG_addvarlink(SWIG_globals(),(char*)"SashLayoutNameStr",SashLayoutNameStr_get
, SashLayoutNameStr_set
);
33381 SWIG_Python_SetConstant(d
, "SASH_DRAG_NONE",SWIG_From_int(static_cast< int >(wxSASH_DRAG_NONE
)));
33382 SWIG_Python_SetConstant(d
, "SASH_DRAG_DRAGGING",SWIG_From_int(static_cast< int >(wxSASH_DRAG_DRAGGING
)));
33383 SWIG_Python_SetConstant(d
, "SASH_DRAG_LEFT_DOWN",SWIG_From_int(static_cast< int >(wxSASH_DRAG_LEFT_DOWN
)));
33384 SWIG_Python_SetConstant(d
, "SW_NOBORDER",SWIG_From_int(static_cast< int >(wxSW_NOBORDER
)));
33385 SWIG_Python_SetConstant(d
, "SW_BORDER",SWIG_From_int(static_cast< int >(wxSW_BORDER
)));
33386 SWIG_Python_SetConstant(d
, "SW_3DSASH",SWIG_From_int(static_cast< int >(wxSW_3DSASH
)));
33387 SWIG_Python_SetConstant(d
, "SW_3DBORDER",SWIG_From_int(static_cast< int >(wxSW_3DBORDER
)));
33388 SWIG_Python_SetConstant(d
, "SW_3D",SWIG_From_int(static_cast< int >(wxSW_3D
)));
33389 SWIG_Python_SetConstant(d
, "SASH_TOP",SWIG_From_int(static_cast< int >(wxSASH_TOP
)));
33390 SWIG_Python_SetConstant(d
, "SASH_RIGHT",SWIG_From_int(static_cast< int >(wxSASH_RIGHT
)));
33391 SWIG_Python_SetConstant(d
, "SASH_BOTTOM",SWIG_From_int(static_cast< int >(wxSASH_BOTTOM
)));
33392 SWIG_Python_SetConstant(d
, "SASH_LEFT",SWIG_From_int(static_cast< int >(wxSASH_LEFT
)));
33393 SWIG_Python_SetConstant(d
, "SASH_NONE",SWIG_From_int(static_cast< int >(wxSASH_NONE
)));
33394 SWIG_Python_SetConstant(d
, "SASH_STATUS_OK",SWIG_From_int(static_cast< int >(wxSASH_STATUS_OK
)));
33395 SWIG_Python_SetConstant(d
, "SASH_STATUS_OUT_OF_RANGE",SWIG_From_int(static_cast< int >(wxSASH_STATUS_OUT_OF_RANGE
)));
33396 PyDict_SetItemString(d
, "wxEVT_SASH_DRAGGED", PyInt_FromLong(wxEVT_SASH_DRAGGED
));
33397 SWIG_Python_SetConstant(d
, "LAYOUT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxLAYOUT_HORIZONTAL
)));
33398 SWIG_Python_SetConstant(d
, "LAYOUT_VERTICAL",SWIG_From_int(static_cast< int >(wxLAYOUT_VERTICAL
)));
33399 SWIG_Python_SetConstant(d
, "LAYOUT_NONE",SWIG_From_int(static_cast< int >(wxLAYOUT_NONE
)));
33400 SWIG_Python_SetConstant(d
, "LAYOUT_TOP",SWIG_From_int(static_cast< int >(wxLAYOUT_TOP
)));
33401 SWIG_Python_SetConstant(d
, "LAYOUT_LEFT",SWIG_From_int(static_cast< int >(wxLAYOUT_LEFT
)));
33402 SWIG_Python_SetConstant(d
, "LAYOUT_RIGHT",SWIG_From_int(static_cast< int >(wxLAYOUT_RIGHT
)));
33403 SWIG_Python_SetConstant(d
, "LAYOUT_BOTTOM",SWIG_From_int(static_cast< int >(wxLAYOUT_BOTTOM
)));
33404 SWIG_Python_SetConstant(d
, "LAYOUT_LENGTH_Y",SWIG_From_int(static_cast< int >(wxLAYOUT_LENGTH_Y
)));
33405 SWIG_Python_SetConstant(d
, "LAYOUT_LENGTH_X",SWIG_From_int(static_cast< int >(wxLAYOUT_LENGTH_X
)));
33406 SWIG_Python_SetConstant(d
, "LAYOUT_MRU_LENGTH",SWIG_From_int(static_cast< int >(wxLAYOUT_MRU_LENGTH
)));
33407 SWIG_Python_SetConstant(d
, "LAYOUT_QUERY",SWIG_From_int(static_cast< int >(wxLAYOUT_QUERY
)));
33408 PyDict_SetItemString(d
, "wxEVT_QUERY_LAYOUT_INFO", PyInt_FromLong(wxEVT_QUERY_LAYOUT_INFO
));
33409 PyDict_SetItemString(d
, "wxEVT_CALCULATE_LAYOUT", PyInt_FromLong(wxEVT_CALCULATE_LAYOUT
));
33410 SWIG_addvarlink(SWIG_globals(),(char*)"VListBoxNameStr",VListBoxNameStr_get
, VListBoxNameStr_set
);
33412 // Map renamed classes back to their common name for OOR
33413 wxPyPtrTypeMap_Add("wxHtmlListBox", "wxPyHtmlListBox");
33414 wxPyPtrTypeMap_Add("wxVListBox", "wxPyVListBox");
33415 wxPyPtrTypeMap_Add("wxVScrolledWindow", "wxPyVScrolledWindow");
33417 PyDict_SetItemString(d
, "wxEVT_TASKBAR_MOVE", PyInt_FromLong(wxEVT_TASKBAR_MOVE
));
33418 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DOWN
));
33419 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_UP", PyInt_FromLong(wxEVT_TASKBAR_LEFT_UP
));
33420 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DOWN
));
33421 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_UP", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_UP
));
33422 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DCLICK
));
33423 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DCLICK
));
33424 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorPromptStr",FileSelectorPromptStr_get
, FileSelectorPromptStr_set
);
33425 SWIG_addvarlink(SWIG_globals(),(char*)"DirSelectorPromptStr",DirSelectorPromptStr_get
, DirSelectorPromptStr_set
);
33426 SWIG_addvarlink(SWIG_globals(),(char*)"DirDialogNameStr",DirDialogNameStr_get
, DirDialogNameStr_set
);
33427 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorDefaultWildcardStr",FileSelectorDefaultWildcardStr_get
, FileSelectorDefaultWildcardStr_set
);
33428 SWIG_addvarlink(SWIG_globals(),(char*)"GetTextFromUserPromptStr",GetTextFromUserPromptStr_get
, GetTextFromUserPromptStr_set
);
33429 SWIG_addvarlink(SWIG_globals(),(char*)"MessageBoxCaptionStr",MessageBoxCaptionStr_get
, MessageBoxCaptionStr_set
);
33430 SWIG_Python_SetConstant(d
, "CHOICEDLG_STYLE",SWIG_From_int(static_cast< int >(wxCHOICEDLG_STYLE
)));
33431 SWIG_Python_SetConstant(d
, "TextEntryDialogStyle",SWIG_From_int(static_cast< int >(wxTextEntryDialogStyle
)));
33432 SWIG_addvarlink(SWIG_globals(),(char*)"GetPasswordFromUserPromptStr",GetPasswordFromUserPromptStr_get
, GetPasswordFromUserPromptStr_set
);
33433 SWIG_Python_SetConstant(d
, "FR_DOWN",SWIG_From_int(static_cast< int >(wxFR_DOWN
)));
33434 SWIG_Python_SetConstant(d
, "FR_WHOLEWORD",SWIG_From_int(static_cast< int >(wxFR_WHOLEWORD
)));
33435 SWIG_Python_SetConstant(d
, "FR_MATCHCASE",SWIG_From_int(static_cast< int >(wxFR_MATCHCASE
)));
33436 SWIG_Python_SetConstant(d
, "FR_REPLACEDIALOG",SWIG_From_int(static_cast< int >(wxFR_REPLACEDIALOG
)));
33437 SWIG_Python_SetConstant(d
, "FR_NOUPDOWN",SWIG_From_int(static_cast< int >(wxFR_NOUPDOWN
)));
33438 SWIG_Python_SetConstant(d
, "FR_NOMATCHCASE",SWIG_From_int(static_cast< int >(wxFR_NOMATCHCASE
)));
33439 SWIG_Python_SetConstant(d
, "FR_NOWHOLEWORD",SWIG_From_int(static_cast< int >(wxFR_NOWHOLEWORD
)));
33440 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND", PyInt_FromLong(wxEVT_COMMAND_FIND
));
33441 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_NEXT", PyInt_FromLong(wxEVT_COMMAND_FIND_NEXT
));
33442 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE
));
33443 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE_ALL", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE_ALL
));
33444 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_CLOSE", PyInt_FromLong(wxEVT_COMMAND_FIND_CLOSE
));
33445 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILE",SWIG_From_int(static_cast< int >(4001)));
33446 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILEHOR",SWIG_From_int(static_cast< int >(4001)));
33447 SWIG_Python_SetConstant(d
, "IDM_WINDOWCASCADE",SWIG_From_int(static_cast< int >(4002)));
33448 SWIG_Python_SetConstant(d
, "IDM_WINDOWICONS",SWIG_From_int(static_cast< int >(4003)));
33449 SWIG_Python_SetConstant(d
, "IDM_WINDOWNEXT",SWIG_From_int(static_cast< int >(4004)));
33450 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILEVERT",SWIG_From_int(static_cast< int >(4005)));
33451 SWIG_Python_SetConstant(d
, "IDM_WINDOWPREV",SWIG_From_int(static_cast< int >(4006)));
33452 SWIG_Python_SetConstant(d
, "FIRST_MDI_CHILD",SWIG_From_int(static_cast< int >(4100)));
33453 SWIG_Python_SetConstant(d
, "LAST_MDI_CHILD",SWIG_From_int(static_cast< int >(4600)));
33454 SWIG_addvarlink(SWIG_globals(),(char*)"PrintoutTitleStr",PrintoutTitleStr_get
, PrintoutTitleStr_set
);
33455 SWIG_addvarlink(SWIG_globals(),(char*)"PreviewCanvasNameStr",PreviewCanvasNameStr_get
, PreviewCanvasNameStr_set
);
33456 SWIG_Python_SetConstant(d
, "PRINT_MODE_NONE",SWIG_From_int(static_cast< int >(wxPRINT_MODE_NONE
)));
33457 SWIG_Python_SetConstant(d
, "PRINT_MODE_PREVIEW",SWIG_From_int(static_cast< int >(wxPRINT_MODE_PREVIEW
)));
33458 SWIG_Python_SetConstant(d
, "PRINT_MODE_FILE",SWIG_From_int(static_cast< int >(wxPRINT_MODE_FILE
)));
33459 SWIG_Python_SetConstant(d
, "PRINT_MODE_PRINTER",SWIG_From_int(static_cast< int >(wxPRINT_MODE_PRINTER
)));
33460 SWIG_Python_SetConstant(d
, "PRINT_MODE_STREAM",SWIG_From_int(static_cast< int >(wxPRINT_MODE_STREAM
)));
33461 SWIG_Python_SetConstant(d
, "PRINTBIN_DEFAULT",SWIG_From_int(static_cast< int >(wxPRINTBIN_DEFAULT
)));
33462 SWIG_Python_SetConstant(d
, "PRINTBIN_ONLYONE",SWIG_From_int(static_cast< int >(wxPRINTBIN_ONLYONE
)));
33463 SWIG_Python_SetConstant(d
, "PRINTBIN_LOWER",SWIG_From_int(static_cast< int >(wxPRINTBIN_LOWER
)));
33464 SWIG_Python_SetConstant(d
, "PRINTBIN_MIDDLE",SWIG_From_int(static_cast< int >(wxPRINTBIN_MIDDLE
)));
33465 SWIG_Python_SetConstant(d
, "PRINTBIN_MANUAL",SWIG_From_int(static_cast< int >(wxPRINTBIN_MANUAL
)));
33466 SWIG_Python_SetConstant(d
, "PRINTBIN_ENVELOPE",SWIG_From_int(static_cast< int >(wxPRINTBIN_ENVELOPE
)));
33467 SWIG_Python_SetConstant(d
, "PRINTBIN_ENVMANUAL",SWIG_From_int(static_cast< int >(wxPRINTBIN_ENVMANUAL
)));
33468 SWIG_Python_SetConstant(d
, "PRINTBIN_AUTO",SWIG_From_int(static_cast< int >(wxPRINTBIN_AUTO
)));
33469 SWIG_Python_SetConstant(d
, "PRINTBIN_TRACTOR",SWIG_From_int(static_cast< int >(wxPRINTBIN_TRACTOR
)));
33470 SWIG_Python_SetConstant(d
, "PRINTBIN_SMALLFMT",SWIG_From_int(static_cast< int >(wxPRINTBIN_SMALLFMT
)));
33471 SWIG_Python_SetConstant(d
, "PRINTBIN_LARGEFMT",SWIG_From_int(static_cast< int >(wxPRINTBIN_LARGEFMT
)));
33472 SWIG_Python_SetConstant(d
, "PRINTBIN_LARGECAPACITY",SWIG_From_int(static_cast< int >(wxPRINTBIN_LARGECAPACITY
)));
33473 SWIG_Python_SetConstant(d
, "PRINTBIN_CASSETTE",SWIG_From_int(static_cast< int >(wxPRINTBIN_CASSETTE
)));
33474 SWIG_Python_SetConstant(d
, "PRINTBIN_FORMSOURCE",SWIG_From_int(static_cast< int >(wxPRINTBIN_FORMSOURCE
)));
33475 SWIG_Python_SetConstant(d
, "PRINTBIN_USER",SWIG_From_int(static_cast< int >(wxPRINTBIN_USER
)));
33476 SWIG_Python_SetConstant(d
, "PRINTER_NO_ERROR",SWIG_From_int(static_cast< int >(wxPRINTER_NO_ERROR
)));
33477 SWIG_Python_SetConstant(d
, "PRINTER_CANCELLED",SWIG_From_int(static_cast< int >(wxPRINTER_CANCELLED
)));
33478 SWIG_Python_SetConstant(d
, "PRINTER_ERROR",SWIG_From_int(static_cast< int >(wxPRINTER_ERROR
)));
33479 SWIG_Python_SetConstant(d
, "PREVIEW_PRINT",SWIG_From_int(static_cast< int >(wxPREVIEW_PRINT
)));
33480 SWIG_Python_SetConstant(d
, "PREVIEW_PREVIOUS",SWIG_From_int(static_cast< int >(wxPREVIEW_PREVIOUS
)));
33481 SWIG_Python_SetConstant(d
, "PREVIEW_NEXT",SWIG_From_int(static_cast< int >(wxPREVIEW_NEXT
)));
33482 SWIG_Python_SetConstant(d
, "PREVIEW_ZOOM",SWIG_From_int(static_cast< int >(wxPREVIEW_ZOOM
)));
33483 SWIG_Python_SetConstant(d
, "PREVIEW_FIRST",SWIG_From_int(static_cast< int >(wxPREVIEW_FIRST
)));
33484 SWIG_Python_SetConstant(d
, "PREVIEW_LAST",SWIG_From_int(static_cast< int >(wxPREVIEW_LAST
)));
33485 SWIG_Python_SetConstant(d
, "PREVIEW_GOTO",SWIG_From_int(static_cast< int >(wxPREVIEW_GOTO
)));
33486 SWIG_Python_SetConstant(d
, "PREVIEW_DEFAULT",SWIG_From_int(static_cast< int >(wxPREVIEW_DEFAULT
)));
33487 SWIG_Python_SetConstant(d
, "ID_PREVIEW_CLOSE",SWIG_From_int(static_cast< int >(wxID_PREVIEW_CLOSE
)));
33488 SWIG_Python_SetConstant(d
, "ID_PREVIEW_NEXT",SWIG_From_int(static_cast< int >(wxID_PREVIEW_NEXT
)));
33489 SWIG_Python_SetConstant(d
, "ID_PREVIEW_PREVIOUS",SWIG_From_int(static_cast< int >(wxID_PREVIEW_PREVIOUS
)));
33490 SWIG_Python_SetConstant(d
, "ID_PREVIEW_PRINT",SWIG_From_int(static_cast< int >(wxID_PREVIEW_PRINT
)));
33491 SWIG_Python_SetConstant(d
, "ID_PREVIEW_ZOOM",SWIG_From_int(static_cast< int >(wxID_PREVIEW_ZOOM
)));
33492 SWIG_Python_SetConstant(d
, "ID_PREVIEW_FIRST",SWIG_From_int(static_cast< int >(wxID_PREVIEW_FIRST
)));
33493 SWIG_Python_SetConstant(d
, "ID_PREVIEW_LAST",SWIG_From_int(static_cast< int >(wxID_PREVIEW_LAST
)));
33494 SWIG_Python_SetConstant(d
, "ID_PREVIEW_GOTO",SWIG_From_int(static_cast< int >(wxID_PREVIEW_GOTO
)));
33496 wxPyPtrTypeMap_Add("wxPrintout", "wxPyPrintout");